Qdrant · Schema

DistributedReplicaTelemetry

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
peer_id integer Peer ID hosting this replica
state object
status object Shard status
total_optimized_points integer Total optimized points
vectors_size_bytes integer Estimated vectors size in bytes
payloads_size_bytes integer Estimated payloads size in bytes
num_points integer Approximate number of points
num_vectors integer Approximate number of vectors
num_vectors_by_name object Approximate number of vectors by name
shard_cleaning_status object Shard cleaning task status. After a resharding, a cleanup task is performed to remove outdated points from this shard.
partial_snapshot object Partial snapshot telemetry
View JSON Schema on GitHub

JSON Schema

qdrant-distributedreplicatelemetry-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DistributedReplicaTelemetry",
  "title": "DistributedReplicaTelemetry",
  "type": "object",
  "required": [
    "peer_id",
    "state"
  ],
  "properties": {
    "peer_id": {
      "description": "Peer ID hosting this replica",
      "type": "integer",
      "format": "uint64",
      "minimum": 0
    },
    "state": {
      "$ref": "#/components/schemas/ReplicaState"
    },
    "status": {
      "description": "Shard status",
      "anyOf": [
        {
          "$ref": "#/components/schemas/ShardStatus"
        },
        {
          "nullable": true
        }
      ]
    },
    "total_optimized_points": {
      "description": "Total optimized points",
      "type": "integer",
      "format": "uint",
      "minimum": 0,
      "nullable": true
    },
    "vectors_size_bytes": {
      "description": "Estimated vectors size in bytes",
      "type": "integer",
      "format": "uint",
      "minimum": 0,
      "nullable": true
    },
    "payloads_size_bytes": {
      "description": "Estimated payloads size in bytes",
      "type": "integer",
      "format": "uint",
      "minimum": 0,
      "nullable": true
    },
    "num_points": {
      "description": "Approximate number of points",
      "type": "integer",
      "format": "uint",
      "minimum": 0,
      "nullable": true
    },
    "num_vectors": {
      "description": "Approximate number of vectors",
      "type": "integer",
      "format": "uint",
      "minimum": 0,
      "nullable": true
    },
    "num_vectors_by_name": {
      "description": "Approximate number of vectors by name",
      "type": "object",
      "additionalProperties": {
        "type": "integer",
        "format": "uint",
        "minimum": 0
      },
      "nullable": true
    },
    "shard_cleaning_status": {
      "description": "Shard cleaning task status. After a resharding, a cleanup task is performed to remove outdated points from this shard.",
      "anyOf": [
        {
          "$ref": "#/components/schemas/ShardCleanStatusTelemetry"
        },
        {
          "nullable": true
        }
      ]
    },
    "partial_snapshot": {
      "description": "Partial snapshot telemetry",
      "anyOf": [
        {
          "$ref": "#/components/schemas/PartialSnapshotTelemetry"
        },
        {
          "nullable": true
        }
      ]
    }
  }
}