HADOOP-10125. no need to process RPC request if the client connection has been dropped. Contributed by Min Ma
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1558575 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
c3b236ce5d
commit
d3cb721ce0
|
@ -287,6 +287,9 @@ Trunk (Unreleased)
|
||||||
|
|
||||||
HADOOP-10044 Improve the javadoc of rpc code (sanjay Radia)
|
HADOOP-10044 Improve the javadoc of rpc code (sanjay Radia)
|
||||||
|
|
||||||
|
HADOOP-10125. no need to process RPC request if the client connection
|
||||||
|
has been dropped (Min Ma via brandonli)
|
||||||
|
|
||||||
OPTIMIZATIONS
|
OPTIMIZATIONS
|
||||||
|
|
||||||
HADOOP-7761. Improve the performance of raw comparisons. (todd)
|
HADOOP-7761. Improve the performance of raw comparisons. (todd)
|
||||||
|
|
|
@ -2021,6 +2021,10 @@ public abstract class Server {
|
||||||
if (LOG.isDebugEnabled()) {
|
if (LOG.isDebugEnabled()) {
|
||||||
LOG.debug(Thread.currentThread().getName() + ": " + call + " for RpcKind " + call.rpcKind);
|
LOG.debug(Thread.currentThread().getName() + ": " + call + " for RpcKind " + call.rpcKind);
|
||||||
}
|
}
|
||||||
|
if (!call.connection.channel.isOpen()) {
|
||||||
|
LOG.info(Thread.currentThread().getName() + ": skipped " + call);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
String errorClass = null;
|
String errorClass = null;
|
||||||
String error = null;
|
String error = null;
|
||||||
RpcStatusProto returnStatus = RpcStatusProto.SUCCESS;
|
RpcStatusProto returnStatus = RpcStatusProto.SUCCESS;
|
||||||
|
|
Loading…
Reference in New Issue