Add command cluster list-failure-domains - #23
Merged
Conversation
zymap
force-pushed
the
clusters_list_failure_domain
branch
from
September 4, 2019 05:44
be4318d to
3a47a08
Compare
list-failure-domainslist-failure-domains
sijie
approved these changes
Sep 4, 2019
tisonkun
pushed a commit
to tisonkun/pulsar-client-go
that referenced
this pull request
Aug 15, 2023
Master issue: streamnative/pulsarctl#2 ``` ➜ pulsarctl git:(clusters_list_failure_domain) ./pulsarctl cluster list-failure-domains -h USED FOR: This command is used for getting all failure domain under the cluster <cluster-name>. REQUIRED PERMISSION: This command requires super-user permissions. EXAMPLES: #listing all the failure domains under the specified cluster pulsarctl clusters list-failure-domains <cluster-name> OUTPUT: #output example { "failure-domain": { "brokers": [ "failure-broker-A", "failure-broker-B" ] } } #the cluster name is not specified or the cluster name is specified more than one [✖] only one argument is allowed to be used as a name #the specified cluster does not exist in the broker [✖] code: 404 reason: Cluster does not exist Usage: pulsarctl clusters list-failure-domains [flags] Aliases: list-failure-domains, lfd Common flags: -s, --admin-service-url string The admin web service url that pulsarctl connects to. (default "http://localhost:8080") --auth-params string Authentication parameters are used to configure the public and private key files required by tls For example: "tlsCertFile:val1,tlsKeyFile:val2" -C, --color string toggle colorized logs (true,false,fabulous) (default "true") -h, --help help for this command --tls-allow-insecure Allow TLS insecure connection --tls-trust-cert-pat string Allow TLS trust cert file path -v, --verbose int set log level, use 0 to silence, 4 for debugging (default 3) Use 'pulsarctl clusters list-failure-domains [command] --help' for more information about a command. ```
tisonkun
pushed a commit
to apache/pulsar-client-go
that referenced
this pull request
Aug 16, 2023
Master issue: streamnative/pulsarctl#2 ``` ➜ pulsarctl git:(clusters_list_failure_domain) ./pulsarctl cluster list-failure-domains -h USED FOR: This command is used for getting all failure domain under the cluster <cluster-name>. REQUIRED PERMISSION: This command requires super-user permissions. EXAMPLES: #listing all the failure domains under the specified cluster pulsarctl clusters list-failure-domains <cluster-name> OUTPUT: #output example { "failure-domain": { "brokers": [ "failure-broker-A", "failure-broker-B" ] } } #the cluster name is not specified or the cluster name is specified more than one [✖] only one argument is allowed to be used as a name #the specified cluster does not exist in the broker [✖] code: 404 reason: Cluster does not exist Usage: pulsarctl clusters list-failure-domains [flags] Aliases: list-failure-domains, lfd Common flags: -s, --admin-service-url string The admin web service url that pulsarctl connects to. (default "http://localhost:8080") --auth-params string Authentication parameters are used to configure the public and private key files required by tls For example: "tlsCertFile:val1,tlsKeyFile:val2" -C, --color string toggle colorized logs (true,false,fabulous) (default "true") -h, --help help for this command --tls-allow-insecure Allow TLS insecure connection --tls-trust-cert-pat string Allow TLS trust cert file path -v, --verbose int set log level, use 0 to silence, 4 for debugging (default 3) Use 'pulsarctl clusters list-failure-domains [command] --help' for more information about a command. ```
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Master issue: #2