HBase 报错系列之region is not online

Posted 格格巫 MMQ!!

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HBase 报错系列之region is not online相关的知识,希望对你有一定的参考价值。

报错信息:

ERROR org.apache.hadoop.hbase.regionserver.HRegionServer: Received CLOSE for a region which is not online, and we’re not opening.

2016-12-07 16:00:42,558 INFO org.apache.hadoop.hbase.regionserver.RSRpcServices: Close dc4a28b161ff37666cc738aa5c9921bb, moving to null

2016-12-07 16:00:42,558 INFO org.apache.hadoop.hbase.regionserver.RSRpcServices: Close 3560cfc81c22c8026ada507bac72d001, moving to null
在这里插入图片描述

2016-12-07 16:00:42,558 ERROR org.apache.hadoop.hbase.regionserver.HRegionServer: Received CLOSE for a region which is not online, and we’re not opening.

原因:

当Hbase运行时候,region达到了设置的文件大小后,就要开始分裂了。分裂的过程是:

1)老region开始下线 ,这里就对应了报错日志中的is not online

2)老region分裂

3)老region关闭,这里就对应了报错日志中的 is closing

解决办法:关闭自动分裂,人为的进行分裂。

或者将单个region文件值设置大写

以上是关于HBase 报错系列之region is not online的主要内容,如果未能解决你的问题,请参考以下文章

hbase报错ERROR: org.apache.hadoop.hbase.ipc.ServerNotRunningYetException: Server is not running yet 采坑

Hbase 之 There is insufficient memory

HBase报错系列之建表问题

Ant design的Table组件报错TypeError: rawData.some is not a function

hbase无法启动,The node /hbase is not in ZooKeeper

hbase优化之region合并和压缩