X-Git-Url: https://juplo.de/gitweb/?a=blobdiff_plain;f=README.sh;h=16918554889e98fc109202a66b32724a4c518283;hb=HEAD;hp=1a3efb2bd8aa37306a5723401b52ff81d5918af6;hpb=cbf1b641e147552fdbafb1b440a5aab59dfe275f;p=demos%2Fkafka%2Fwordcount diff --git a/README.sh b/README.sh index 1a3efb2..62805c6 100755 --- a/README.sh +++ b/README.sh @@ -1,12 +1,13 @@ #!/bin/bash -FORTUNE=juplo/wordcount--fortune:1.0.0 -RECORDER=juplo/wordcount--recorder:1.0.1 -USERS=juplo/wordcount--users:1.0.4 -SPLITTER=juplo/wordcount--splitter:1.0.0 -COUNTER=juplo/wordcount--counter:1.1.0 -TOP10=juplo/wordcount--top10:1.0.1 -QUERY=juplo/wordcount--query:1.0.4 +FORTUNE=juplo/wordcount--fortune:1.0.1 +RECORDER=juplo/wordcount--recorder:1.2.2 +USERS=juplo/wordcount--users:1.0.7 +SPLITTER=juplo/wordcount--splitter:1.2.2 +COUNTER=juplo/wordcount--counter:1.4.2 +TOP10=juplo/wordcount--top10:1.4.2 +QUERY=juplo/wordcount--query:2.1.2 +POPULAR=juplo/wordcount--popular:1.3.2 if [ "$1" = "cleanup" ] then @@ -18,6 +19,7 @@ then docker image rm $COUNTER docker image rm $TOP10 docker image rm $QUERY + docker image rm $POPULAR exit fi @@ -29,27 +31,83 @@ if [[ $(docker image ls -q $COUNTER) == "" || $(docker image ls -q $TOP10) == "" || $(docker image ls -q $QUERY) == "" || + $(docker image ls -q $POPULAR) == "" || "$1" = "build" ]] then - mvn clean package || exit - docker compose rm -svf recorder users splitter counter top10 query + docker compose rm -svf bart riddler nerd recorder users splitter counter top10 query popular +fi + +if [[ $(docker image ls -q $FORTUNE) == "" || "$1" = "build" ]] +then + echo "Building image $FORTUNE" ( cd fortune; ./README.sh $FORTUNE; ) - mvn -f recorder/pom.xml docker:build - mvn -f users/pom.xml docker:build - mvn -f splitter/pom.xml docker:build - mvn -f counter/pom.xml docker:build - mvn -f top10/pom.xml docker:build - mvn -f query/pom.xml docker:build else - echo "Using existing images:" - docker image ls $FORTUNE - docker image ls $RECORDER - docker image ls $USERS - docker image ls $SPLITTER - docker image ls $COUNTER - docker image ls $TOP10 - docker image ls $QUERY + echo -n "Using existing image for $FORTUNE: " + docker image ls --format json $FORTUNE | jq -r '(.ID + " - " + .CreatedSince)' +fi + +if [[ $(docker image ls -q $RECORDER) == "" || "$1" = "build" ]] +then + echo "Building image $RECORDER" + mvn -f recorder/pom.xml clean package docker:build +else + echo -n "Using existing image for $RECORDER: " + docker image ls --format json $RECORDER | jq -r '(.ID + " - " + .CreatedSince)' +fi + +if [[ $(docker image ls -q $USERS) == "" || "$1" = "build" ]] +then + echo "Building image $USERS" + mvn -f users/pom.xml clean package docker:build +else + echo -n "Using existing image for $USERS: " + docker image ls --format json $USERS | jq -r '(.ID + " - " + .CreatedSince)' +fi + +if [[ $(docker image ls -q $SPLITTER) == "" || "$1" = "build" ]] +then + echo "Building image $SPLITTER" + mvn -f splitter/pom.xml clean package docker:build +else + echo -n "Using existing image for $SPLITTER: " + docker image ls --format json $SPLITTER | jq -r '(.ID + " - " + .CreatedSince)' +fi + +if [[ $(docker image ls -q $COUNTER) == "" || "$1" = "build" ]] +then + echo "Building image $COUNTER" + mvn -f counter/pom.xml clean package docker:build +else + echo -n "Using existing image for $COUNTER: " + docker image ls --format json $COUNTER | jq -r '(.ID + " - " + .CreatedSince)' +fi + +if [[ $(docker image ls -q $TOP10) == "" || "$1" = "build" ]] +then + echo "Building image $TOP10" + mvn -f top10/pom.xml clean package docker:build +else + echo -n "Using existing image for $TOP10: " + docker image ls --format json $TOP10 | jq -r '(.ID + " - " + .CreatedSince)' +fi + +if [[ $(docker image ls -q $QUERY) == "" || "$1" = "build" ]] +then + echo "Building image $QUERY" + mvn -f query/pom.xml clean package docker:build +else + echo -n "Using existing image for $QUERY: " + docker image ls --format json $QUERY | jq -r '(.ID + " - " + .CreatedSince)' +fi + +if [[ $(docker image ls -q $POPULAR) == "" || "$1" = "build" ]] +then + echo "Building image $POPULAR" + mvn -f popular/pom.xml clean package docker:build +else + echo -n "Using existing image for $POPULAR: " + docker image ls --format json $POPULAR | jq -r '(.ID + " - " + .CreatedSince)' fi @@ -89,7 +147,7 @@ http -v query.localhost/bart http -v query.localhost/nerd http -v query.localhost/riddler -// docker compose up -d --scale query=5 query +# docker compose up -d --scale query=5 query http -v --follow query.localhost/bart sleep 1 http -v --follow query.localhost/bart