Re: How to alter topic config with broker endpoint

2020-04-14 Thread Luke Chen
Hi Weichu, Use --bootstrap-server option instead. ex: *bin/kafka-configs.sh --bootstrap-server localhost:9092 --entity-type topics --entity-name test --alter --add-config max.message.bytes=124000* Thanks. On Tue, Apr 14, 2020 at 12:17 PM Weichu Liu wrote: > Hi, > > We have an in-house Kafka cl

How to alter topic config with broker endpoint

2020-04-13 Thread Weichu Liu
Hi, We have an in-house Kafka cluster and it only exposes the Kafka endpoint (9092) but no Zookeeper endpoint (2181). I wonder if there is a way to change the topic config via the Kafka port rather than zookeeper port? Thanks