HBASE-11277 RpcServer threads can wedge under high load
This commit is contained in:
parent
af63fba391
commit
7f2f7c23a7
|
@ -1517,8 +1517,8 @@ public class RpcServer implements RpcServerInterface {
|
|||
if (!headerRead) {
|
||||
continue;
|
||||
}
|
||||
} else {
|
||||
// More to read still; go around again.
|
||||
} else if (count > 0) {
|
||||
// We got some data and there is more to read still; go around again.
|
||||
if (LOG.isTraceEnabled()) LOG.trace("Continue to read rest of data " + data.remaining());
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue