CockroachDB · Schema

ClusterConfig

Configuration settings for a CockroachDB cluster.

Cluster ManagementCloudDatabaseDistributed SQLInfrastructurePostgreSQL CompatibleSQL

Properties

Name Type Description
serverless object
dedicated object
View JSON Schema on GitHub

JSON Schema

cockroachdb-clusterconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ClusterConfig",
  "title": "ClusterConfig",
  "type": "object",
  "description": "Configuration settings for a CockroachDB cluster.",
  "properties": {
    "serverless": {
      "$ref": "#/components/schemas/ServerlessClusterConfig"
    },
    "dedicated": {
      "$ref": "#/components/schemas/DedicatedClusterConfig"
    }
  }
}