我是靠谱客的博主 老实皮带,这篇文章主要介绍hbase rename更改表名,现在分享给大家,希望可以做个参考。

 因为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内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(57)

评论列表共有 0 条评论

立即
投稿
返回
顶部