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 關注
- 1082 瀏覽
添加回答
舉報
0/150
提交
取消