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...]

View command help:

ydb admin cluster bridge list --help

Subcommand parameters

Name

Description

--format <pretty, json, csv>

Output format. Valid values: pretty, json, csv. Default: pretty.

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