Instrumental | bc299c0 | 2018-09-25 06:42:31 -0500 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | # |
| 3 | # Engage normal Cass Init, then check for data installation |
| 4 | # |
Instrumental | 08e9340 | 2018-10-03 08:38:52 -0500 | [diff] [blame] | 5 | DIR="/opt/app/aaf/status" |
| 6 | |
Instrumental | bc299c0 | 2018-09-25 06:42:31 -0500 | [diff] [blame] | 7 | if [ ! -e /aaf_cmd ]; then |
| 8 | ln -s /opt/app/aaf/cass_init/cmd.sh /aaf_cmd |
| 9 | chmod u+x /aaf_cmd |
| 10 | fi |
| 11 | |
Instrumental | f0ddaf2 | 2018-10-03 22:29:23 -0500 | [diff] [blame] | 12 | # Always need startup status... |
| 13 | if [ ! -e "$DIR" ]; then |
| 14 | mkdir -p "$DIR" |
| 15 | fi |
| 16 | |
Instrumental | 08e9340 | 2018-10-03 08:38:52 -0500 | [diff] [blame] | 17 | function status { |
Instrumental | 08e9340 | 2018-10-03 08:38:52 -0500 | [diff] [blame] | 18 | echo "$@" |
| 19 | echo "$@" > $DIR/aaf_cass |
Instrumental | 08e9340 | 2018-10-03 08:38:52 -0500 | [diff] [blame] | 20 | } |
| 21 | |
Instrumental | 1e3be60 | 2018-10-03 19:40:44 -0500 | [diff] [blame] | 22 | function wait_start { |
Instrumental | 08e9340 | 2018-10-03 08:38:52 -0500 | [diff] [blame] | 23 | sleep 10 |
| 24 | status wait for cassandra to start |
Instrumental | 1e3be60 | 2018-10-03 19:40:44 -0500 | [diff] [blame] | 25 | for CNT in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15; do |
| 26 | if [ -z "$(grep 'listening for CQL clients' /var/log/cassandra/system.log)" ]; then |
| 27 | echo "Waiting for Cassandra to start... Sleep 10" |
| 28 | sleep 10 |
| 29 | else |
| 30 | break |
| 31 | fi |
| 32 | done |
| 33 | } |
| 34 | |
Instrumental | f0ddaf2 | 2018-10-03 22:29:23 -0500 | [diff] [blame] | 35 | |
Instrumental | 1e3be60 | 2018-10-03 19:40:44 -0500 | [diff] [blame] | 36 | function wait_cql { |
| 37 | status wait for keyspace to be initialized |
| 38 | for CNT in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15; do |
Instrumental | 235dd9a | 2018-10-03 21:36:44 -0500 | [diff] [blame] | 39 | if [ -n "$(/usr/bin/cqlsh -e 'describe keyspaces' | grep authz)" ]; then |
Instrumental | 1e3be60 | 2018-10-03 19:40:44 -0500 | [diff] [blame] | 40 | break |
| 41 | else |
| 42 | echo "Waiting for Keyspaces to be loaded... Sleep 10" |
| 43 | sleep 10 |
| 44 | fi |
| 45 | done |
| 46 | } |
| 47 | |
Instrumental | f0ddaf2 | 2018-10-03 22:29:23 -0500 | [diff] [blame] | 48 | function wait_ready { |
| 49 | status wait for cassandra to be fully ready |
| 50 | for CNT in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15; do |
| 51 | STATUS="$(cat $DIR/aaf_cass)" |
| 52 | if [ "$STATUS" = "ready" ]; then |
| 53 | break |
| 54 | else |
| 55 | echo "Waiting for Start, $STATUS... Sleep 10" |
| 56 | sleep 10 |
| 57 | fi |
| 58 | done |
| 59 | } |
| 60 | |
Instrumental | 1e3be60 | 2018-10-03 19:40:44 -0500 | [diff] [blame] | 61 | function install_cql { |
| 62 | wait_start started |
Instrumental | bc299c0 | 2018-09-25 06:42:31 -0500 | [diff] [blame] | 63 | # Now, make sure data exists |
| 64 | if [ "$(/usr/bin/cqlsh -e 'describe keyspaces' | grep authz)" = "" ]; then |
Instrumental | 1e3be60 | 2018-10-03 19:40:44 -0500 | [diff] [blame] | 65 | status install |
Instrumental | bc299c0 | 2018-09-25 06:42:31 -0500 | [diff] [blame] | 66 | echo "Initializing Cassandra DB" |
| 67 | if [ "`/usr/bin/cqlsh -e 'describe keyspaces' | grep authz`" == "" ]; then |
| 68 | echo "Docker Installed Basic Cassandra on aaf_cass. Executing the following " |
| 69 | echo "NOTE: This creator provided is only a Single Instance. For more complex Cassandra, create independently" |
| 70 | echo "" |
| 71 | echo " cd /opt/app/aaf/cass_init" |
| 72 | cd /opt/app/aaf/cass_init |
| 73 | echo " cqlsh -f keyspace.cql" |
| 74 | /usr/bin/cqlsh -f keyspace.cql |
Instrumental | 08e9340 | 2018-10-03 08:38:52 -0500 | [diff] [blame] | 75 | status keyspace installed |
Instrumental | bc299c0 | 2018-09-25 06:42:31 -0500 | [diff] [blame] | 76 | echo " cqlsh -f init.cql" |
| 77 | /usr/bin/cqlsh -f init.cql |
Instrumental | 08e9340 | 2018-10-03 08:38:52 -0500 | [diff] [blame] | 78 | status data initialized |
Instrumental | bc299c0 | 2018-09-25 06:42:31 -0500 | [diff] [blame] | 79 | echo "" |
| 80 | echo "The following will give you a temporary identity with which to start working, or emergency" |
| 81 | echo " cqlsh -f temp_identity.cql" |
| 82 | fi |
| 83 | fi |
Instrumental | 08e9340 | 2018-10-03 08:38:52 -0500 | [diff] [blame] | 84 | status $1 |
Instrumental | bc299c0 | 2018-09-25 06:42:31 -0500 | [diff] [blame] | 85 | } |
| 86 | |
Instrumental | 08e9340 | 2018-10-03 08:38:52 -0500 | [diff] [blame] | 87 | function install_onap { |
Instrumental | 9405361 | 2018-10-08 11:27:18 -0500 | [diff] [blame] | 88 | install_cql initialized |
| 89 | status prep data for bootstrapping |
| 90 | bash prep.sh |
| 91 | status push data to cassandra |
| 92 | bash push.sh |
Instrumental | 08e9340 | 2018-10-03 08:38:52 -0500 | [diff] [blame] | 93 | status ready |
| 94 | } |
| 95 | |
| 96 | case "$1" in |
| 97 | start) |
| 98 | # start install_cql in background, waiting for process to start |
| 99 | install_cql ready & |
| 100 | |
| 101 | # Startup like normal |
| 102 | echo "Cassandra Startup" |
| 103 | /usr/local/bin/docker-entrypoint.sh |
| 104 | ;; |
Instrumental | 1e3be60 | 2018-10-03 19:40:44 -0500 | [diff] [blame] | 105 | wait) |
| 106 | # Wait for initialization. This can be called from Docker only as a check to make sure it is ready |
Instrumental | f0ddaf2 | 2018-10-03 22:29:23 -0500 | [diff] [blame] | 107 | wait_ready |
Instrumental | 1e3be60 | 2018-10-03 19:40:44 -0500 | [diff] [blame] | 108 | |
Instrumental | 1e3be60 | 2018-10-03 19:40:44 -0500 | [diff] [blame] | 109 | ;; |
Instrumental | 08e9340 | 2018-10-03 08:38:52 -0500 | [diff] [blame] | 110 | onap) |
| 111 | # start install_onap (which calls install_cql first) in background, waiting for process to start |
| 112 | install_onap & |
| 113 | |
| 114 | # Startup like normal |
| 115 | echo "Cassandra Startup" |
| 116 | /usr/local/bin/docker-entrypoint.sh |
Instrumental | bc299c0 | 2018-09-25 06:42:31 -0500 | [diff] [blame] | 117 | ;; |
| 118 | esac |
| 119 | |