HBASE手动触发major_compact

1.定时执行脚本
#!/bin/bash source /etc/profile sh ./hbase shell <<EOF major_compact 'table_name' EOF
语法:
 
#Compact all regions in a table:
hbase> major_compact 't1'
 
#Compact an entire region:
hbase> major_compact 'r1'
 
#Compact a single column family within a region:
hbase> major_compact 'r1', 'c1'
 
#Compact a single column family within a table:
hbase> major_compact 't1', 'c1' 

 

posted @ 2019-10-08 11:03  侃豺小哥  阅读(4197)  评论(0编辑  收藏  举报