ReadReplicaSetCreate

DatabaseTime-SeriesPostgreSQLOpen SourceCloudHypertablesContinuous AggregatesTiger Cloud

Properties

Name Type Description
name string A human-readable name for the read replica.
nodes integer Number of nodes to create in the replica set.
cpu_millis integer The initial CPU allocation in milli-cores.
memory_gbs integer The initial memory allocation in gigabytes.
View JSON Schema on GitHub

JSON Schema

timescaledb-readreplicasetcreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ReadReplicaSetCreate",
  "title": "ReadReplicaSetCreate",
  "type": "object",
  "required": [
    "name",
    "nodes",
    "cpu_millis",
    "memory_gbs"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "A human-readable name for the read replica.",
      "example": "my-reporting-replica"
    },
    "nodes": {
      "type": "integer",
      "description": "Number of nodes to create in the replica set.",
      "example": 2
    },
    "cpu_millis": {
      "type": "integer",
      "description": "The initial CPU allocation in milli-cores.",
      "example": 250
    },
    "memory_gbs": {
      "type": "integer",
      "description": "The initial memory allocation in gigabytes.",
      "example": 1
    }
  }
}