Each time around the regionserver core loop, we clear the messages to pass
master, even if we failed to deliver them
--------------------------------------------------------------------------------------------------------------------
Key: HBASE-1853
URL: https://issues.apache.org/jira/browse/HBASE-1853
Project: Hadoop HBase
Issue Type: Bug
Components: regionserver
Reporter: stack
At the head of the regionserver run loop we do this:
{code}
synchronized(this.outboundMsgs) {
outboundArray =
this.outboundMsgs.toArray(new HMsg[outboundMsgs.size()]);
this.outboundMsgs.clear();
}
{code}
We do this even if we failed to deliver the message to the master -- Connection
refused or whatever.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.