Weaviate · Schema

ReplicationConfig

Configure how replication is executed in a cluster

Vector DatabaseAIMachine LearningSemantic SearchOpen SourceGraphQLKubernetes

Properties

Name Type Description
factor integer Number of times a collection (class) is replicated (default: 1).
asyncEnabled boolean Enable asynchronous replication (default: `false`).
asyncConfig object
deletionStrategy string Conflict resolution strategy for deleted objects.
View JSON Schema on GitHub

JSON Schema

weaviate-replicationconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ReplicationConfig",
  "title": "ReplicationConfig",
  "type": "object",
  "description": "Configure how replication is executed in a cluster",
  "properties": {
    "factor": {
      "type": "integer",
      "description": "Number of times a collection (class) is replicated (default: 1)."
    },
    "asyncEnabled": {
      "type": "boolean",
      "description": "Enable asynchronous replication (default: `false`)."
    },
    "asyncConfig": {
      "$ref": "#/components/schemas/ReplicationAsyncConfig"
    },
    "deletionStrategy": {
      "type": "string",
      "description": "Conflict resolution strategy for deleted objects.",
      "enum": [
        "NoAutomatedResolution",
        "DeleteOnConflict",
        "TimeBasedResolution"
      ]
    }
  }
}