admin cluster bridge list
Feature of Yandex Enterprise Database
This functionality is available only in the Yandex Enterprise Database. In the open-source version of YDB it is absent.
Use the admin cluster bridge list command to list the state of each pile in bridge mode.
General command syntax:
ydb [global options...] admin cluster bridge list [options...]
global options— global parameters for the CLI.options— subcommand parameters.
View command help:
ydb admin cluster bridge list --help
Subcommand parameters
|
Name |
Description |
|
|
Output format. Valid values: |
Examples
List piles in human-readable format:
ydb admin cluster bridge list
pile-a: PRIMARY
pile-b: SYNCHRONIZED
Output state in JSON format:
ydb admin cluster bridge list --format json
{
"pile-a": "PRIMARY",
"pile-b": "SYNCHRONIZED"
}
Output state in CSV format:
ydb admin cluster bridge list --format csv
pile,state
pile-a,PRIMARY
pile-b,SYNCHRONIZED
Was the article helpful?
Previous