Weaviate · Schema

ReplicationReplicateForceDeleteRequest

Specifies the parameters available when force deleting replication operations.

Vector DatabaseAIMachine LearningSemantic SearchOpen SourceGraphQLKubernetes

Properties

Name Type Description
id string The unique identifier (ID) of the replication operation to be forcefully deleted.
collection string The name of the collection to which the shard being replicated belongs.
shard string The identifier of the shard involved in the replication operations.
node string The name of the target node where the replication operations are registered.
dryRun boolean If true, the operation will not actually delete anything but will return the expected outcome of the deletion.
View JSON Schema on GitHub

JSON Schema

weaviate-replication-replicate-force-delete-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/weaviate/json-schema/weaviate-replication-replicate-force-delete-request-schema.json",
  "title": "ReplicationReplicateForceDeleteRequest",
  "description": "Specifies the parameters available when force deleting replication operations.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "description": "The unique identifier (ID) of the replication operation to be forcefully deleted."
    },
    "collection": {
      "type": "string",
      "description": "The name of the collection to which the shard being replicated belongs."
    },
    "shard": {
      "type": "string",
      "description": "The identifier of the shard involved in the replication operations."
    },
    "node": {
      "type": "string",
      "description": "The name of the target node where the replication operations are registered."
    },
    "dryRun": {
      "type": "boolean",
      "description": "If true, the operation will not actually delete anything but will return the expected outcome of the deletion.",
      "default": false
    }
  }
}