简体   繁体   中英

Can Kafka nodes have different configuration(s) within same cluster

I noticed that Kafka Admin API in Java allows us to see broker configurations by using describesConfigs . But it allows to see configurations by Node. Does that mean that each Node in same cluster/broker can have different configurations?

Some properties are always different - broker.id and advertised.listeners , for example.

For others, it'll cause unexpected behavior. For example, the log cleaner could be disabled on one broker, causing compaction to stop working. Or the default topic partition count / replication factor could be mixed, causing unexpected downtime during app development if you don't pre-create your topics with defined values.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM