Qdrant · Schema

ReshardingDirection

Resharding direction, scale up or down in number of shards - `up` - Scale up, add a new shard - `down` - Scale down, remove a shard

AIArtificial IntelligenceVector Databases
View JSON Schema on GitHub

JSON Schema

qdrant-reshardingdirection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ReshardingDirection",
  "title": "ReshardingDirection",
  "description": "Resharding direction, scale up or down in number of shards\n\n- `up` - Scale up, add a new shard\n\n- `down` - Scale down, remove a shard",
  "type": "string",
  "enum": [
    "up",
    "down"
  ]
}