Weaviate · Schema

BatchStats

The summary of a nodes batch queue congestion status.

Vector DatabaseAIMachine LearningSemantic SearchOpen SourceGraphQLKubernetes

Properties

Name Type Description
queueLength number How many objects are currently in the batch queue.
ratePerSecond number How many objects are approximately processed from the batch queue per second.
View JSON Schema on GitHub

JSON Schema

weaviate-batch-stats-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/weaviate/json-schema/weaviate-batch-stats-schema.json",
  "title": "BatchStats",
  "description": "The summary of a nodes batch queue congestion status.",
  "type": "object",
  "properties": {
    "queueLength": {
      "type": "number",
      "format": "int",
      "description": "How many objects are currently in the batch queue."
    },
    "ratePerSecond": {
      "type": "number",
      "format": "int",
      "description": "How many objects are approximately processed from the batch queue per second."
    }
  }
}