SetHAReplicaInput

At least one of sync_replica_count or replica_count must be provided.

DatabaseTime-SeriesPostgreSQLOpen SourceCloudHypertablesContinuous AggregatesTiger Cloud

Properties

Name Type Description
sync_replica_count integer Number of synchronous high-availability replicas.
replica_count integer Number of high-availability replicas (all replicas are asynchronous by default).
View JSON Schema on GitHub

JSON Schema

timescaledb-sethareplicainput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SetHAReplicaInput",
  "title": "SetHAReplicaInput",
  "type": "object",
  "properties": {
    "sync_replica_count": {
      "type": "integer",
      "description": "Number of synchronous high-availability replicas.",
      "example": 1
    },
    "replica_count": {
      "type": "integer",
      "description": "Number of high-availability replicas (all replicas are asynchronous by default).",
      "example": 1
    }
  },
  "description": "At least one of sync_replica_count or replica_count must be provided."
}