HBase META.Region起动不成功怎么解决
3 回答
拉莫斯之舞
TA贡献1820条经验 获得超10个赞
在网上查看Region is not online: -ROOT-,,0相关的错误,也没有得到正确的答案,后来看了一下源码,报这个错误的地方是在:
protected HRegion getRegion(final byte[] regionName)
throws NotServingRegionException {
HRegion region = null;
region = getOnlineRegion(regionName);
if (region == null) {
throw new NotServingRegionException("Region is not online: " +
Bytes.toStringBinary(regionName));
}
return region;
}
也就是说,regionName不再Map中,就会报这个错误,具体问题还得具体分析
- 3 回答
- 0 关注
- 1006 浏览
添加回答
举报
0/150
提交
取消