while ! [[ $(http 0:8081/actuator/health 2> /dev/null) =~ "UP" ]]; do echo "Waiting for acks-1..."; sleep 1; done
while ! [[ $(http 0:8082/actuator/health 2> /dev/null) =~ "UP" ]]; do echo "Waiting for acks-all..."; sleep 1; done
+kafkacat -L -b :9092
+docker-compose exec cli kafka-topics --bootstrap-server kafka:9092 --describe --topic test
# tag::foo[]
-echo foo | http -v :8081/foo-acks-1
-echo foo | http -v :8082/foo-acks-all
-http -v :8000/seen
+echo foo | http -v :8081/acks-1
+echo foo | http -v :8082/acks-all
+kafkacat -C -b :9092 -t test -o 0 -e -f'p=%p|o=%o|k=%k|v=%s\n'
# end::foo[]
+sleep 1
+kafkacat -L -b :9092
+docker-compose exec cli kafka-topics --bootstrap-server kafka:9092 --describe --topic test
+kafkacat -C -b :9092 -t test -o 0 -e -f'p=%p|o=%o|k=%k|v=%s\n'
# tag::stop[]
docker-compose stop kafka-1
+kafkacat -L -b :9092
# end::stop[]
+docker-compose exec cli kafka-topics --bootstrap-server kafka:9092 --describe --topic test
-echo bar | http -v :8081/bar-acks-1
-echo bar | http -v :8082/bar-acks-all
-docker-compose exec cli kafkacat -C -b kafka:9092 -t test -o 0 -e -f'p=%p|o=%o|k=%k|v=%s\n'
+time echo bar | http -v :8081/acks-1
+time echo bar | http -v :8081/acks-1
+time echo bar | http -v :8082/acks-all
+time echo bar | http -v :8082/acks-all
+sleep 1
+kafkacat -L -b :9092
+docker-compose exec cli kafka-topics --bootstrap-server kafka:9092 --describe --topic test
+kafkacat -C -b :9092 -t test -o 0 -e -f'p=%p|o=%o|k=%k|v=%s\n'
docker-compose stop kafka-3
+kafkacat -L -b :9092
+docker-compose exec cli kafka-topics --bootstrap-server kafka:9092 --describe --topic test
-echo foobar | http -v :8081/foobar-acks-1
-echo foobar | http -v :8082/foobar-acks-all
-docker-compose exec cli kafkacat -C -b kafka:9092 -t test -o 0 -e -f'p=%p|o=%o|k=%k|v=%s\n'
+time echo foobar | http -v :8081/acks-1
+time echo foobar | http -v :8081/acks-1
+time echo foobar | http -v :8082/acks-all
+sleep 1
+kafkacat -L -b :9092
+docker-compose exec cli kafka-topics --bootstrap-server kafka:9092 --describe --topic test
+kafkacat -C -b :9092 -t test -o 0 -e -f'p=%p|o=%o|k=%k|v=%s\n'
image: juplo/toolbox
command: >
bash -c "
+ kafka-topics --bootstrap-server kafka:9092 --describe --topic test
kafka-topics --bootstrap-server kafka:9092 --delete --if-exists --topic test
kafka-topics --bootstrap-server kafka:9092 --create --topic test --partitions 2 --replication-factor 3 --config min.insync.replicas=2
- kafka-topics --bootstrap-server kafka:9092 --describe --topic test
+ kafka-topics --bootstrap-server kafka-1:9092 --describe --topic test
+ kafka-topics --bootstrap-server kafka-2:9092 --describe --topic test
+ kafka-topics --bootstrap-server kafka-3:9092 --describe --topic test
"
cli: