HBASE-12537 HBase should log the remote host on replication error (Stack)
This commit is contained in:
parent
703848ceea
commit
94d57f81dc
|
@ -1719,7 +1719,8 @@ public class RpcServer implements RpcServerInterface {
|
|||
responder, totalRequestSize, null);
|
||||
ByteArrayOutputStream responseBuffer = new ByteArrayOutputStream();
|
||||
setupResponse(responseBuffer, callTooBig, new CallQueueTooBigException(),
|
||||
"Call queue is full, is hbase.ipc.server.max.callqueue.size too small?");
|
||||
"Call queue is full on " + getListenerAddress() +
|
||||
", is hbase.ipc.server.max.callqueue.size too small?");
|
||||
responder.doRespond(callTooBig);
|
||||
return;
|
||||
}
|
||||
|
@ -1745,7 +1746,8 @@ public class RpcServer implements RpcServerInterface {
|
|||
buf, offset, buf.length);
|
||||
}
|
||||
} catch (Throwable t) {
|
||||
String msg = "Unable to read call parameter from client " + getHostAddress();
|
||||
String msg = getListenerAddress() + " is unable to read call parameter from client " +
|
||||
getHostAddress();
|
||||
LOG.warn(msg, t);
|
||||
|
||||
// probably the hbase hadoop version does not match the running hadoop version
|
||||
|
|
Loading…
Reference in New Issue