2023-06-02 18:36:44 +00:00
|
|
|
---
|
|
|
|
slug: /en/operations/utilities/clickhouse-keeper-client
|
|
|
|
sidebar_label: clickhouse-keeper-client
|
|
|
|
---
|
|
|
|
|
|
|
|
# clickhouse-keeper-client
|
|
|
|
|
|
|
|
A client application to interact with clickhouse-keeper by its native protocol.
|
|
|
|
|
|
|
|
## Keys {#clickhouse-keeper-client}
|
|
|
|
|
|
|
|
- `-q QUERY`, `--query=QUERY` — Query to execute. If this parameter is not passed, `clickhouse-keeper-client` will start in interactive mode.
|
|
|
|
- `-h HOST`, `--host=HOST` — Server host. Default value: `localhost`.
|
2023-08-03 16:29:31 +00:00
|
|
|
- `-p N`, `--port=N` — Server port. Default value: 9181
|
2023-11-11 07:37:49 +00:00
|
|
|
- `-c FILE_PATH`, `--config-file=FILE_PATH` — Set path of config file to get the connection string. Default value: `config.xml`.
|
2023-06-02 18:36:44 +00:00
|
|
|
- `--connection-timeout=TIMEOUT` — Set connection timeout in seconds. Default value: 10s.
|
|
|
|
- `--session-timeout=TIMEOUT` — Set session timeout in seconds. Default value: 10s.
|
|
|
|
- `--operation-timeout=TIMEOUT` — Set operation timeout in seconds. Default value: 10s.
|
|
|
|
- `--history-file=FILE_PATH` — Set path of history file. Default value: `~/.keeper-client-history`.
|
2023-09-07 00:36:39 +00:00
|
|
|
- `--log-level=LEVEL` — Set log level. Default value: `information`.
|
|
|
|
- `--no-confirmation` — If set, will not require a confirmation on several commands. Default value `false` for interactive and `true` for query
|
2023-06-02 18:36:44 +00:00
|
|
|
- `--help` — Shows the help message.
|
|
|
|
|
|
|
|
## Example {#clickhouse-keeper-client-example}
|
|
|
|
|
|
|
|
```bash
|
2023-08-03 16:29:31 +00:00
|
|
|
./clickhouse-keeper-client -h localhost:9181 --connection-timeout 30 --session-timeout 30 --operation-timeout 30
|
|
|
|
Connected to ZooKeeper at [::1]:9181 with session_id 137
|
2023-06-02 18:36:44 +00:00
|
|
|
/ :) ls
|
|
|
|
keeper foo bar
|
|
|
|
/ :) cd keeper
|
|
|
|
/keeper :) ls
|
|
|
|
api_version
|
|
|
|
/keeper :) cd api_version
|
|
|
|
/keeper/api_version :) ls
|
|
|
|
|
|
|
|
/keeper/api_version :) cd xyz
|
|
|
|
Path /keeper/api_version/xyz does not exists
|
|
|
|
/keeper/api_version :) cd ../../
|
|
|
|
/ :) ls
|
|
|
|
keeper foo bar
|
|
|
|
/ :) get keeper/api_version
|
|
|
|
2
|
|
|
|
```
|
|
|
|
|
|
|
|
## Commands {#clickhouse-keeper-client-commands}
|
|
|
|
|
|
|
|
- `ls [path]` -- Lists the nodes for the given path (default: cwd)
|
2023-09-16 00:11:59 +00:00
|
|
|
- `cd [path]` -- Changes the working path (default `.`)
|
2023-09-07 00:36:39 +00:00
|
|
|
- `exists <path>` -- Returns `1` if node exists, `0` otherwise
|
2023-09-16 00:11:59 +00:00
|
|
|
- `set <path> <value> [version]` -- Updates the node's value. Only updates if version matches (default: -1)
|
2023-08-07 16:08:31 +00:00
|
|
|
- `create <path> <value> [mode]` -- Creates new node with the set value
|
|
|
|
- `touch <path>` -- Creates new node with an empty string as value. Doesn't throw an exception if the node already exists
|
2023-06-02 18:36:44 +00:00
|
|
|
- `get <path>` -- Returns the node's value
|
2023-09-16 00:03:46 +00:00
|
|
|
- `rm <path> [version]` -- Removes the node only if version matches (default: -1)
|
2023-06-02 18:36:44 +00:00
|
|
|
- `rmr <path>` -- Recursively deletes path. Confirmation required
|
|
|
|
- `flwc <command>` -- Executes four-letter-word command
|
|
|
|
- `help` -- Prints this message
|
2023-10-24 15:02:54 +00:00
|
|
|
- `get_direct_children_number [path]` -- Get numbers of direct children nodes under a specific path
|
2023-10-11 09:24:08 +00:00
|
|
|
- `get_all_children_number [path]` -- Get all numbers of children nodes under a specific path
|
2023-07-26 05:57:16 +00:00
|
|
|
- `get_stat [path]` -- Returns the node's stat (default `.`)
|
|
|
|
- `find_super_nodes <threshold> [path]` -- Finds nodes with number of children larger than some threshold for the given path (default `.`)
|
2023-08-07 16:08:31 +00:00
|
|
|
- `delete_stale_backups` -- Deletes ClickHouse nodes used for backups that are now inactive
|
2023-07-26 05:57:16 +00:00
|
|
|
- `find_big_family [path] [n]` -- Returns the top n nodes with the biggest family in the subtree (default path = `.` and n = 10)
|
2023-09-07 00:36:39 +00:00
|
|
|
- `sync <path>` -- Synchronizes node between processes and leader
|
2023-09-07 01:56:14 +00:00
|
|
|
- `reconfig <add|remove|set> "<arg>" [version]` -- Reconfigure Keeper cluster. See https://clickhouse.com/docs/en/guides/sre/keeper/clickhouse-keeper#reconfiguration
|