Weaviate · JSON Structure

Weaviate Replication Config Structure

Configure how replication is executed in a cluster

Type: object Properties: 4
Vector DatabaseAIMachine LearningSemantic SearchOpen SourceGraphQLKubernetes

Weaviate Replication Config Structure is a JSON Structure definition published by Weaviate, describing 4 properties. It conforms to the https://json-structure.org/meta/extended/v0/# meta-schema.

Properties

factor asyncEnabled asyncConfig deletionStrategy

Meta-schema: https://json-structure.org/meta/extended/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/extended/v0/#",
  "$id": "https://api-evangelist.github.io/weaviate/json-structure/weaviate-replication-config-structure.json",
  "title": "ReplicationConfig",
  "description": "Configure how replication is executed in a cluster",
  "type": "object",
  "properties": {
    "factor": {
      "type": "int32",
      "description": "Number of times a collection (class) is replicated (default: 1)."
    },
    "asyncEnabled": {
      "type": "bool",
      "description": "Enable asynchronous replication (default: `false`)."
    },
    "asyncConfig": {
      "type": "#ReplicationAsyncConfig"
    },
    "deletionStrategy": {
      "type": "str",
      "description": "Conflict resolution strategy for deleted objects."
    }
  }
}