Our Community is getting an upgrade! To get everything ready for the relaunch, we’ll be placing the site in read-only mode starting September 21st.
We really appreciate your understanding while we get things set up behind the scenes. Catch up on all the exciting details about the move here.
Need help or have questions? Drop us a line at [email protected]

Support Questions

Find answers, ask questions, and share your expertise
Announcements
Share your experience with Cloudera on G2 and get a $25 Amazon Gift card.
Hi, I'm CLEO! Something exciting is coming to the Community. Stay Tuned!

Hbase Region Load Stats not Found for Region Server

avatar
Frequent Visitor

While writing data to Hbase, I am seeing the following logs at client end:

AsyncRequestFutureImpl [ERROR] No ClientProtos.RegionLoadStats found for server=regionserver-1,16020,1662657306210, region=table1,,1662657579710.841db4e690a77a76e74b322f413b3c96.

I am successfully able to write data, but I am seeing these logs for every write request. Looks like this is probably because Region Load Stats are disabled for regions in the region servers. Is there any way to enable them and fix this logging?

Hbase Client version : 2.1.7

Hbase Server version : 2.1.7

1 ACCEPTED SOLUTION

avatar
Frequent Visitor

Was able to solve it myself.
While initialising Hbase connections, we were setting 'hbase.client.metrics.enable' property to true in hbase Config. This works with 1.x client, but not with 2.x.
Setting this is to false worked, and we are not seeing any logging for 2.x client.

View solution in original post

1 REPLY 1

avatar
Frequent Visitor

Was able to solve it myself.
While initialising Hbase connections, we were setting 'hbase.client.metrics.enable' property to true in hbase Config. This works with 1.x client, but not with 2.x.
Setting this is to false worked, and we are not seeing any logging for 2.x client.