Qdrant · Schema
CollectionClusterInfo
Current clustering distribution for the collection
AIArtificial IntelligenceVector Databases
Properties
| Name | Type | Description |
|---|---|---|
| peer_id | integer | ID of this peer |
| shard_count | integer | Total number of shards |
| local_shards | array | Local shards |
| remote_shards | array | Remote shards |
| shard_transfers | array | Shard transfers |
| resharding_operations | array | Resharding operations |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CollectionClusterInfo",
"title": "CollectionClusterInfo",
"description": "Current clustering distribution for the collection",
"type": "object",
"required": [
"local_shards",
"peer_id",
"remote_shards",
"shard_count",
"shard_transfers"
],
"properties": {
"peer_id": {
"description": "ID of this peer",
"type": "integer",
"format": "uint64",
"minimum": 0
},
"shard_count": {
"description": "Total number of shards",
"type": "integer",
"format": "uint",
"minimum": 0
},
"local_shards": {
"description": "Local shards",
"type": "array",
"items": {
"$ref": "#/components/schemas/LocalShardInfo"
}
},
"remote_shards": {
"description": "Remote shards",
"type": "array",
"items": {
"$ref": "#/components/schemas/RemoteShardInfo"
}
},
"shard_transfers": {
"description": "Shard transfers",
"type": "array",
"items": {
"$ref": "#/components/schemas/ShardTransferInfo"
}
},
"resharding_operations": {
"description": "Resharding operations",
"type": "array",
"items": {
"$ref": "#/components/schemas/ReshardingInfo"
},
"nullable": true
}
}
}