Method: Kafka::Client#alter_topic
- Defined in:
- lib/kafka/client.rb
#alter_topic(name, configs = {}) ⇒ nil
Note:
This is an alpha level API and is subject to change.
Alter the configuration of a topic.
Configuration keys must match Kafka's topic-level configs.
675 676 677 |
# File 'lib/kafka/client.rb', line 675 def alter_topic(name, configs = {}) @cluster.alter_topic(name, configs) end |