hbase中没有rename命令,需要通过hbase的快照功能重命名。
1.停止表继续插入
disable ‘tableName’
2。制作快照
snapshot ‘tableName’, ‘tableSnapshot’
3.克隆快照为新的名字
clone_snapshot ‘tableSnapshot’, ‘newTableName’
4.删除快照
delete_snapshot ‘tableSnapshot’
5.删除原来表
drop ‘tableName’
hbase中没有rename命令,需要通过hbase的快照功能重命名。
1.停止表继续插入
disable ‘tableName’
2。制作快照
snapshot ‘tableName’, ‘tableSnapshot’
3.克隆快照为新的名字
clone_snapshot ‘tableSnapshot’, ‘newTableName’
4.删除快照
delete_snapshot ‘tableSnapshot’
5.删除原来表
drop ‘tableName’