-
Notifications
You must be signed in to change notification settings - Fork 0
/
multi_node_kafka.txt
100 lines (82 loc) · 3.93 KB
/
multi_node_kafka.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
####################################################################################################################
Run the Zookeeper and Kafka Brokers one by one on each of UNIX hosts.
Here for testing purposes we are using 3 UNIX hosts and we will be creating 3 node Docker Kafka Cluster
####################################################################################################################
docker run -d \
--net=host \
--name=zk-1 \
-e ZOOKEEPER_SERVER_ID=1\
-e ZOOKKEEPER_CLIENT_ID=22181 \
-e ZOOKEEPER_TICK_TIME=2000 \
-e ZOOKEEPER_INIT_LIMIT=5 \
-e ZOOKEEPER_SYNC_LIMIT=2 \
-e ZOOKEEPER_SERVERS="10.24.32.147:22888:23888;10.24.32.146:32888:33888;10.24.32.80:42888:43888" \
confluentinc/cp-kafka-connect:5.4.1
docker run -d \
--net=host \
--name=zk-2 \
-e ZOOKEEPER_SERVER_ID=2 \
-e ZOOKKEEPER_CLIENT_ID=32181 \
-e ZOOKEEPER_TICK_TIME=2000 \
-e ZOOKEEPER_INIT_LIMIT=5 \
-e ZOOKEEPER_SYNC_LIMIT=2 \
-e ZOOKEEPER_SERVERS="10.24.32.147:22888:23888;10.24.32.146:32888:33888;10.24.32.80:42888:43888" \
confluentinc/cp-kafka-connect:5.4.1
docker run -d \
--net=host \
--name=zk-3 \
-e ZOOKEEPER_SERVER_ID=3 \
-e ZOOKKEEPER_CLIENT_ID=42181 \
-e ZOOKEEPER_TICK_TIME=2000 \
-e ZOOKEEPER_INIT_LIMIT=5 \
-e ZOOKEEPER_SYNC_LIMIT=2 \
-e ZOOKEEPER_SERVERS="10.24.32.147:22888:23888;10.24.32.146:32888:33888;10.24.32.80:42888:43888" \
confluentinc/cp-kafka-connect:5.4.1
docker run -d \
--net=host \
--name=kafka-1 \
-e KAKFA_ZOOKEEPER_CONNECT="10.24.32.147:22181;10.24.32.146:32181;10.24.32.80:42181" \
-e KAFKA_ADVERTISED_LISTENERS=PLAINTEXT://10.24.32.147:29092 \
confluentinc/cp-kafka-connect:5.4.1
docker run -d \
--net=host \
--name=kafka-2 \
-e KAKFA_ZOOKEEPER_CONNECT="10.24.32.147:22181;10.24.32.146:32181;10.24.32.80:42181" \
-e KAFKA_ADVERTISED_LISTENERS=PLAINTEXT://10.24.32.146:39092 \
confluentinc/cp-kafka-connect:5.4.1
docker run -d \
--net-host \
--name=kafka-2 \
-e KAKFA_ZOOKEEPER_CONNECT="10.24.32.147:22181;10.24.32.146:32181;10.24.32.80:42181" \
-e KAFKA_ADVERTISED_LISTENERS=PLAINTEXT://10.24.32.80:49092 \
confluentinc/cp-kafka-connect:5.4.1
####################################################################################################
KAFKA TOPIC CREATE
####################################################################################################
docker run \
--net=host \
--rm \
confluentinc/cp-kafka-connect:5.4.1 \
kafka-topics --create --topic sambit_test_topic --partitions 3 --replication-factor 3 --if-not-exists --zookeeper 10.24.32.146:32181
####################################################################################################
KAFKA TOPIC CREATION STATUS CHECK
####################################################################################################
docker run \
--net=host \
--rm \
confluentinc/cp-kafka-connect:5.4.1 \
kafka-topics --describe --topic sambit_test_topic --zookeeper 10.24.32.146:32181
####################################################################################################
KAFKA PRODUCER
####################################################################################################
docker run \
--net=host \
--rm confluentinc/cp-kafka-connect:5.4.1 \
bash -c "seq 42 | kafka-console-producer --broker-list localhost:29092 --topic sambit-test-topic && echo 'produced 42 messages'"
####################################################################################################
KAFKA CONSUMER
####################################################################################################
docker run \
--net=host \
--rm confluentinc/cp-kafka-connect:5.4.1 \
kafka-console-consumer --bootstrap-server 10.24.32.147:29092 --topic sambit-test-topic --from-beginning