X-Git-Url: http://juplo.de/gitweb/?a=blobdiff_plain;f=README.sh;h=5f11d1232fe7efa1d858995a7cb34def5d293f19;hb=0cb776f6a698fda66b655a769827864359f69cb1;hp=f264a41401c4ba2eea773f7e29241c174ded3dcb;hpb=a70e010217ed33755014b406f83170b4734f9939;p=demos%2Fkafka%2Ftraining diff --git a/README.sh b/README.sh index f264a41..5f11d12 100755 --- a/README.sh +++ b/README.sh @@ -19,7 +19,7 @@ if [[ ]] then docker-compose rm -svf adder-1 adder-2 - mvn -D skipTests clean install || exit + mvn 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"