Add checking if hbase table was created before

This commit is contained in:
emiling 2020-09-10 19:49:47 +09:00
parent 39d2069e89
commit 1c0adf7555
2 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,11 @@
#!/bin/bash
if echo -e "exists 'AgentInfo'" | ${HBASE_HOME}/bin/hbase shell 2>&1 | grep -q "does exist" 2>/dev/null
then
echo "Tables already exist"
break
else
sleep 15
echo "create tables"
${HBASE_HOME}/bin/hbase shell ${BASE_DIR}/hbase-create.hbase
fi

View File

@ -0,0 +1,5 @@
#!/bin/bash
${HBASE_HOME}/bin/start-hbase.sh
/usr/local/bin/check-table.sh