We have a sandbox that has 5 nodes with all five nodes running a kafka broker(broker id = 0) Now I have made copied of config files on all 5 nodes with distinct broker id's and log files directory to have multiple broker running
-rw-r--r-- 1 root root 5652 Apr 2 23:01 server.properties - (this one being the default)
-rw-r--r-- 1 root root 5675 Apr 2 23:02 server1.properties
-rw-r--r-- 1 root root 5675 Apr 2 23:02 server2.properties
Now do I start kafka on all the 5 nodes with new config files by using
./kafka-server-start.sh config/server1.properties &
./kafka-server-start.sh config/server2.properties &
Does every node will have 3 three brokers running?? or its 3 brokers for overall cluster?? how does this work?Any help would be appreciated??