get_replication_status
Retrieve replication and distribution status for a table or database in CockroachDB. Use this tool to monitor data range replication and ensure consistency across your database.
Instructions
Get replication and distribution status for a table or the whole database.
Args: table_name (str): Table name to filter (default: "", for all tables).
Returns: Details about range replication for a specific table or the current database.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
table_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"table_name": {
"title": "Table Name",
"type": "string"
}
},
"required": [
"table_name"
],
"title": "get_replication_statusArguments",
"type": "object"
}