2020-09-10 10:49:47 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2020-10-12 15:21:19 +00:00
|
|
|
if echo -e "exists 'HostApplicationMap_Ver2'" | ${HBASE_HOME}/bin/hbase shell 2>&1 | grep -q "does exist" 2>/dev/null
|
2020-09-10 10:49:47 +00:00
|
|
|
then
|
|
|
|
echo "Tables already exist"
|
|
|
|
else
|
|
|
|
sleep 15
|
|
|
|
echo "create tables"
|
|
|
|
${HBASE_HOME}/bin/hbase shell ${BASE_DIR}/hbase-create.hbase
|
|
|
|
fi
|