CockroachDB · Schema

HotRange

A range identified as hot due to elevated query activity, including the range descriptor and per-second query throughput.

Cluster ManagementCloudDatabaseDistributed SQLInfrastructurePostgreSQL CompatibleSQL

Properties

Name Type Description
range_id integer Unique identifier of the hot range.
node_id integer Node ID of the node reporting this hot range.
qps number Queries per second observed on this range.
table_name string Name of the table this range belongs to, if known.
db_name string Name of the database this range belongs to, if known.
index_name string Name of the index this range belongs to, if known.
schema_name string Schema name for the table this range belongs to, if known.
View JSON Schema on GitHub

JSON Schema

cockroachdb-hotrange-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/HotRange",
  "title": "HotRange",
  "type": "object",
  "description": "A range identified as hot due to elevated query activity, including the range descriptor and per-second query throughput.",
  "properties": {
    "range_id": {
      "type": "integer",
      "format": "int64",
      "description": "Unique identifier of the hot range."
    },
    "node_id": {
      "type": "integer",
      "description": "Node ID of the node reporting this hot range."
    },
    "qps": {
      "type": "number",
      "format": "double",
      "description": "Queries per second observed on this range."
    },
    "table_name": {
      "type": "string",
      "description": "Name of the table this range belongs to, if known."
    },
    "db_name": {
      "type": "string",
      "description": "Name of the database this range belongs to, if known."
    },
    "index_name": {
      "type": "string",
      "description": "Name of the index this range belongs to, if known."
    },
    "schema_name": {
      "type": "string",
      "description": "Schema name for the table this range belongs to, if known."
    }
  }
}