Qdrant · Schema

ReadConsistencyType

* `majority` - send N/2+1 random request and return points, which present on all of them * `quorum` - send requests to all nodes and return points which present on majority of nodes * `all` - send requests to all nodes and return points which present on all nodes

AIArtificial IntelligenceVector Databases
View JSON Schema on GitHub

JSON Schema

qdrant-readconsistencytype-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ReadConsistencyType",
  "title": "ReadConsistencyType",
  "description": "* `majority` - send N/2+1 random request and return points, which present on all of them\n\n* `quorum` - send requests to all nodes and return points which present on majority of nodes\n\n* `all` - send requests to all nodes and return points which present on all nodes",
  "type": "string",
  "enum": [
    "majority",
    "quorum",
    "all"
  ]
}