X-Git-Url: http://juplo.de/gitweb/?a=blobdiff_plain;f=README.sh;h=6be4b11879af0fdc8d4f5867145ccb4f22412fca;hb=refs%2Fheads%2Fsumup-adder--stored-offsets;hp=500552d51a6fa6174611010a5060ae8bbcff3d86;hpb=15d1ea617b16eb4e28d307615b572dff11f44a3a;p=demos%2Fkafka%2Ftraining diff --git a/README.sh b/README.sh index 500552d..6be4b11 100755 --- a/README.sh +++ b/README.sh @@ -9,7 +9,7 @@ then exit fi -docker-compose stop adder-1 adder-2 +docker-compose rm -svf adder-1 adder-2 docker-compose rm -svf mongo docker-compose up -d zookeeper kafka-1 kafka-2 kafka-3 cli mongo express @@ -19,7 +19,7 @@ if [[ ]] then docker-compose rm -svf adder-1 adder-2 - mvn clean install || exit + mvn -D skipTests clean install || exit else echo "Using image existing images:" docker image ls $IMAGE @@ -39,18 +39,22 @@ while ! [[ $(http 0:8092/actuator/health 2> /dev/null) =~ "UP" ]]; do echo "Wait docker-compose up -d peter klaus while [[ "$(http :8091/results | jq -r .)" == "{}" ]]; do echo "Waiting for some results to show up on adder-1..."; sleep 1; done -http -v :8091/results +http -v --pretty none -S :8091/results +echo while [[ "$(http :8092/results | jq -r .)" == "{}" ]]; do echo "Waiting for some results to show up on adder-2..."; sleep 1; done -http -v :8092/results +http -v --pretty none -S :8092/results +echo sleep 3 echo "Resultate für adder-1" -http -v :8091/results +http -v --pretty none -S :8091/results +echo echo "Resultate für peter von adder-1" http :8091/results/peter | jq .[].sum | uniq echo "Resultate für klaus von adder-1" http :8091/results/klaus | jq .[].sum | uniq echo "Resultate für adder-2" -http -v :8092/results +http -v --pretty none -S :8092/results +echo echo "Resultate für peter von adder-2" http :8092/results/peter | jq .[].sum | uniq echo "Resultate für klaus von adder-2" @@ -59,7 +63,8 @@ http :8092/results/klaus | jq .[].sum | uniq docker-compose stop adder-1 sleep 1 echo "Resultate für adder-2" -http -v :8092/results +http -v --pretty none -S :8092/results +echo echo "Resultate für peter von adder-2" http :8092/results/peter | jq .[].sum | uniq echo "Resultate für klaus von adder-2" @@ -70,7 +75,8 @@ docker-compose start adder-1 while ! [[ $(http 0:8091/actuator/health 2> /dev/null) =~ "UP" ]]; do echo "Waiting for adder-1..."; sleep 1; done while [[ "$(http :8091/results | jq -r .)" == "{}" ]]; do echo "Waiting for some results to show up on adder-1..."; sleep 1; done echo "Resultate für adder-1" -http -v :8091/results +http -v --pretty none -S :8091/results +echo echo "Resultate für peter von adder-1" http :8091/results/peter | jq .[].sum | uniq echo "Resultate für klaus von adder-1" @@ -79,6 +85,12 @@ http :8091/results/klaus | jq .[].sum | uniq docker-compose start adder-2 while ! [[ $(http 0:8092/actuator/health 2> /dev/null) =~ "UP" ]]; do echo "Waiting for adder-2..."; sleep 1; done while [[ "$(http :8092/results | jq -r .)" == "{}" ]]; do echo "Waiting for some results to show up on adder-2..."; sleep 1; done +echo "Resultate für adder-1" +http -v --pretty none -S :8091/results +echo +echo "Resultate für adder-2" +http -v --pretty none -S :8092/results +echo echo "Resultate für peter von adder-1" http :8091/results/peter | jq .[].sum | uniq echo "Resultate für klaus von adder-1"