Hi
I was trying to setup my kafka cluster on multiple servers as brokers. I'm not really sure what should be the configurations for this scenario. I checked online and on official Apache website but it only has the setup for multibroker within the same server but not that I wanted to. Could anyone please help me with this. It'd be highly appreciated.
My current setup:
server.properties:(Have the same setting on all my nodes with different broker.id and respective host.name)
broker.id=0
host.name=master
delete.topic.enable=true
log.dirs=/home/ec2-user/data/kafka/kafka-logs
zookeeper.connect=master:2181,slave:2181,slave1:2181,slave2:2181
zookeeper.properties:
dataDir=/home/ec2-user/data/zookeeper
clientPort=2181
maxClientCnxns=0
Thanks