<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>question Re: hbase warning response too slow in Archives of Support Questions (Read Only)</title>
    <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/hbase-warning-response-too-slow/m-p/34020#M10397</link>
    <description>&lt;P&gt;Thanks for the input&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am suspecting that it may be the region settings I am using that prematurely splits regions contributing to the latency&lt;/P&gt;&lt;P&gt;Originally I set the regions at default to 10 gb, shrank it to 4 gb did a compaction and flush, the first writes where trying to reorg the regions&amp;nbsp;&lt;/P&gt;&lt;P&gt;which is stemming from my first problem&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="http://community.cloudera.com/t5/Storage-Random-Access-HDFS/hbase-closed-upon-write/m-p/34001#U34001" target="_blank"&gt;http://community.cloudera.com/t5/Storage-Random-Access-HDFS/hbase-closed-upon-write/m-p/34001#U34001&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I then increased the regions to 4.9 gb seems to be fine now&lt;/P&gt;&lt;P&gt;The reason I am staying under 5 gb, is so that I can transfer to S3 which has a file size limit&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 11 Nov 2015 19:58:40 GMT</pubDate>
    <dc:creator>scratch28</dc:creator>
    <dc:date>2015-11-11T19:58:40Z</dc:date>
    <item>
      <title>hbase warning response too slow</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/hbase-warning-response-too-slow/m-p/34004#M10395</link>
      <description>&lt;P&gt;What does the following mean&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;WARN&lt;/TD&gt;
&lt;TD&gt;November 10, 2015 7:42 PM&lt;/TD&gt;
&lt;TD&gt;RpcServer&lt;/TD&gt;
&lt;TD&gt;
&lt;PRE&gt;(responseTooSlow): {"processingtimems":11063,"call":"Multi(org.apache.hadoop.hbase.protobuf.generated.ClientProtos$MultiRequest)","client":"10.125.122.203:41488","starttimems":1447206125517,"queuetimems":1,"class":"HRegionServer","responsesize":199,"method":"Multi"}&lt;/PRE&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;</description>
      <pubDate>Fri, 16 Sep 2022 09:48:56 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/hbase-warning-response-too-slow/m-p/34004#M10395</guid>
      <dc:creator>scratch28</dc:creator>
      <dc:date>2022-09-16T09:48:56Z</dc:date>
    </item>
    <item>
      <title>Re: hbase warning response too slow</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/hbase-warning-response-too-slow/m-p/34007#M10396</link>
      <description>To evaluate a responseTooSlow, look at the reported parameters:&lt;BR /&gt;&lt;BR /&gt;"processingtimems":11063,&lt;BR /&gt;"call":"Multi(org.apache.hadoop.hbase.protobuf.generated.ClientProtos$&lt;BR /&gt;MultiRequest)",&lt;BR /&gt;"client":"10.125.122.203:41488",&lt;BR /&gt;"starttimems":1447206125517,&lt;BR /&gt;"queuetimems":1,&lt;BR /&gt;"class":"HRegionServer",&lt;BR /&gt;"responsesize":199,&lt;BR /&gt;"method":"Multi"&lt;BR /&gt;&lt;BR /&gt;To summarise: The "Multi" type request from a client on 10.125.122.203 to&lt;BR /&gt;the region server in question (where you picked this log from) waited 1ms&lt;BR /&gt;(queue-time-ms) in the queue to get picked up for processing (which isn't&lt;BR /&gt;bad at all) but took 11063ms (processing-time-ms) or ~11s to complete being&lt;BR /&gt;processed and transmitted back. The transmitted response was 199 bytes&lt;BR /&gt;(response-size).&lt;BR /&gt;&lt;BR /&gt;Your RS found such an overall time to be too high (more than a couple&lt;BR /&gt;seconds for ex.) so it decided to log a warning.&lt;BR /&gt;&lt;BR /&gt;To evaluate why it took so long though, depends on knowledge of what&lt;BR /&gt;multi(…) (or other types) request was the client on 10.125.122.203&lt;BR /&gt;attempting to send, and did it carry a lot of rows, thereby requiring a lot&lt;BR /&gt;more time to process (a simple question). If the client's not at suspect,&lt;BR /&gt;then the RS needs to be investigated on why it took so long to process this&lt;BR /&gt;request, i.e. Did it suffer GC pauses? Did some operations within multi(…)&lt;BR /&gt;require to wait on region locks? Was there ongoing blockage due to flushing&lt;BR /&gt;that may have held some form of locks?&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 11 Nov 2015 06:34:56 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/hbase-warning-response-too-slow/m-p/34007#M10396</guid>
      <dc:creator>Harsh J</dc:creator>
      <dc:date>2015-11-11T06:34:56Z</dc:date>
    </item>
    <item>
      <title>Re: hbase warning response too slow</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/hbase-warning-response-too-slow/m-p/34020#M10397</link>
      <description>&lt;P&gt;Thanks for the input&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am suspecting that it may be the region settings I am using that prematurely splits regions contributing to the latency&lt;/P&gt;&lt;P&gt;Originally I set the regions at default to 10 gb, shrank it to 4 gb did a compaction and flush, the first writes where trying to reorg the regions&amp;nbsp;&lt;/P&gt;&lt;P&gt;which is stemming from my first problem&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="http://community.cloudera.com/t5/Storage-Random-Access-HDFS/hbase-closed-upon-write/m-p/34001#U34001" target="_blank"&gt;http://community.cloudera.com/t5/Storage-Random-Access-HDFS/hbase-closed-upon-write/m-p/34001#U34001&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I then increased the regions to 4.9 gb seems to be fine now&lt;/P&gt;&lt;P&gt;The reason I am staying under 5 gb, is so that I can transfer to S3 which has a file size limit&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Nov 2015 19:58:40 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/hbase-warning-response-too-slow/m-p/34020#M10397</guid>
      <dc:creator>scratch28</dc:creator>
      <dc:date>2015-11-11T19:58:40Z</dc:date>
    </item>
  </channel>
</rss>

