I have sharded Cluster.
I am using 4 shards.
Other collections work fine, but one collection doesn’t.
An example of what I think the normal state :
{
test.item
shard key : {"num" : "hashed"}
unique : false
balancing : true
chunks:
shard1 2
shard2 2
shard3 2
shard4 2
}
Abnormal collection currently being output :
{
test.item
shard key : {"num" : "hashed"}
unique : false
balancing : true
chunks:
shard1 1
shard3 1
shard4 1
}
Is the output now normal?
If it’s not normal, how can I fix it?