Hi team, when running the snippet
def get_collection(collection_name):
return client.collections.get(collection_name)
coll = get_collection(‘Sharding_class’)
coll.shards()
I got all shards of all the collections instead of Sharding_class
shards only
output:
[Shard(collection=‘Sharding_class’, name=‘fEaAvjy7IjCB’, node=‘node1’, object_count=0),
Shard(collection=‘Sharding_class’, name=‘ylJMkRVxoPuW’, node=‘node1’, object_count=0),
Shard(collection=‘Collection_0’, name=‘Tenant_10’, node=‘node2’, object_count=10000),
Shard(collection=‘Collection_0’, name=‘Tenant_13’, node=‘node2’, object_count=10000),
Shard(collection=‘Collection_0’, name=‘Tenant_18’, node=‘node2’, object_count=10000),
Shard(collection=‘Collection_0’, name=‘Tenant_5’, node=‘node2’, object_count=10000),
Shard(collection=‘Collection_0’, name=‘Tenant_6’, node=‘node2’, object_count=10000) ]