Uploaded image for project: 'Core Server'
  1. Core Server
  2. SERVER-6348

Create ChunkStats command to replace the sh.status() chunk portion

    XMLWordPrintableJSON

Details

    • Sharding EMEA

    Description

      Create a command to produce stats (group/count) stats. This would allow an option for sh.status() to pass in an arg

      {mode:"tags"}

      , versus what I will call

      {mode:"chunks"}

      which is the current default, to group by tag by shard (so you can see the distribution of chunks across shards for each tag) rather than by just by shard.

      Here is the proposed command output:

      {
      	"collections" : [
      		{
      			"ns" : "foo.test1",
      			"shard0000" : {
      				"chunks" : 3,
      				"jumboChunks" : 0,
      				"taggedChunks" : {
      					"a" : 2,
      					"b" : 0,
      					"$default" : 1
      				}
      			},
      			"shard0001" : {
      				"chunks" : 9,
      				"jumboChunks" : 0,
      				"taggedChunks" : {
      					"a" : 5,
      					"b" : 3,
      					"$default" : 1
      				}
      			},
      			"shard0002" : {
      				"chunks" : 3,
      				"jumboChunks" : 0,
      				"taggedChunks" : {
      					"a" : 0,
      					"b" : 3,
      					"$default" : 0
      				}
      			}
      		}
      	],
      	"ok" : 1
      }
      

      Attachments

        Activity

          People

            backlog-server-sharding-emea [DO NOT USE] Backlog - Sharding EMEA
            scotthernandez Scott Hernandez (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            5 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: