在预先设定之后拆分HBase表

时间:2015-11-18 11:37:56

标签: hbase

我正在使用HBase 0.94.6群集,我有一个包含100个区域的表(Pre splited),现在我可以进一步拆分表吗?我可以手动拆分1000个区域的表吗?

1 个答案:

答案 0 :(得分:0)

您可以使用HBase“split”命令对表格进行强制拆分。但是,看起来无法指定要拆分的区域数量。

以下是HBase的信息:

split   Split entire table or pass a region to split individual region. With the
second parameter, you can specify an explicit split key for the region.
Examples:
split ‘tableName’
split ‘regionName’ # format: ‘tableName,startKey,id’
split ‘tableName’, ‘splitKey’
split ‘regionName’, ‘splitKey’