-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
bhupeshbhatia
committed
Nov 29, 2018
1 parent
95288c8
commit 28cae39
Showing
1 changed file
with
53 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,65 +1,65 @@ | ||
#!/usr/bin/env bash | ||
# #!/usr/bin/env bash | ||
|
||
cd test | ||
echo "===> Changing directory to \"./test\"" | ||
# cd test | ||
# echo "===> Changing directory to \"./test\"" | ||
|
||
docker-compose up -d --build --force-recreate cassandra kafka mongo | ||
rc=$? | ||
if [[ $rc != 0 ]] | ||
then exit $rc | ||
fi | ||
# docker-compose up -d --build --force-recreate cassandra kafka mongo | ||
# rc=$? | ||
# if [[ $rc != 0 ]] | ||
# then exit $rc | ||
# fi | ||
|
||
function ping_cassandra() { | ||
docker exec -it cassandra /usr/bin/nodetool status | grep UN | ||
res=$? | ||
} | ||
# function ping_cassandra() { | ||
# docker exec -it cassandra /usr/bin/nodetool status | grep UN | ||
# res=$? | ||
# } | ||
|
||
echo "Waiting for Cassandra to be ready." | ||
# echo "Waiting for Cassandra to be ready." | ||
|
||
# For some reason, GoCql still can't connect to Cassandra even if the nodetool | ||
# shows positive results. There has to be a better way than this. | ||
max_attempts=40 | ||
cur_attempts=0 | ||
ping_cassandra | ||
while (( res != 0 && ++cur_attempts != max_attempts )) | ||
do | ||
ping_cassandra | ||
echo Attempt: $cur_attempts of $max_attempts | ||
sleep 1 | ||
done | ||
# # For some reason, GoCql still can't connect to Cassandra even if the nodetool | ||
# # shows positive results. There has to be a better way than this. | ||
# max_attempts=40 | ||
# cur_attempts=0 | ||
# ping_cassandra | ||
# while (( res != 0 && ++cur_attempts != max_attempts )) | ||
# do | ||
# ping_cassandra | ||
# echo Attempt: $cur_attempts of $max_attempts | ||
# sleep 1 | ||
# done | ||
|
||
if (( cur_attempts == max_attempts )); then | ||
echo "Cassandra Timed Out." | ||
exit 1 | ||
else | ||
echo "Cassandra response received." | ||
fi | ||
# if (( cur_attempts == max_attempts )); then | ||
# echo "Cassandra Timed Out." | ||
# exit 1 | ||
# else | ||
# echo "Cassandra response received." | ||
# fi | ||
|
||
echo "Waiting additional time for Cassandra to be ready." | ||
add_wait=20 | ||
cur_add_wait=0 | ||
while (( ++cur_add_wait != add_wait )) | ||
do | ||
echo Additional Wait: $cur_add_wait of $add_wait seconds | ||
sleep 1 | ||
done | ||
# echo "Waiting additional time for Cassandra to be ready." | ||
# add_wait=20 | ||
# cur_add_wait=0 | ||
# while (( ++cur_add_wait != add_wait )) | ||
# do | ||
# echo Additional Wait: $cur_add_wait of $add_wait seconds | ||
# sleep 1 | ||
# done | ||
|
||
docker-compose up -d --build --force-recreate go-eventpersistence | ||
echo "Waiting for go-eventpersistence to initialize" | ||
sleep 5 | ||
# docker-compose up -d --build --force-recreate go-eventpersistence | ||
# echo "Waiting for go-eventpersistence to initialize" | ||
# sleep 5 | ||
|
||
docker-compose up -d --build --force-recreate go-eventstore-query | ||
echo "Waiting for go-eventstore-query to initialize" | ||
sleep 5 | ||
# docker-compose up -d --build --force-recreate go-eventstore-query | ||
# echo "Waiting for go-eventstore-query to initialize" | ||
# sleep 5 | ||
|
||
docker-compose up -d --build --force-recreate agg-donationscap-cmd | ||
sleep 5 | ||
# docker-compose up -d --build --force-recreate agg-donationscap-cmd | ||
# sleep 5 | ||
|
||
docker ps -a | ||
# docker ps -a | ||
|
||
docker-compose up --exit-code-from agg-donationscap-cmd-test | ||
rc=$? | ||
if [[ $rc != 0 ]] | ||
docker ps -a | ||
then exit $rc | ||
fi | ||
# docker-compose up --exit-code-from agg-donationscap-cmd-test | ||
# rc=$? | ||
# if [[ $rc != 0 ]] | ||
# docker ps -a | ||
# then exit $rc | ||
# fi |