Qdrant · Schema

PendingOptimization

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
optimizer string Name of the optimizer that scheduled this optimization.
segments array Segments that will be optimized.
View JSON Schema on GitHub

JSON Schema

qdrant-pendingoptimization-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PendingOptimization",
  "title": "PendingOptimization",
  "type": "object",
  "required": [
    "optimizer",
    "segments"
  ],
  "properties": {
    "optimizer": {
      "description": "Name of the optimizer that scheduled this optimization.",
      "type": "string"
    },
    "segments": {
      "description": "Segments that will be optimized.",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/OptimizationSegmentInfo"
      }
    }
  }
}