Instance

ShardingSphere Proxy instance

DatabaseDistributed SQLRead-Write SplittingShardingSQLApacheOpen Source

Properties

Name Type Description
instanceId string Instance identifier
status string Instance status
host string Host address
port integer Port number
View JSON Schema on GitHub

JSON Schema

apache-shardingsphere-instance-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-shardingsphere/refs/heads/main/json-schema/apache-shardingsphere-instance-schema.json",
  "title": "Instance",
  "description": "ShardingSphere Proxy instance",
  "type": "object",
  "properties": {
    "instanceId": {
      "type": "string",
      "description": "Instance identifier"
    },
    "status": {
      "type": "string",
      "enum": [
        "OK",
        "CIRCUIT_BREAKER"
      ],
      "description": "Instance status"
    },
    "host": {
      "type": "string",
      "description": "Host address"
    },
    "port": {
      "type": "integer",
      "description": "Port number"
    }
  }
}