下载 https://mirrors.tuna.tsinghua.edu.cn/apache/hbase/hbase-operator-tools-1.2.0/
解压,保持目录
shell
hbase]# ll
总用量 1024
drwxr-xr-x 4 10003 10003 4096 11月 16 18:23 bin
-rw-r--r-- 1 10003 10003 169269 3月 31 2020 CHANGES.md
drwxr-xr-x 2 10003 10003 223 11月 16 18:26 conf
drwxr-xr-x 12 root root 188 11月 16 18:38 data
drwxr-xr-x 2 root root 213 11月 16 18:36 hbase-hbck2
drwxr-xr-x 7 10003 10003 80 3月 31 2020 hbase-webapps
-rw-r--r-- 1 10003 10003 262 3月 31 2020 LEGAL
drwxr-xr-x 6 root root 8192 11月 11 14:59 lib
-rw-r--r-- 1 10003 10003 129382 3月 31 2020 LICENSE.txt
-rw-r--r-- 1 root root 136688 11月 16 18:41 locks.txt
drwxr-xr-x 2 root root 4096 11月 16 18:38 logs
-rw-r--r-- 1 10003 10003 479625 3月 31 2020 NOTICE.txt
-rw-r--r-- 1 root root 6385 11月 16 18:41 procedures.txt
-rw-r--r-- 1 10003 10003 1477 3月 31 2020 README.txt
-rw-r--r-- 1 10003 10003 84456 3月 31 2020 RELEASENOTES.md
采用 hbck2,杀死 procedures 锁
shell
bin/hbase --config /opt/software/hbase/conf hbck -j /opt/software/hbase/hbase-hbck2/hbase-hbck2-1.2.0.jar bypass 10
采用 hbck2,强制使表正常
bin/hbase --config /opt/software/hbase/conf hbck -j /opt/software/hbase/hbase-hbck2/hbase-hbck2-1.2.0.jar setTableState nat_fxa_seven_day ENABLED
HBase 删除表
shell
disable 'nat_fxa_seven_day'
drop 'nat_fxa_seven_day'
查看 HBase 锁:
shell
echo "list_locks"| bin/hbase shell &> ./locks.txt
echo "list_procedures"| bin/hbase shell &> ./procedures.txt