14. hbase 更改表名

14. hbase 更改表名
1.停止表继续插入
hbase shell>disable 'tableName'
hbase(main):089:0> disable 'member'
2。制作快照
hbase shell> snapshot 'tableName', 'tableSnapshot'
hbase(main):090:0> snapshot 'member','tablesnapshot'
3.克隆快照为新的名字
hbase shell> clone_snapshot 'tableSnapshot', 'newTableName'
hbase(main):091:0> clone_snapshot 'tablesnapshot','member2'
4.删除快照
hbase shell> delete_snapshot 'tableSnapshot'
hbase(main):095:0> delete_snapshot 'tablesnapshot'
5.删除原来表
hbase shell> drop 'tableName'
hbase(main):096:0> drop 'member'


你可能感兴趣的:(hbase)