Unexpected Result in getting shards

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) ]

Also it shows only shards of healthy nodes
in v3 client, we can get all shards name of a schema even if some nodes are un healthy. How to get names of all shards of a collection , even if some nodes are unhealthy?

Hi!

That’s interesting. I will need more time to investigate this :thinking: