summaryrefslogtreecommitdiffstats
path: root/auth/auth-cass/cass_init/push.sh
blob: 4852169942b2d979b70f56fb464d6fb23d8c5ff7 (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
#!/bin/bash
#
# Push data from Cassandra ".dat" files
# These are obtained from "gzipped" files, or pre-placed (i.e. initialization) 
#   in the "dats" directory
#
DIR=/opt/app/aaf/cass_init
cd $DIR
if [ ! -e dats ]; then
  if [ -e dat.gz ]; then
     tar -xvf dat.gz
  else 
     echo "No Data to push for Cassandra"
     exit
  fi
fi
cd dats
for T in $(ls *.dat); do
  if [ -s $T ]; then
    cqlsh -e "use authz; COPY ${T%.dat} FROM '$T' WITH DELIMITER='|';"
  fi
done
cd $DIR
#rm -Rf dats