MAPREDUCE-3053. Better diagnostic message for unknown methods in ProtoBuf RPCs. Contributed by Vinod K V.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1175357 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
5ace0cabe5
commit
c285cf3114
@ -1412,6 +1412,9 @@ Release 0.23.0 - Unreleased
|
|||||||
MAPREDUCE-2990. Fixed display of NodeHealthStatus. (Subroto Sanyal via
|
MAPREDUCE-2990. Fixed display of NodeHealthStatus. (Subroto Sanyal via
|
||||||
acmurthy)
|
acmurthy)
|
||||||
|
|
||||||
|
MAPREDUCE-3053. Better diagnostic message for unknown methods in ProtoBuf
|
||||||
|
RPCs. (vinodkv via acmurthy)
|
||||||
|
|
||||||
Release 0.22.0 - Unreleased
|
Release 0.22.0 - Unreleased
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
@ -320,6 +320,12 @@ public Writable call(String protocol, Writable writableRequest,
|
|||||||
+ methodName);
|
+ methodName);
|
||||||
MethodDescriptor methodDescriptor = service.getDescriptorForType()
|
MethodDescriptor methodDescriptor = service.getDescriptorForType()
|
||||||
.findMethodByName(methodName);
|
.findMethodByName(methodName);
|
||||||
|
if (methodDescriptor == null) {
|
||||||
|
String msg = "Unknown method " + methodName + " called on "
|
||||||
|
+ protocol + " protocol.";
|
||||||
|
LOG.warn(msg);
|
||||||
|
return handleException(new IOException(msg));
|
||||||
|
}
|
||||||
Message prototype = service.getRequestPrototype(methodDescriptor);
|
Message prototype = service.getRequestPrototype(methodDescriptor);
|
||||||
Message param = prototype.newBuilderForType()
|
Message param = prototype.newBuilderForType()
|
||||||
.mergeFrom(rpcRequest.getRequestProto()).build();
|
.mergeFrom(rpcRequest.getRequestProto()).build();
|
||||||
|
@ -25,9 +25,11 @@
|
|||||||
import org.apache.avro.ipc.Server;
|
import org.apache.avro.ipc.Server;
|
||||||
import org.apache.hadoop.conf.Configuration;
|
import org.apache.hadoop.conf.Configuration;
|
||||||
import org.apache.hadoop.net.NetUtils;
|
import org.apache.hadoop.net.NetUtils;
|
||||||
|
import org.apache.hadoop.yarn.api.ClientRMProtocol;
|
||||||
import org.apache.hadoop.yarn.api.ContainerManager;
|
import org.apache.hadoop.yarn.api.ContainerManager;
|
||||||
import org.apache.hadoop.yarn.api.protocolrecords.GetContainerStatusRequest;
|
import org.apache.hadoop.yarn.api.protocolrecords.GetContainerStatusRequest;
|
||||||
import org.apache.hadoop.yarn.api.protocolrecords.GetContainerStatusResponse;
|
import org.apache.hadoop.yarn.api.protocolrecords.GetContainerStatusResponse;
|
||||||
|
import org.apache.hadoop.yarn.api.protocolrecords.GetNewApplicationIdRequest;
|
||||||
import org.apache.hadoop.yarn.api.protocolrecords.StartContainerRequest;
|
import org.apache.hadoop.yarn.api.protocolrecords.StartContainerRequest;
|
||||||
import org.apache.hadoop.yarn.api.protocolrecords.StartContainerResponse;
|
import org.apache.hadoop.yarn.api.protocolrecords.StartContainerResponse;
|
||||||
import org.apache.hadoop.yarn.api.protocolrecords.StopContainerRequest;
|
import org.apache.hadoop.yarn.api.protocolrecords.StopContainerRequest;
|
||||||
@ -47,6 +49,7 @@
|
|||||||
import org.apache.hadoop.yarn.ipc.HadoopYarnProtoRPC;
|
import org.apache.hadoop.yarn.ipc.HadoopYarnProtoRPC;
|
||||||
import org.apache.hadoop.yarn.ipc.RPCUtil;
|
import org.apache.hadoop.yarn.ipc.RPCUtil;
|
||||||
import org.apache.hadoop.yarn.ipc.YarnRPC;
|
import org.apache.hadoop.yarn.ipc.YarnRPC;
|
||||||
|
import org.apache.hadoop.yarn.util.Records;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
|
||||||
public class TestRPC {
|
public class TestRPC {
|
||||||
@ -65,6 +68,35 @@ public class TestRPC {
|
|||||||
// test(HadoopYarnRPC.class.getName());
|
// test(HadoopYarnRPC.class.getName());
|
||||||
// }
|
// }
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testUnknownCall() {
|
||||||
|
Configuration conf = new Configuration();
|
||||||
|
conf.set(YarnConfiguration.IPC_RPC_IMPL, HadoopYarnProtoRPC.class
|
||||||
|
.getName());
|
||||||
|
YarnRPC rpc = YarnRPC.create(conf);
|
||||||
|
String bindAddr = "localhost:0";
|
||||||
|
InetSocketAddress addr = NetUtils.createSocketAddr(bindAddr);
|
||||||
|
Server server = rpc.getServer(ContainerManager.class,
|
||||||
|
new DummyContainerManager(), addr, conf, null, 1);
|
||||||
|
server.start();
|
||||||
|
|
||||||
|
// Any unrelated protocol would do
|
||||||
|
ClientRMProtocol proxy = (ClientRMProtocol) rpc.getProxy(
|
||||||
|
ClientRMProtocol.class, NetUtils.createSocketAddr("localhost:"
|
||||||
|
+ server.getPort()), conf);
|
||||||
|
|
||||||
|
try {
|
||||||
|
proxy.getNewApplicationId(Records
|
||||||
|
.newRecord(GetNewApplicationIdRequest.class));
|
||||||
|
Assert.fail("Excepted RPC call to fail with unknown method.");
|
||||||
|
} catch (YarnRemoteException e) {
|
||||||
|
Assert.assertEquals("Unknown method getNewApplicationId called on "
|
||||||
|
+ "org.apache.hadoop.yarn.proto.ClientRMProtocol"
|
||||||
|
+ "$ClientRMProtocolService$BlockingInterface protocol.", e
|
||||||
|
.getMessage());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testHadoopProtoRPC() throws Exception {
|
public void testHadoopProtoRPC() throws Exception {
|
||||||
test(HadoopYarnProtoRPC.class.getName());
|
test(HadoopYarnProtoRPC.class.getName());
|
||||||
|
Loading…
Reference in New Issue
Block a user