Add checking if hbase table was created before
This commit is contained in:
11
pinpoint-hbase/build/scripts/check-table.sh
Normal file
11
pinpoint-hbase/build/scripts/check-table.sh
Normal 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
|
||||||
5
pinpoint-hbase/build/scripts/initialize-hbase.sh
Normal file
5
pinpoint-hbase/build/scripts/initialize-hbase.sh
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
${HBASE_HOME}/bin/start-hbase.sh
|
||||||
|
|
||||||
|
/usr/local/bin/check-table.sh
|
||||||
Reference in New Issue
Block a user