HADOOP-11552. Allow handoff on the server side for RPC requests. Contributed by Siddharth Seth
This commit is contained in:
parent
0de0c32ddd
commit
3d94da1e00
|
@ -31,7 +31,6 @@ import org.apache.hadoop.io.Writable;
|
||||||
import org.apache.hadoop.io.retry.RetryPolicy;
|
import org.apache.hadoop.io.retry.RetryPolicy;
|
||||||
import org.apache.hadoop.ipc.Client.ConnectionId;
|
import org.apache.hadoop.ipc.Client.ConnectionId;
|
||||||
import org.apache.hadoop.ipc.RPC.RpcInvoker;
|
import org.apache.hadoop.ipc.RPC.RpcInvoker;
|
||||||
import org.apache.hadoop.ipc.RpcWritable;
|
|
||||||
import org.apache.hadoop.ipc.protobuf.ProtobufRpcEngineProtos.RequestHeaderProto;
|
import org.apache.hadoop.ipc.protobuf.ProtobufRpcEngineProtos.RequestHeaderProto;
|
||||||
import org.apache.hadoop.security.UserGroupInformation;
|
import org.apache.hadoop.security.UserGroupInformation;
|
||||||
import org.apache.hadoop.security.token.SecretManager;
|
import org.apache.hadoop.security.token.SecretManager;
|
||||||
|
@ -345,6 +344,60 @@ public class ProtobufRpcEngine implements RpcEngine {
|
||||||
}
|
}
|
||||||
|
|
||||||
public static class Server extends RPC.Server {
|
public static class Server extends RPC.Server {
|
||||||
|
|
||||||
|
static final ThreadLocal<ProtobufRpcEngineCallback> currentCallback =
|
||||||
|
new ThreadLocal<>();
|
||||||
|
|
||||||
|
static final ThreadLocal<CallInfo> currentCallInfo = new ThreadLocal<>();
|
||||||
|
|
||||||
|
static class CallInfo {
|
||||||
|
private final RPC.Server server;
|
||||||
|
private final String methodName;
|
||||||
|
|
||||||
|
public CallInfo(RPC.Server server, String methodName) {
|
||||||
|
this.server = server;
|
||||||
|
this.methodName = methodName;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static class ProtobufRpcEngineCallbackImpl
|
||||||
|
implements ProtobufRpcEngineCallback {
|
||||||
|
|
||||||
|
private final RPC.Server server;
|
||||||
|
private final Call call;
|
||||||
|
private final String methodName;
|
||||||
|
private final long setupTime;
|
||||||
|
|
||||||
|
public ProtobufRpcEngineCallbackImpl() {
|
||||||
|
this.server = currentCallInfo.get().server;
|
||||||
|
this.call = Server.getCurCall().get();
|
||||||
|
this.methodName = currentCallInfo.get().methodName;
|
||||||
|
this.setupTime = Time.now();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void setResponse(Message message) {
|
||||||
|
long processingTime = Time.now() - setupTime;
|
||||||
|
call.setDeferredResponse(RpcWritable.wrap(message));
|
||||||
|
server.updateDeferredMetrics(methodName, processingTime);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void error(Throwable t) {
|
||||||
|
long processingTime = Time.now() - setupTime;
|
||||||
|
String detailedMetricsName = t.getClass().getSimpleName();
|
||||||
|
server.updateDeferredMetrics(detailedMetricsName, processingTime);
|
||||||
|
call.setDeferredError(t);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@InterfaceStability.Unstable
|
||||||
|
public static ProtobufRpcEngineCallback registerForDeferredResponse() {
|
||||||
|
ProtobufRpcEngineCallback callback = new ProtobufRpcEngineCallbackImpl();
|
||||||
|
currentCallback.set(callback);
|
||||||
|
return callback;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Construct an RPC server.
|
* Construct an RPC server.
|
||||||
*
|
*
|
||||||
|
@ -462,9 +515,19 @@ public class ProtobufRpcEngine implements RpcEngine {
|
||||||
long startTime = Time.now();
|
long startTime = Time.now();
|
||||||
int qTime = (int) (startTime - receiveTime);
|
int qTime = (int) (startTime - receiveTime);
|
||||||
Exception exception = null;
|
Exception exception = null;
|
||||||
|
boolean isDeferred = false;
|
||||||
try {
|
try {
|
||||||
server.rpcDetailedMetrics.init(protocolImpl.protocolClass);
|
server.rpcDetailedMetrics.init(protocolImpl.protocolClass);
|
||||||
|
currentCallInfo.set(new CallInfo(server, methodName));
|
||||||
result = service.callBlockingMethod(methodDescriptor, null, param);
|
result = service.callBlockingMethod(methodDescriptor, null, param);
|
||||||
|
// Check if this needs to be a deferred response,
|
||||||
|
// by checking the ThreadLocal callback being set
|
||||||
|
if (currentCallback.get() != null) {
|
||||||
|
Server.getCurCall().get().deferResponse();
|
||||||
|
isDeferred = true;
|
||||||
|
currentCallback.set(null);
|
||||||
|
return null;
|
||||||
|
}
|
||||||
} catch (ServiceException e) {
|
} catch (ServiceException e) {
|
||||||
exception = (Exception) e.getCause();
|
exception = (Exception) e.getCause();
|
||||||
throw (Exception) e.getCause();
|
throw (Exception) e.getCause();
|
||||||
|
@ -472,10 +535,13 @@ public class ProtobufRpcEngine implements RpcEngine {
|
||||||
exception = e;
|
exception = e;
|
||||||
throw e;
|
throw e;
|
||||||
} finally {
|
} finally {
|
||||||
|
currentCallInfo.set(null);
|
||||||
int processingTime = (int) (Time.now() - startTime);
|
int processingTime = (int) (Time.now() - startTime);
|
||||||
if (LOG.isDebugEnabled()) {
|
if (LOG.isDebugEnabled()) {
|
||||||
String msg = "Served: " + methodName + " queueTime= " + qTime +
|
String msg =
|
||||||
" procesingTime= " + processingTime;
|
"Served: " + methodName + (isDeferred ? ", deferred" : "") +
|
||||||
|
", queueTime= " + qTime +
|
||||||
|
" procesingTime= " + processingTime;
|
||||||
if (exception != null) {
|
if (exception != null) {
|
||||||
msg += " exception= " + exception.getClass().getSimpleName();
|
msg += " exception= " + exception.getClass().getSimpleName();
|
||||||
}
|
}
|
||||||
|
@ -484,7 +550,8 @@ public class ProtobufRpcEngine implements RpcEngine {
|
||||||
String detailedMetricsName = (exception == null) ?
|
String detailedMetricsName = (exception == null) ?
|
||||||
methodName :
|
methodName :
|
||||||
exception.getClass().getSimpleName();
|
exception.getClass().getSimpleName();
|
||||||
server.updateMetrics(detailedMetricsName, qTime, processingTime);
|
server.updateMetrics(detailedMetricsName, qTime, processingTime,
|
||||||
|
isDeferred);
|
||||||
}
|
}
|
||||||
return RpcWritable.wrap(result);
|
return RpcWritable.wrap(result);
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,29 @@
|
||||||
|
/**
|
||||||
|
* Licensed to the Apache Software Foundation (ASF) under one
|
||||||
|
* or more contributor license agreements. See the NOTICE file
|
||||||
|
* distributed with this work for additional information
|
||||||
|
* regarding copyright ownership. The ASF licenses this file
|
||||||
|
* to you under the Apache License, Version 2.0 (the
|
||||||
|
* "License"); you may not use this file except in compliance
|
||||||
|
* with the License. You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.apache.hadoop.ipc;
|
||||||
|
|
||||||
|
import com.google.protobuf.Message;
|
||||||
|
|
||||||
|
public interface ProtobufRpcEngineCallback {
|
||||||
|
|
||||||
|
public void setResponse(Message message);
|
||||||
|
|
||||||
|
public void error(Throwable t);
|
||||||
|
|
||||||
|
}
|
|
@ -498,18 +498,25 @@ public abstract class Server {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void updateMetrics(String name, int queueTime, int processingTime) {
|
void updateMetrics(String name, int queueTime, int processingTime,
|
||||||
|
boolean deferredCall) {
|
||||||
rpcMetrics.addRpcQueueTime(queueTime);
|
rpcMetrics.addRpcQueueTime(queueTime);
|
||||||
rpcMetrics.addRpcProcessingTime(processingTime);
|
if (!deferredCall) {
|
||||||
rpcDetailedMetrics.addProcessingTime(name, processingTime);
|
rpcMetrics.addRpcProcessingTime(processingTime);
|
||||||
callQueue.addResponseTime(name, getPriorityLevel(), queueTime,
|
rpcDetailedMetrics.addProcessingTime(name, processingTime);
|
||||||
processingTime);
|
callQueue.addResponseTime(name, getPriorityLevel(), queueTime,
|
||||||
|
processingTime);
|
||||||
if (isLogSlowRPC()) {
|
if (isLogSlowRPC()) {
|
||||||
logSlowRpcCalls(name, processingTime);
|
logSlowRpcCalls(name, processingTime);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void updateDeferredMetrics(String name, long processingTime) {
|
||||||
|
rpcMetrics.addDeferredRpcProcessingTime(processingTime);
|
||||||
|
rpcDetailedMetrics.addDeferredProcessingTime(name, processingTime);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A convenience method to bind to a given address and report
|
* A convenience method to bind to a given address and report
|
||||||
* better exceptions if the address is not a valid host.
|
* better exceptions if the address is not a valid host.
|
||||||
|
@ -675,6 +682,7 @@ public abstract class Server {
|
||||||
final byte[] clientId;
|
final byte[] clientId;
|
||||||
private final TraceScope traceScope; // the HTrace scope on the server side
|
private final TraceScope traceScope; // the HTrace scope on the server side
|
||||||
private final CallerContext callerContext; // the call context
|
private final CallerContext callerContext; // the call context
|
||||||
|
private boolean deferredResponse = false;
|
||||||
private int priorityLevel;
|
private int priorityLevel;
|
||||||
// the priority level assigned by scheduler, 0 by default
|
// the priority level assigned by scheduler, 0 by default
|
||||||
|
|
||||||
|
@ -783,6 +791,22 @@ public abstract class Server {
|
||||||
public void setPriorityLevel(int priorityLevel) {
|
public void setPriorityLevel(int priorityLevel) {
|
||||||
this.priorityLevel = priorityLevel;
|
this.priorityLevel = priorityLevel;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@InterfaceStability.Unstable
|
||||||
|
public void deferResponse() {
|
||||||
|
this.deferredResponse = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
@InterfaceStability.Unstable
|
||||||
|
public boolean isResponseDeferred() {
|
||||||
|
return this.deferredResponse;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDeferredResponse(Writable response) {
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDeferredError(Throwable t) {
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/** A RPC extended call queued for handling. */
|
/** A RPC extended call queued for handling. */
|
||||||
|
@ -836,43 +860,58 @@ public abstract class Server {
|
||||||
Server.LOG.info(Thread.currentThread().getName() + ": skipped " + this);
|
Server.LOG.info(Thread.currentThread().getName() + ": skipped " + this);
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
String errorClass = null;
|
|
||||||
String error = null;
|
|
||||||
RpcStatusProto returnStatus = RpcStatusProto.SUCCESS;
|
|
||||||
RpcErrorCodeProto detailedErr = null;
|
|
||||||
Writable value = null;
|
Writable value = null;
|
||||||
|
ResponseParams responseParams = new ResponseParams();
|
||||||
|
|
||||||
try {
|
try {
|
||||||
value = call(
|
value = call(
|
||||||
rpcKind, connection.protocolName, rpcRequest, timestamp);
|
rpcKind, connection.protocolName, rpcRequest, timestamp);
|
||||||
} catch (Throwable e) {
|
} catch (Throwable e) {
|
||||||
if (e instanceof UndeclaredThrowableException) {
|
populateResponseParamsOnError(e, responseParams);
|
||||||
e = e.getCause();
|
}
|
||||||
}
|
if (!isResponseDeferred()) {
|
||||||
logException(Server.LOG, e, this);
|
setupResponse(this, responseParams.returnStatus,
|
||||||
if (e instanceof RpcServerException) {
|
responseParams.detailedErr,
|
||||||
RpcServerException rse = ((RpcServerException)e);
|
value, responseParams.errorClass, responseParams.error);
|
||||||
returnStatus = rse.getRpcStatusProto();
|
sendResponse();
|
||||||
detailedErr = rse.getRpcErrorCodeProto();
|
} else {
|
||||||
} else {
|
if (LOG.isDebugEnabled()) {
|
||||||
returnStatus = RpcStatusProto.ERROR;
|
LOG.debug("Deferring response for callId: " + this.callId);
|
||||||
detailedErr = RpcErrorCodeProto.ERROR_APPLICATION;
|
|
||||||
}
|
|
||||||
errorClass = e.getClass().getName();
|
|
||||||
error = StringUtils.stringifyException(e);
|
|
||||||
// Remove redundant error class name from the beginning of the
|
|
||||||
// stack trace
|
|
||||||
String exceptionHdr = errorClass + ": ";
|
|
||||||
if (error.startsWith(exceptionHdr)) {
|
|
||||||
error = error.substring(exceptionHdr.length());
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
setupResponse(this, returnStatus, detailedErr,
|
|
||||||
value, errorClass, error);
|
|
||||||
sendResponse();
|
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param t the {@link java.lang.Throwable} to use to set
|
||||||
|
* errorInfo
|
||||||
|
* @param responseParams the {@link ResponseParams} instance to populate
|
||||||
|
*/
|
||||||
|
private void populateResponseParamsOnError(Throwable t,
|
||||||
|
ResponseParams responseParams) {
|
||||||
|
if (t instanceof UndeclaredThrowableException) {
|
||||||
|
t = t.getCause();
|
||||||
|
}
|
||||||
|
logException(Server.LOG, t, this);
|
||||||
|
if (t instanceof RpcServerException) {
|
||||||
|
RpcServerException rse = ((RpcServerException) t);
|
||||||
|
responseParams.returnStatus = rse.getRpcStatusProto();
|
||||||
|
responseParams.detailedErr = rse.getRpcErrorCodeProto();
|
||||||
|
} else {
|
||||||
|
responseParams.returnStatus = RpcStatusProto.ERROR;
|
||||||
|
responseParams.detailedErr = RpcErrorCodeProto.ERROR_APPLICATION;
|
||||||
|
}
|
||||||
|
responseParams.errorClass = t.getClass().getName();
|
||||||
|
responseParams.error = StringUtils.stringifyException(t);
|
||||||
|
// Remove redundant error class name from the beginning of the
|
||||||
|
// stack trace
|
||||||
|
String exceptionHdr = responseParams.errorClass + ": ";
|
||||||
|
if (responseParams.error.startsWith(exceptionHdr)) {
|
||||||
|
responseParams.error =
|
||||||
|
responseParams.error.substring(exceptionHdr.length());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void setResponse(ByteBuffer response) throws IOException {
|
void setResponse(ByteBuffer response) throws IOException {
|
||||||
this.rpcResponse = response;
|
this.rpcResponse = response;
|
||||||
}
|
}
|
||||||
|
@ -892,6 +931,80 @@ public abstract class Server {
|
||||||
connection.sendResponse(call);
|
connection.sendResponse(call);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Send a deferred response, ignoring errors.
|
||||||
|
*/
|
||||||
|
private void sendDeferedResponse() {
|
||||||
|
try {
|
||||||
|
connection.sendResponse(this);
|
||||||
|
} catch (Exception e) {
|
||||||
|
// For synchronous calls, application code is done once it's returned
|
||||||
|
// from a method. It does not expect to receive an error.
|
||||||
|
// This is equivalent to what happens in synchronous calls when the
|
||||||
|
// Responder is not able to send out the response.
|
||||||
|
LOG.error("Failed to send deferred response. ThreadName=" + Thread
|
||||||
|
.currentThread().getName() + ", CallId="
|
||||||
|
+ callId + ", hostname=" + getHostAddress());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void setDeferredResponse(Writable response) {
|
||||||
|
if (this.connection.getServer().running) {
|
||||||
|
try {
|
||||||
|
setupResponse(this, RpcStatusProto.SUCCESS, null, response,
|
||||||
|
null, null);
|
||||||
|
} catch (IOException e) {
|
||||||
|
// For synchronous calls, application code is done once it has
|
||||||
|
// returned from a method. It does not expect to receive an error.
|
||||||
|
// This is equivalent to what happens in synchronous calls when the
|
||||||
|
// response cannot be sent.
|
||||||
|
LOG.error(
|
||||||
|
"Failed to setup deferred successful response. ThreadName=" +
|
||||||
|
Thread.currentThread().getName() + ", Call=" + this);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
sendDeferedResponse();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void setDeferredError(Throwable t) {
|
||||||
|
if (this.connection.getServer().running) {
|
||||||
|
if (t == null) {
|
||||||
|
t = new IOException(
|
||||||
|
"User code indicated an error without an exception");
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
ResponseParams responseParams = new ResponseParams();
|
||||||
|
populateResponseParamsOnError(t, responseParams);
|
||||||
|
setupResponse(this, responseParams.returnStatus,
|
||||||
|
responseParams.detailedErr,
|
||||||
|
null, responseParams.errorClass, responseParams.error);
|
||||||
|
} catch (IOException e) {
|
||||||
|
// For synchronous calls, application code is done once it has
|
||||||
|
// returned from a method. It does not expect to receive an error.
|
||||||
|
// This is equivalent to what happens in synchronous calls when the
|
||||||
|
// response cannot be sent.
|
||||||
|
LOG.error(
|
||||||
|
"Failed to setup deferred error response. ThreadName=" +
|
||||||
|
Thread.currentThread().getName() + ", Call=" + this);
|
||||||
|
}
|
||||||
|
sendDeferedResponse();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Holds response parameters. Defaults set to work for successful
|
||||||
|
* invocations
|
||||||
|
*/
|
||||||
|
private class ResponseParams {
|
||||||
|
String errorClass = null;
|
||||||
|
String error = null;
|
||||||
|
RpcErrorCodeProto detailedErr = null;
|
||||||
|
RpcStatusProto returnStatus = RpcStatusProto.SUCCESS;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return super.toString() + " " + rpcRequest + " from " + connection;
|
return super.toString() + " " + rpcRequest + " from " + connection;
|
||||||
|
@ -1593,6 +1706,10 @@ public abstract class Server {
|
||||||
return lastContact;
|
return lastContact;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Server getServer() {
|
||||||
|
return Server.this;
|
||||||
|
}
|
||||||
|
|
||||||
/* Return true if the connection has no outstanding rpc */
|
/* Return true if the connection has no outstanding rpc */
|
||||||
private boolean isIdle() {
|
private boolean isIdle() {
|
||||||
return rpcCount.get() == 0;
|
return rpcCount.get() == 0;
|
||||||
|
@ -2105,7 +2222,6 @@ public abstract class Server {
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Reads the connection context following the connection header
|
/** Reads the connection context following the connection header
|
||||||
* @param dis - DataInputStream from which to read the header
|
|
||||||
* @throws WrappedRpcServerException - if the header cannot be
|
* @throws WrappedRpcServerException - if the header cannot be
|
||||||
* deserialized, or the user is not authorized
|
* deserialized, or the user is not authorized
|
||||||
*/
|
*/
|
||||||
|
@ -2215,7 +2331,7 @@ public abstract class Server {
|
||||||
* if SASL then SASL has been established and the buf we are passed
|
* if SASL then SASL has been established and the buf we are passed
|
||||||
* has been unwrapped from SASL.
|
* has been unwrapped from SASL.
|
||||||
*
|
*
|
||||||
* @param buf - contains the RPC request header and the rpc request
|
* @param bb - contains the RPC request header and the rpc request
|
||||||
* @throws IOException - internal error that should not be returned to
|
* @throws IOException - internal error that should not be returned to
|
||||||
* client, typically failure to respond to client
|
* client, typically failure to respond to client
|
||||||
* @throws WrappedRpcServerException - an exception that is sent back to the
|
* @throws WrappedRpcServerException - an exception that is sent back to the
|
||||||
|
@ -2294,7 +2410,7 @@ public abstract class Server {
|
||||||
* - A successfully decoded RpcCall will be deposited in RPC-Q and
|
* - A successfully decoded RpcCall will be deposited in RPC-Q and
|
||||||
* its response will be sent later when the request is processed.
|
* its response will be sent later when the request is processed.
|
||||||
* @param header - RPC request header
|
* @param header - RPC request header
|
||||||
* @param dis - stream to request payload
|
* @param buffer - stream to request payload
|
||||||
* @throws WrappedRpcServerException - due to fatal rpc layer issues such
|
* @throws WrappedRpcServerException - due to fatal rpc layer issues such
|
||||||
* as invalid header or deserialization error. In this case a RPC fatal
|
* as invalid header or deserialization error. In this case a RPC fatal
|
||||||
* status response will later be sent back to client.
|
* status response will later be sent back to client.
|
||||||
|
@ -2370,7 +2486,7 @@ public abstract class Server {
|
||||||
* Establish RPC connection setup by negotiating SASL if required, then
|
* Establish RPC connection setup by negotiating SASL if required, then
|
||||||
* reading and authorizing the connection header
|
* reading and authorizing the connection header
|
||||||
* @param header - RPC header
|
* @param header - RPC header
|
||||||
* @param dis - stream to request payload
|
* @param buffer - stream to request payload
|
||||||
* @throws WrappedRpcServerException - setup failed due to SASL
|
* @throws WrappedRpcServerException - setup failed due to SASL
|
||||||
* negotiation failure, premature or invalid connection context,
|
* negotiation failure, premature or invalid connection context,
|
||||||
* or other state errors. This exception needs to be sent to the
|
* or other state errors. This exception needs to be sent to the
|
||||||
|
@ -2439,8 +2555,6 @@ public abstract class Server {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Decode the a protobuf from the given input stream
|
* Decode the a protobuf from the given input stream
|
||||||
* @param builder - Builder of the protobuf to decode
|
|
||||||
* @param dis - DataInputStream to read the protobuf
|
|
||||||
* @return Message - decoded protobuf
|
* @return Message - decoded protobuf
|
||||||
* @throws WrappedRpcServerException - deserialization failed
|
* @throws WrappedRpcServerException - deserialization failed
|
||||||
*/
|
*/
|
||||||
|
@ -2748,7 +2862,6 @@ public abstract class Server {
|
||||||
/**
|
/**
|
||||||
* Setup response for the IPC Call.
|
* Setup response for the IPC Call.
|
||||||
*
|
*
|
||||||
* @param responseBuf buffer to serialize the response into
|
|
||||||
* @param call {@link Call} to which we are setting up the response
|
* @param call {@link Call} to which we are setting up the response
|
||||||
* @param status of the IPC call
|
* @param status of the IPC call
|
||||||
* @param rv return value for the IPC Call, if the call was successful
|
* @param rv return value for the IPC Call, if the call was successful
|
||||||
|
|
|
@ -552,7 +552,8 @@ public class WritableRpcEngine implements RpcEngine {
|
||||||
String detailedMetricsName = (exception == null) ?
|
String detailedMetricsName = (exception == null) ?
|
||||||
call.getMethodName() :
|
call.getMethodName() :
|
||||||
exception.getClass().getSimpleName();
|
exception.getClass().getSimpleName();
|
||||||
server.updateMetrics(detailedMetricsName, qTime, processingTime);
|
server
|
||||||
|
.updateMetrics(detailedMetricsName, qTime, processingTime, false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -35,6 +35,7 @@ import org.apache.hadoop.metrics2.lib.MutableRatesWithAggregation;
|
||||||
public class RpcDetailedMetrics {
|
public class RpcDetailedMetrics {
|
||||||
|
|
||||||
@Metric MutableRatesWithAggregation rates;
|
@Metric MutableRatesWithAggregation rates;
|
||||||
|
@Metric MutableRatesWithAggregation deferredRpcRates;
|
||||||
|
|
||||||
static final Log LOG = LogFactory.getLog(RpcDetailedMetrics.class);
|
static final Log LOG = LogFactory.getLog(RpcDetailedMetrics.class);
|
||||||
final MetricsRegistry registry;
|
final MetricsRegistry registry;
|
||||||
|
@ -60,6 +61,7 @@ public class RpcDetailedMetrics {
|
||||||
*/
|
*/
|
||||||
public void init(Class<?> protocol) {
|
public void init(Class<?> protocol) {
|
||||||
rates.init(protocol);
|
rates.init(protocol);
|
||||||
|
deferredRpcRates.init(protocol);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -72,6 +74,10 @@ public class RpcDetailedMetrics {
|
||||||
rates.add(name, processingTime);
|
rates.add(name, processingTime);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void addDeferredProcessingTime(String name, long processingTime) {
|
||||||
|
deferredRpcRates.add(name, processingTime);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Shutdown the instrumentation for the process
|
* Shutdown the instrumentation for the process
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -61,6 +61,8 @@ public class RpcMetrics {
|
||||||
new MutableQuantiles[intervals.length];
|
new MutableQuantiles[intervals.length];
|
||||||
rpcProcessingTimeMillisQuantiles =
|
rpcProcessingTimeMillisQuantiles =
|
||||||
new MutableQuantiles[intervals.length];
|
new MutableQuantiles[intervals.length];
|
||||||
|
deferredRpcProcessingTimeMillisQuantiles =
|
||||||
|
new MutableQuantiles[intervals.length];
|
||||||
for (int i = 0; i < intervals.length; i++) {
|
for (int i = 0; i < intervals.length; i++) {
|
||||||
int interval = intervals[i];
|
int interval = intervals[i];
|
||||||
rpcQueueTimeMillisQuantiles[i] = registry.newQuantiles("rpcQueueTime"
|
rpcQueueTimeMillisQuantiles[i] = registry.newQuantiles("rpcQueueTime"
|
||||||
|
@ -69,6 +71,10 @@ public class RpcMetrics {
|
||||||
rpcProcessingTimeMillisQuantiles[i] = registry.newQuantiles(
|
rpcProcessingTimeMillisQuantiles[i] = registry.newQuantiles(
|
||||||
"rpcProcessingTime" + interval + "s",
|
"rpcProcessingTime" + interval + "s",
|
||||||
"rpc processing time in milli second", "ops", "latency", interval);
|
"rpc processing time in milli second", "ops", "latency", interval);
|
||||||
|
deferredRpcProcessingTimeMillisQuantiles[i] = registry
|
||||||
|
.newQuantiles("deferredRpcProcessingTime" + interval + "s",
|
||||||
|
"deferred rpc processing time in milli seconds", "ops",
|
||||||
|
"latency", interval);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
LOG.debug("Initialized " + registry);
|
LOG.debug("Initialized " + registry);
|
||||||
|
@ -87,6 +93,8 @@ public class RpcMetrics {
|
||||||
MutableQuantiles[] rpcQueueTimeMillisQuantiles;
|
MutableQuantiles[] rpcQueueTimeMillisQuantiles;
|
||||||
@Metric("Processing time") MutableRate rpcProcessingTime;
|
@Metric("Processing time") MutableRate rpcProcessingTime;
|
||||||
MutableQuantiles[] rpcProcessingTimeMillisQuantiles;
|
MutableQuantiles[] rpcProcessingTimeMillisQuantiles;
|
||||||
|
@Metric("Deferred Processing time") MutableRate deferredRpcProcessingTime;
|
||||||
|
MutableQuantiles[] deferredRpcProcessingTimeMillisQuantiles;
|
||||||
@Metric("Number of authentication failures")
|
@Metric("Number of authentication failures")
|
||||||
MutableCounterLong rpcAuthenticationFailures;
|
MutableCounterLong rpcAuthenticationFailures;
|
||||||
@Metric("Number of authentication successes")
|
@Metric("Number of authentication successes")
|
||||||
|
@ -202,6 +210,15 @@ public class RpcMetrics {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void addDeferredRpcProcessingTime(long processingTime) {
|
||||||
|
deferredRpcProcessingTime.add(processingTime);
|
||||||
|
if (rpcQuantileEnable) {
|
||||||
|
for (MutableQuantiles q : deferredRpcProcessingTimeMillisQuantiles) {
|
||||||
|
q.add(processingTime);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* One client backoff event
|
* One client backoff event
|
||||||
*/
|
*/
|
||||||
|
@ -255,4 +272,20 @@ public class RpcMetrics {
|
||||||
public long getRpcSlowCalls() {
|
public long getRpcSlowCalls() {
|
||||||
return rpcSlowCalls.value();
|
return rpcSlowCalls.value();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public MutableRate getDeferredRpcProcessingTime() {
|
||||||
|
return deferredRpcProcessingTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public long getDeferredRpcProcessingSampleCount() {
|
||||||
|
return deferredRpcProcessingTime.lastStat().numSamples();
|
||||||
|
}
|
||||||
|
|
||||||
|
public double getDeferredRpcProcessingMean() {
|
||||||
|
return deferredRpcProcessingTime.lastStat().mean();
|
||||||
|
}
|
||||||
|
|
||||||
|
public double getDeferredRpcProcessingStdDev() {
|
||||||
|
return deferredRpcProcessingTime.lastStat().stddev();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,167 @@
|
||||||
|
/**
|
||||||
|
* Licensed to the Apache Software Foundation (ASF) under one
|
||||||
|
* or more contributor license agreements. See the NOTICE file
|
||||||
|
* distributed with this work for additional information
|
||||||
|
* regarding copyright ownership. The ASF licenses this file
|
||||||
|
* to you under the Apache License, Version 2.0 (the
|
||||||
|
* "License"); you may not use this file except in compliance
|
||||||
|
* with the License. You may obtain a copy of the License at
|
||||||
|
* <p>
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
* <p>
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.apache.hadoop.ipc;
|
||||||
|
|
||||||
|
import java.net.InetSocketAddress;
|
||||||
|
import java.util.concurrent.Callable;
|
||||||
|
import java.util.concurrent.CompletionService;
|
||||||
|
import java.util.concurrent.ExecutorCompletionService;
|
||||||
|
import java.util.concurrent.ExecutorService;
|
||||||
|
import java.util.concurrent.Executors;
|
||||||
|
import java.util.concurrent.Future;
|
||||||
|
|
||||||
|
import com.google.protobuf.BlockingService;
|
||||||
|
import com.google.protobuf.RpcController;
|
||||||
|
import com.google.protobuf.ServiceException;
|
||||||
|
import org.apache.commons.logging.Log;
|
||||||
|
import org.apache.commons.logging.LogFactory;
|
||||||
|
import org.apache.hadoop.conf.Configuration;
|
||||||
|
import org.apache.hadoop.ipc.protobuf.TestProtos;
|
||||||
|
import org.apache.hadoop.ipc.protobuf.TestRpcServiceProtos.TestProtobufRpcHandoffProto;
|
||||||
|
import org.junit.Assert;
|
||||||
|
import org.junit.Test;
|
||||||
|
|
||||||
|
public class TestProtoBufRpcServerHandoff {
|
||||||
|
|
||||||
|
public static final Log LOG =
|
||||||
|
LogFactory.getLog(TestProtoBufRpcServerHandoff.class);
|
||||||
|
|
||||||
|
@Test(timeout = 20000)
|
||||||
|
public void test() throws Exception {
|
||||||
|
Configuration conf = new Configuration();
|
||||||
|
|
||||||
|
TestProtoBufRpcServerHandoffServer serverImpl =
|
||||||
|
new TestProtoBufRpcServerHandoffServer();
|
||||||
|
BlockingService blockingService =
|
||||||
|
TestProtobufRpcHandoffProto.newReflectiveBlockingService(serverImpl);
|
||||||
|
|
||||||
|
RPC.setProtocolEngine(conf, TestProtoBufRpcServerHandoffProtocol.class,
|
||||||
|
ProtobufRpcEngine.class);
|
||||||
|
RPC.Server server = new RPC.Builder(conf)
|
||||||
|
.setProtocol(TestProtoBufRpcServerHandoffProtocol.class)
|
||||||
|
.setInstance(blockingService)
|
||||||
|
.setVerbose(true)
|
||||||
|
.setNumHandlers(1) // Num Handlers explicitly set to 1 for test.
|
||||||
|
.build();
|
||||||
|
server.start();
|
||||||
|
|
||||||
|
InetSocketAddress address = server.getListenerAddress();
|
||||||
|
long serverStartTime = System.currentTimeMillis();
|
||||||
|
LOG.info("Server started at: " + address + " at time: " + serverStartTime);
|
||||||
|
|
||||||
|
final TestProtoBufRpcServerHandoffProtocol client = RPC.getProxy(
|
||||||
|
TestProtoBufRpcServerHandoffProtocol.class, 1, address, conf);
|
||||||
|
|
||||||
|
ExecutorService executorService = Executors.newFixedThreadPool(2);
|
||||||
|
CompletionService<ClientInvocationCallable> completionService =
|
||||||
|
new ExecutorCompletionService<ClientInvocationCallable>(
|
||||||
|
executorService);
|
||||||
|
|
||||||
|
completionService.submit(new ClientInvocationCallable(client, 5000l));
|
||||||
|
completionService.submit(new ClientInvocationCallable(client, 5000l));
|
||||||
|
|
||||||
|
long submitTime = System.currentTimeMillis();
|
||||||
|
Future<ClientInvocationCallable> future1 = completionService.take();
|
||||||
|
Future<ClientInvocationCallable> future2 = completionService.take();
|
||||||
|
|
||||||
|
ClientInvocationCallable callable1 = future1.get();
|
||||||
|
ClientInvocationCallable callable2 = future2.get();
|
||||||
|
|
||||||
|
LOG.info(callable1);
|
||||||
|
LOG.info(callable2);
|
||||||
|
|
||||||
|
// Ensure the 5 second sleep responses are within a reasonable time of each
|
||||||
|
// other.
|
||||||
|
Assert.assertTrue(Math.abs(callable1.endTime - callable2.endTime) < 2000l);
|
||||||
|
Assert.assertTrue(System.currentTimeMillis() - submitTime < 7000l);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private static class ClientInvocationCallable
|
||||||
|
implements Callable<ClientInvocationCallable> {
|
||||||
|
final TestProtoBufRpcServerHandoffProtocol client;
|
||||||
|
final long sleepTime;
|
||||||
|
TestProtos.SleepResponseProto2 result;
|
||||||
|
long startTime;
|
||||||
|
long endTime;
|
||||||
|
|
||||||
|
|
||||||
|
private ClientInvocationCallable(
|
||||||
|
TestProtoBufRpcServerHandoffProtocol client, long sleepTime) {
|
||||||
|
this.client = client;
|
||||||
|
this.sleepTime = sleepTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ClientInvocationCallable call() throws Exception {
|
||||||
|
startTime = System.currentTimeMillis();
|
||||||
|
result = client.sleep(null,
|
||||||
|
TestProtos.SleepRequestProto2.newBuilder().setSleepTime(sleepTime)
|
||||||
|
.build());
|
||||||
|
endTime = System.currentTimeMillis();
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "startTime=" + startTime + ", endTime=" + endTime +
|
||||||
|
(result != null ?
|
||||||
|
", result.receiveTime=" + result.getReceiveTime() +
|
||||||
|
", result.responseTime=" +
|
||||||
|
result.getResponseTime() : "");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@ProtocolInfo(
|
||||||
|
protocolName = "org.apache.hadoop.ipc.TestProtoBufRpcServerHandoff$TestProtoBufRpcServerHandoffProtocol",
|
||||||
|
protocolVersion = 1)
|
||||||
|
public interface TestProtoBufRpcServerHandoffProtocol
|
||||||
|
extends TestProtobufRpcHandoffProto.BlockingInterface {
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class TestProtoBufRpcServerHandoffServer
|
||||||
|
implements TestProtoBufRpcServerHandoffProtocol {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public TestProtos.SleepResponseProto2 sleep
|
||||||
|
(RpcController controller,
|
||||||
|
TestProtos.SleepRequestProto2 request) throws
|
||||||
|
ServiceException {
|
||||||
|
final long startTime = System.currentTimeMillis();
|
||||||
|
final ProtobufRpcEngineCallback callback =
|
||||||
|
ProtobufRpcEngine.Server.registerForDeferredResponse();
|
||||||
|
final long sleepTime = request.getSleepTime();
|
||||||
|
new Thread() {
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
try {
|
||||||
|
Thread.sleep(sleepTime);
|
||||||
|
} catch (InterruptedException e) {
|
||||||
|
throw new RuntimeException(e);
|
||||||
|
}
|
||||||
|
callback.setResponse(
|
||||||
|
TestProtos.SleepResponseProto2.newBuilder()
|
||||||
|
.setReceiveTime(startTime)
|
||||||
|
.setResponseTime(System.currentTimeMillis()).build());
|
||||||
|
}
|
||||||
|
}.start();
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,218 @@
|
||||||
|
/**
|
||||||
|
* Licensed to the Apache Software Foundation (ASF) under one
|
||||||
|
* or more contributor license agreements. See the NOTICE file
|
||||||
|
* distributed with this work for additional information
|
||||||
|
* regarding copyright ownership. The ASF licenses this file
|
||||||
|
* to you under the Apache License, Version 2.0 (the
|
||||||
|
* "License"); you may not use this file except in compliance
|
||||||
|
* with the License. You may obtain a copy of the License at
|
||||||
|
* <p>
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
* <p>
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.apache.hadoop.ipc;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.net.InetSocketAddress;
|
||||||
|
import java.util.Random;
|
||||||
|
import java.util.concurrent.Callable;
|
||||||
|
import java.util.concurrent.ExecutionException;
|
||||||
|
import java.util.concurrent.FutureTask;
|
||||||
|
import java.util.concurrent.TimeUnit;
|
||||||
|
import java.util.concurrent.TimeoutException;
|
||||||
|
import java.util.concurrent.atomic.AtomicBoolean;
|
||||||
|
import java.util.concurrent.locks.Condition;
|
||||||
|
import java.util.concurrent.locks.ReentrantLock;
|
||||||
|
|
||||||
|
import org.apache.commons.logging.Log;
|
||||||
|
import org.apache.commons.logging.LogFactory;
|
||||||
|
import org.apache.hadoop.conf.Configuration;
|
||||||
|
import org.apache.hadoop.io.BytesWritable;
|
||||||
|
import org.apache.hadoop.io.Writable;
|
||||||
|
import org.apache.hadoop.net.NetUtils;
|
||||||
|
import org.junit.Assert;
|
||||||
|
import org.junit.Test;
|
||||||
|
|
||||||
|
public class TestRpcServerHandoff {
|
||||||
|
|
||||||
|
public static final Log LOG =
|
||||||
|
LogFactory.getLog(TestRpcServerHandoff.class);
|
||||||
|
|
||||||
|
private static final String BIND_ADDRESS = "0.0.0.0";
|
||||||
|
private static final Configuration conf = new Configuration();
|
||||||
|
|
||||||
|
|
||||||
|
public static class ServerForHandoffTest extends Server {
|
||||||
|
|
||||||
|
private final AtomicBoolean invoked = new AtomicBoolean(false);
|
||||||
|
private final ReentrantLock lock = new ReentrantLock();
|
||||||
|
private final Condition invokedCondition = lock.newCondition();
|
||||||
|
|
||||||
|
private volatile Writable request;
|
||||||
|
private volatile Call deferredCall;
|
||||||
|
|
||||||
|
protected ServerForHandoffTest(int handlerCount) throws IOException {
|
||||||
|
super(BIND_ADDRESS, 0, BytesWritable.class, handlerCount, conf);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Writable call(RPC.RpcKind rpcKind, String protocol, Writable param,
|
||||||
|
long receiveTime) throws Exception {
|
||||||
|
request = param;
|
||||||
|
deferredCall = Server.getCurCall().get();
|
||||||
|
Server.getCurCall().get().deferResponse();
|
||||||
|
lock.lock();
|
||||||
|
try {
|
||||||
|
invoked.set(true);
|
||||||
|
invokedCondition.signal();
|
||||||
|
} finally {
|
||||||
|
lock.unlock();
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
void awaitInvocation() throws InterruptedException {
|
||||||
|
lock.lock();
|
||||||
|
try {
|
||||||
|
while (!invoked.get()) {
|
||||||
|
invokedCondition.await();
|
||||||
|
}
|
||||||
|
} finally {
|
||||||
|
lock.unlock();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void sendResponse() {
|
||||||
|
deferredCall.setDeferredResponse(request);
|
||||||
|
}
|
||||||
|
|
||||||
|
void sendError() {
|
||||||
|
deferredCall.setDeferredError(new IOException("DeferredError"));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test(timeout = 10000)
|
||||||
|
public void testDeferredResponse() throws IOException, InterruptedException,
|
||||||
|
ExecutionException {
|
||||||
|
|
||||||
|
|
||||||
|
ServerForHandoffTest server = new ServerForHandoffTest(2);
|
||||||
|
server.start();
|
||||||
|
try {
|
||||||
|
InetSocketAddress serverAddress = NetUtils.getConnectAddress(server);
|
||||||
|
byte[] requestBytes = generateRandomBytes(1024);
|
||||||
|
ClientCallable clientCallable =
|
||||||
|
new ClientCallable(serverAddress, conf, requestBytes);
|
||||||
|
|
||||||
|
FutureTask<Writable> future = new FutureTask<Writable>(clientCallable);
|
||||||
|
Thread clientThread = new Thread(future);
|
||||||
|
clientThread.start();
|
||||||
|
|
||||||
|
server.awaitInvocation();
|
||||||
|
awaitResponseTimeout(future);
|
||||||
|
|
||||||
|
server.sendResponse();
|
||||||
|
BytesWritable response = (BytesWritable) future.get();
|
||||||
|
|
||||||
|
Assert.assertEquals(new BytesWritable(requestBytes), response);
|
||||||
|
} finally {
|
||||||
|
if (server != null) {
|
||||||
|
server.stop();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test(timeout = 10000)
|
||||||
|
public void testDeferredException() throws IOException, InterruptedException,
|
||||||
|
ExecutionException {
|
||||||
|
ServerForHandoffTest server = new ServerForHandoffTest(2);
|
||||||
|
server.start();
|
||||||
|
try {
|
||||||
|
InetSocketAddress serverAddress = NetUtils.getConnectAddress(server);
|
||||||
|
byte[] requestBytes = generateRandomBytes(1024);
|
||||||
|
ClientCallable clientCallable =
|
||||||
|
new ClientCallable(serverAddress, conf, requestBytes);
|
||||||
|
|
||||||
|
FutureTask<Writable> future = new FutureTask<Writable>(clientCallable);
|
||||||
|
Thread clientThread = new Thread(future);
|
||||||
|
clientThread.start();
|
||||||
|
|
||||||
|
server.awaitInvocation();
|
||||||
|
awaitResponseTimeout(future);
|
||||||
|
|
||||||
|
server.sendError();
|
||||||
|
try {
|
||||||
|
future.get();
|
||||||
|
Assert.fail("Call succeeded. Was expecting an exception");
|
||||||
|
} catch (ExecutionException e) {
|
||||||
|
Throwable cause = e.getCause();
|
||||||
|
Assert.assertTrue(cause instanceof RemoteException);
|
||||||
|
RemoteException re = (RemoteException) cause;
|
||||||
|
Assert.assertTrue(re.toString().contains("DeferredError"));
|
||||||
|
}
|
||||||
|
} finally {
|
||||||
|
if (server != null) {
|
||||||
|
server.stop();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void awaitResponseTimeout(FutureTask<Writable> future) throws
|
||||||
|
ExecutionException,
|
||||||
|
InterruptedException {
|
||||||
|
long sleepTime = 3000L;
|
||||||
|
while (sleepTime > 0) {
|
||||||
|
try {
|
||||||
|
future.get(200L, TimeUnit.MILLISECONDS);
|
||||||
|
Assert.fail("Expected to timeout since" +
|
||||||
|
" the deferred response hasn't been registered");
|
||||||
|
} catch (TimeoutException e) {
|
||||||
|
// Ignoring. Expected to time out.
|
||||||
|
}
|
||||||
|
sleepTime -= 200L;
|
||||||
|
}
|
||||||
|
LOG.info("Done sleeping");
|
||||||
|
}
|
||||||
|
|
||||||
|
private static class ClientCallable implements Callable<Writable> {
|
||||||
|
|
||||||
|
private final InetSocketAddress address;
|
||||||
|
private final Configuration conf;
|
||||||
|
final byte[] requestBytes;
|
||||||
|
|
||||||
|
|
||||||
|
private ClientCallable(InetSocketAddress address, Configuration conf,
|
||||||
|
byte[] requestBytes) {
|
||||||
|
this.address = address;
|
||||||
|
this.conf = conf;
|
||||||
|
this.requestBytes = requestBytes;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Writable call() throws Exception {
|
||||||
|
Client client = new Client(BytesWritable.class, conf);
|
||||||
|
Writable param = new BytesWritable(requestBytes);
|
||||||
|
final Client.ConnectionId remoteId =
|
||||||
|
Client.ConnectionId.getConnectionId(address, null,
|
||||||
|
null, 0, null, conf);
|
||||||
|
Writable result = client.call(RPC.RpcKind.RPC_BUILTIN, param, remoteId,
|
||||||
|
new AtomicBoolean(false));
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private byte[] generateRandomBytes(int length) {
|
||||||
|
Random random = new Random();
|
||||||
|
byte[] bytes = new byte[length];
|
||||||
|
for (int i = 0; i < length; i++) {
|
||||||
|
bytes[i] = (byte) ('a' + random.nextInt(26));
|
||||||
|
}
|
||||||
|
return bytes;
|
||||||
|
}
|
||||||
|
}
|
|
@ -91,3 +91,12 @@ message AuthMethodResponseProto {
|
||||||
message UserResponseProto {
|
message UserResponseProto {
|
||||||
required string user = 1;
|
required string user = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
message SleepRequestProto2 {
|
||||||
|
optional int64 sleep_time = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
message SleepResponseProto2 {
|
||||||
|
optional int64 receive_time = 1;
|
||||||
|
optional int64 response_time = 2;
|
||||||
|
}
|
||||||
|
|
|
@ -71,3 +71,7 @@ service NewerProtobufRpcProto {
|
||||||
service CustomProto {
|
service CustomProto {
|
||||||
rpc ping(EmptyRequestProto) returns (EmptyResponseProto);
|
rpc ping(EmptyRequestProto) returns (EmptyResponseProto);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
service TestProtobufRpcHandoffProto {
|
||||||
|
rpc sleep(SleepRequestProto2) returns (SleepResponseProto2);
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue