欢迎投稿

今日深度:

Hbase 表重命名--利用HBase Snapshots实现表重命名操作,hbasesnapshots

Hbase 表重命名--利用HBase Snapshots实现表重命名操作,hbasesnapshots


支持hbase 0.94.x

1、开启HBase Snapshots

<property>
  <name>hbase.snapshot.enabled</name>
  <value>true</value>
</property>

2、重命名表

hbase shell> disable 'tablea'
hbase shell> snapshot 'tablea', 'tableaSnapshot'
hbase shell> clone_snapshot 'tableaSnapshot', 'tablea_newname'
hbase shell> delete_snapshot 'tableaSnapshot'
hbase shell> drop 'tablea'

www.htsjk.Com true http://www.htsjk.com/hbase/28640.html NewsArticle Hbase 表重命名--利用HBase Snapshots实现表重命名操作,hbasesnapshots 支持hbase 0.94.x 1、开启HBase Snapshots property   namehbase.snapshot.enabled/name   valuetrue/value /property 2、重命名表 hbase shell disable 't...
相关文章
    暂无相关文章
评论暂时关闭