You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@
5
5
6
6
This replicates as well as possible real deployment configurations, where you have your zookeeper servers and kafka servers actually all distinct from each other. This solves all the networking hurdles that comes with Docker and docker-compose, and is compatible cross platform.
7
7
8
-
[UPDATE]: No /etc/hosts file changes are necessary anymore. Explanations at: https://rmoff.net/2018/08/02/kafka-listeners-explained/
8
+
**UPDATE**: No /etc/hosts file changes are necessary anymore. Explanations at: https://rmoff.net/2018/08/02/kafka-listeners-explained/
9
9
10
10
## Stack version
11
11
@@ -55,7 +55,7 @@ docker-compose -f zk-single-kafka-single.yml down
55
55
56
56
## Single Zookeeper / Multiple Kafka
57
57
58
-
If you want to have two brokers and experiment with replication / fault-tolerance.
58
+
If you want to have three brokers and experiment with kafka replication / fault-tolerance.
59
59
60
60
- Zookeeper will be available at `$DOCKER_HOST_IP:2181`
61
61
- Kafka will be available at `$DOCKER_HOST_IP:9092,$DOCKER_HOST_IP:9093,$DOCKER_HOST_IP:9094`
@@ -69,7 +69,7 @@ docker-compose -f zk-single-kafka-multiple.yml down
69
69
70
70
## Multiple Zookeeper / Single Kafka
71
71
72
-
If you want to have three zookeeper and experiment with zookeeper fault-tolerance.
72
+
If you want to have three zookeeper nodes and experiment with zookeeper fault-tolerance.
73
73
74
74
- Zookeeper will be available at `$DOCKER_HOST_IP:2181,$DOCKER_HOST_IP:2182,$DOCKER_HOST_IP:2183`
75
75
- Kafka will be available at `$DOCKER_HOST_IP:9092`
@@ -83,7 +83,7 @@ docker-compose -f zk-multiple-kafka-single.yml down
83
83
84
84
## Multiple Zookeeper / Multiple Kafka
85
85
86
-
If you want to have three zookeeper and two kafka brokers to experiment with production setup.
86
+
If you want to have three zookeeper nodes and three kafka brokers to experiment with production setup.
87
87
88
88
- Zookeeper will be available at `$DOCKER_HOST_IP:2181,$DOCKER_HOST_IP:2182,$DOCKER_HOST_IP:2183`
89
89
- Kafka will be available at `$DOCKER_HOST_IP:9092,$DOCKER_HOST_IP:9093,$DOCKER_HOST_IP:9094`
0 commit comments