Topics and Groups Subcommand
Learn how to use the topics
and groups
subcommand of
the srm-control
command line tool.
The topics and groups subcommands are used to manipulate the topic or group allowlists (whitelists) and denylists (blacklists). Both subcommands support the same set of command options.
srm-control topics --source [SOURCE_CLUSTER] --target [TARGET_CLUSTER] --add [TOPIC1],[TOPIC2]
srm-control groups --source [SOURCE_CLUSTER] --target [TARGET_CLUSTER] --add [GROUP1],[GROUP2]
srm-control topics --source [SOURCE_CLUSTER] --target [TARGET_CLUSTER] --remove [TOPIC1],[TOPIC2]
srm-control groups --source [SOURCE_CLUSTER] --target [TARGET_CLUSTER] --remove [GROUP1],[GROUP2]
srm-control topics --source [SOURCE_CLUSTER] --target [TARGET_CLUSTER] --add-blacklist [TOPIC1],[TOPIC2]
srm-control groups --source [SOURCE_CLUSTER] --target [TARGET_CLUSTER] --add-blacklist [GROUP1],[GROUP2]
srm-control topics --source [SOURCE_CLUSTER] --target [TARGET_CLUSTER] --remove-blacklist [TOPIC1],[TOPIC2]
srm-control groups --source [SOURCE_CLUSTER] --target [TARGET_CLUSTER] --remove-blacklist [GROUP1],[GROUP2]
srm-control topics --source [SOURCE_CLUSTER] --target [TARGET_CLUSTER] --add ".*"
In addition to adding or removing items, you can also use the tool to look at the contents of a deny or allowlist.
srm-control topics --source [SOURCE_CLUSTER] --target [TARGET_CLUSTER] --list
--config
option to specify a
different configuration file.
srm-control --config [path/to/srm.proerpties] topics --source [SOURCE_CLUSTER] --target [TARGET_CLUSTER] --list
Client Override Options
The topics and groups subcommands support a number of client override
options. Client override options allow users to temporarily specify or override
configuration properties used for replication. These options also enable users to issue
srm-control
commands even if the SRM’s configuration file is not
available on the host that the command is being issued from. While it is possible to specify
a range of properties with the client override options, and they can prove to be a powerful
tool in certain scenarios, Cloudera recommends that you use the
srm.properties
configuration file to manage client configuration options.
--bootstrap-servers
: Specifies the bootstraps servers.--producer-props
: Specifies producer configuration properties.--consumer-props
: Specifies consumer configuration properties.--props
: Specifies client configuration properties.
A simple example of using client override options is when you want to change the bootstrap server. This can be done in two ways.
--bootstrap-servers
option.
srm-control --bootstrap-servers localhost:9092 topics --source [SOURCE_CLUSTER] --target [TARGET_CLUSTER] --list
--props
option together with the
bootstrap.servers
Kafka property to define the bootstrap
server.srm-control --props bootstrap.servers=localhost:9092 topics --source [SOURCE_CLUSTER] --list