์ง๋ ํฌ์คํ ์ ์ด์ด ์ด๋ฒ์ Kafka๋ฅผ Multi Cluster๋ก ๊ตฌ์ฑํด๋ณด๊ฒ ๋ค. ๊ตฌ์ฑ์ ์๋์ ๊ฐ์ด ํ ๊ฒ์ด๋ค. Step 1. Kafka Download # ๋ฒ์ ํ์ธ ํ์ $ wget http://mirror.navercorp.com/apache/kafka/2.3.0/kafka_2.12-2.3.0.tgz # ์ค์นํ๊ณ ์ถ์ ๊ฒฝ๋ก์์ ์์ถ ํ๊ธฐ $ tar -xzf kafka_2.12-2.3.0.tgz $ cd kafka_2.12-2.3.0 Step 2. Zookeeper ์ค์ ( All Node ) => vi zookeeper.properties initLimit=10 syncLimit=5 server.1= :2888:3888 server.2= :2888:3888 server.3= :2888:3888 St..