From: Instrumental Date: Thu, 4 Oct 2018 03:29:23 +0000 (-0500) Subject: Cass Ready Pattern->HEAT X-Git-Tag: 2.1.2~3 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=f0ddaf23df14db2e6aa637a6119198ead0222cd2;hp=235dd9ad5309cb8c348e15c66fb3884d39dbb107;p=aaf%2Fauthz.git Cass Ready Pattern->HEAT Came up with a good Cassandra ready pattern for HELM/OOM. HEAT was having problem as well, so applied there too. Issue-ID: AAF-517 Change-Id: I2a8f2d1efd27c55e0c2c3bf60115c7abba17202b Signed-off-by: Instrumental --- diff --git a/auth/auth-cass/cass_init/cmd.sh b/auth/auth-cass/cass_init/cmd.sh index b3d5292c..d1e70515 100644 --- a/auth/auth-cass/cass_init/cmd.sh +++ b/auth/auth-cass/cass_init/cmd.sh @@ -9,11 +9,14 @@ if [ ! -e /aaf_cmd ]; then chmod u+x /aaf_cmd fi +# Always need startup status... +if [ ! -e "$DIR" ]; then + mkdir -p "$DIR" +fi + function status { - if [ -d "$DIR" ]; then echo "$@" echo "$@" > $DIR/aaf_cass - fi } function wait_start { @@ -29,6 +32,7 @@ function wait_start { done } + function wait_cql { status wait for keyspace to be initialized for CNT in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15; do @@ -41,6 +45,19 @@ function wait_cql { done } +function wait_ready { + status wait for cassandra to be fully ready + for CNT in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15; do + STATUS="$(cat $DIR/aaf_cass)" + if [ "$STATUS" = "ready" ]; then + break + else + echo "Waiting for Start, $STATUS... Sleep 10" + sleep 10 + fi + done +} + function install_cql { wait_start started # Now, make sure data exists @@ -126,13 +143,8 @@ case "$1" in ;; wait) # Wait for initialization. This can be called from Docker only as a check to make sure it is ready - wait_start started - - # Make sure Keyspace is loaded - wait_cql + wait_ready - # Wait for Data load? - status ready ;; onap) # start install_onap (which calls install_cql first) in background, waiting for process to start