aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/tools/build/scripts/zusammen-generate-cassandra-init-cql.sh
blob: 8cb422a1212c3932def85b84eb27ffd2fb67ad49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/bin/sh

##############################################################################
###
### zusammen-generate-cassandra-init-cql.sh
###
### A script that generates the CQL commands of CREATE for the Cassnadra init for the Zusammen keyspace.
###
### Usage:
###
###    ./zusammen-generate-cassandra-init-cql.sh cassandra-commands.json
###
###
### Author: Avi Ziv
### Version 1.0
### Date: 23 Apr 2017, first version for Zusammen
###
##############################################################################

#GLOBALS
KEYSPACE_ZUSAMMEN=zusammen_dox

RUN_PATH=$(cd "$(dirname "$0")" && pwd)

#### Functions - Start  ####
usage() { echo "Usage: $0 <db-cql-json-file> keyspace yes/no, for example: $0 cassandra-commands.json keyspace yes" 1>&2; exit 1; }

main()
{
        if [ "$3" = "yes" ]; then
            echo "CREATE KEYSPACE IF NOT EXISTS $KEYSPACE_ZUSAMMEN WITH REPLICATION = { 'class' : 'SimpleStrategy', 'replication_factor' : 3 };"
        fi
        echo "USE $KEYSPACE_ZUSAMMEN;"
        $RUN_PATH/parse-json.py -t create -f $1
}

#### Functions - End    ####

# Check arguements
if [ "$#" -lt 1 ] || [ "$#" -gt 3 ]; then
        usage
fi

main $1 $2 $3