因为hbase中没有rename命令,所以更改表名比较复杂。
重命名主要通过hbase的快照功能。
1.停止表继续插入
hbase shell>disable 'tableName'
2。制作快照
hbase shell> snapshot 'tableName', 'tableSnapshot'
3.克隆快照为新的名字
hbase shell> clone_snapshot 'tableSnapshot', 'newTableName'
4.删除快照
hbase shell> delete_snapshot 'tableSnapshot'
5.删除原来表
hbase shell> drop 'tableName'
即可查看到newTableName表
最后
以上就是老实皮带最近收集整理的关于hbase rename更改表名的全部内容,更多相关hbase内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复