{ "$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." } } }