Hbase 修改表名

hbase中没有rename命令,需要通过hbase的快照功能重命名。

1.停止表继续插入

     disable ‘tableName’

2。制作快照

     snapshot ‘tableName’, ‘tableSnapshot’

3.克隆快照为新的名字

     clone_snapshot ‘tableSnapshot’, ‘newTableName’

4.删除快照

     delete_snapshot ‘tableSnapshot’

5.删除原来表

     drop ‘tableName’

    原文作者:yinyiyun
    原文地址: https://www.jianshu.com/p/81fdbd77792a
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞