Pulsar brokers consist of two components:
{% popover Brokers %} can be managed via:
brokers
command of the pulsar-admin
tool/admin/brokers
endpoint of the admin REST APIbrokers
method of the {% javadoc PulsarAdmin admin org.apache.pulsar.client.admin.PulsarAdmin %} object in the Java APIIn addition to being configurable when you start them up, brokers can also be dynamically configured.
{% include admonition.html type=“info” content=" See the Configuration page for a full listing of broker-specific configuration parameters. " %}
Fetch all available active brokers that are serving traffic.
$ pulsar-admin brokers list use
broker1.use.org.com:8080
{% endpoint GET /admin/brokers/:cluster %}
admin.brokers().getActiveBrokers(clusterName)
It finds all namespaces which are owned and served by a given broker.
$ pulsar-admin brokers namespaces use \ --url broker1.use.org.com:8080
{ "my-property/use/my-ns/0x00000000_0xffffffff": { "broker_assignment": "shared", "is_controlled": false, "is_active": true } }
{% endpoint GET /admin/brokers/:cluster/:broker:/ownedNamespaces %}
admin.brokers().getOwnedNamespaces(cluster,brokerUrl);
One way to configure a Pulsar {% popover broker %} is to supply a configuration when the broker is started up.
But since all broker configuration in Pulsar is stored in {% popover ZooKeeper %}, configuration values can also be dynamically updated while the broker is running. When you update broker configuration dynamically, ZooKeeper will notify the broker of the change and the broker will then override any existing configuration values.
brokers
command for the pulsar-admin
tool has a variety of subcommands that enable you to manipulate a broker's configuration dynamically, enabling you to update config values and more./admin/brokers/configuration
endpoint.The update-dynamic-config
subcommand will update existing configuration. It takes two arguments: the name of the parameter and the new value. Here's an example for the brokerShutdownTimeoutMs
parameter:
$ pulsar-admin brokers update-dynamic-config brokerShutdownTimeoutMs 100
{% endpoint POST /admin/brokers/configuration/:configName/:configValue %}
admin.brokers().updateDynamicConfiguration(configName, configValue);
Fetch a list of all potentially updatable configuration parameters.
$ pulsar-admin brokers list-dynamic-config brokerShutdownTimeoutMs
{% endpoint GET /admin/brokers/configuration %}
admin.brokers().getDynamicConfigurationNames();
Fetch a list of all parameters that have been dynamically updated.
$ pulsar-admin brokers get-all-dynamic-config brokerShutdownTimeoutMs:100
{% endpoint GET /admin/brokers/configuration/values %}
admin.brokers().getAllDynamicConfigurations();