前端之家收集整理的这篇文章主要介绍了
shell – 如何重命名HBase中的表?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图在HBase中
重命名一个表,但
shell中的帮助没有rename命令.移动,mv和其他常见的罪魁祸首似乎也不是.
要
重命名HBase中的表,显然你必须使用快照.所以,你拍摄表的快照,然后将其克隆为不同的
名称.
在HBase shell中:
disable 'tableName'
snapshot 'tableName','tableSnapshot'
clone_snapshot 'tableSnapshot','newTableName'
delete_snapshot 'tableSnapshot'
drop 'tableName'
资源
http://hbase.apache.org/book.html#table.rename
原文链接:https://www.f2er.com/bash/386477.html