Merge der überarbeiteten Compose-Konfiguration ('deserialization')
[demos/kafka/training] / README.sh
index c57a29b..72f0c60 100755 (executable)
--- a/README.sh
+++ b/README.sh
@@ -1,6 +1,6 @@
 #!/bin/bash
 
-IMAGE=juplo/counting-consumer:1.0-SNAPSHOT
+IMAGE=juplo/endless-consumer:1.0-SNAPSHOT
 
 if [ "$1" = "cleanup" ]
 then
@@ -26,16 +26,21 @@ echo "Waiting for the Kafka-Cluster to become ready..."
 docker-compose exec cli cub kafka-ready -b kafka:9092 1 60 > /dev/null 2>&1 || exit 1
 docker-compose up setup
 docker-compose up -d producer consumer
-sleep 10
-http :8081/seen
-sleep 1
-http :8081/seen
-sleep 1
-http :8081/seen
-sleep 1
-http :8081/seen
-sleep 1
-http :8081/seen
-sleep 1
-docker-compose stop producer consumer
-docker-compose logs consumer
+sleep 5
+docker-compose exec -T cli bash << 'EOF'
+echo "Writing poison pill into topic test..."
+# tag::poisonpill[]
+echo 'BOOM!' | kafkacat -P -b kafka:9092 -t test
+# end::poisonpill[]
+EOF
+while [[ $(http 0:8081/actuator/health 2> /dev/null) =~ "UP" ]]; do echo "Consumer is still running..."; sleep 1; done
+http -v :8081/actuator/health
+echo "Restarting consumer"
+http -v post :8081/start
+while ! [[ $(http 0:8081/actuator/health 2> /dev/null) =~ "UP" ]]; do echo "Waiting for consumer..."; sleep 1; done
+while [[ $(http 0:8081/actuator/health 2> /dev/null) =~ "UP" ]]; do echo "Consumer is still running..."; sleep 1; done
+http -v :8081/actuator/health
+http -v post :8081/actuator/shutdown
+docker-compose stop producer
+docker-compose ps
+docker-compose logs --tail=100 consumer