作为一个分布式系统,Flink 内部不同组件之间通信依赖于 RPC 机制。这篇文章将对 Flink 的 RPC 框架加以分析。
例子
先来看一个简单的例子,了解 Flink 内部的 RPC 框架是如何使用的。
| ```
public class RpcTest {
private static final Time TIMEOUT = Time.seconds(10L);
private static ActorSystem actorSystem = null;
private static RpcService rpcService = null;
// 定义通信协议
public interface HelloGateway extends RpcGateway {
String hello();
}
public interface HiGateway extends RpcGateway {
String hi();
}
// 具体实现
public static class HelloRpcEndpoint extends RpcEndpoint implements HelloGateway {
protected HelloRpcEndpoint(RpcService rpcService) {
super(rpcService);
}
@Override
public String hello() {
return “hello”;
}
}
public static class HiRpcEndpoint extends RpcEndpoint implements HiGateway {
protected HiRpcEndpoint(RpcService rpcService) {
super(rpcService);
}
@Override
public String hi() {
return “hi”;
}
}
@BeforeClass
public static void setup() {
actorSystem = AkkaUtils.createDefaultActorSystem();
// 创建 RpcService, 基于 AKKA 的实现
rpcService = new AkkaRpcService(actorSystem, AkkaRpcServiceConfiguration.defaultConfiguration());
}
@AfterClass
public static void teardown() throws Exception {
final CompletableFuture
|
| --- |
基本的使用流程就是1)定义协议,提供 RPC 方法的实现;2)获得服务对象的代理对象,调用 RPC 方法。
<a name="26763ea8"></a>
## [](https://blog.jrwang.me/2019/flink-source-code-rpc/#%E4%B8%BB%E8%A6%81%E6%8A%BD%E8%B1%A1)主要抽象
`RpcEndpoint` 是对 RPC 框架中提供具体服务的实体的抽象,所有提供远程调用方法的组件都需要继承该抽象类。另外,对于同一个 `RpcEndpoint` 的所有 RPC 调用都会在同一个线程(RpcEndpoint 的“主线程”)中执行,因此无需担心并发执行的线程安全问题。<br />`RpcGateway` 接口是用于远程调用的代理接口。 `RpcGateway` 提供了获取其所代理的 `RpcEndpoint` 的地址的方法。在实现一个提供 RPC 调用的组件时,通常需要先定一个接口,该接口继承 `RpcGateway` 并约定好提供的远程调用的方法。<br />`RpcService` 是 `RpcEndpoint` 的运行时环境, `RpcService` 提供了启动 `RpcEndpoint`, 连接到远端 `RpcEndpoint` 并返回远端 `RpcEndpoint` 的代理对象等方法。此外, `RpcService` 还提供了某些异步任务或者周期性调度任务的方法。<br />`RpcServer` 相当于 `RpcEndpoint` 自身的的代理对象(self gateway)。`RpcServer` 是 `RpcService` 在启动了 `RpcEndpoint` 之后返回的对象,每一个 `RpcEndpoint` 对象内部都有一个 `RpcServer` 的成员变量,通过 `getSelfGateway` 方法就可以获得自身的代理,然后调用该Endpoint 提供的服务。<br />`FencedRpcEndpoint` 和 `FencedRpcGate` 要求在调用 RPC 方法时携带 token 信息,只有当调用方提供了 token 和 endpoint 的 token 一致时才允许调用。
<a name="db16476f"></a>
## [](https://blog.jrwang.me/2019/flink-source-code-rpc/#%E5%9F%BA%E4%BA%8E-akka-%E7%9A%84-rpc-%E5%AE%9E%E7%8E%B0)基于 Akka 的 RPC 实现
前面介绍了 Flink 内部 RPC 框架的基本抽象,主要就是 `RpcService`, `RpcEndpoint`, `RpcGateway`, `RpcServer` 等接口。至于具体的实现,则可以有多种不同的方式,如 Akka, Netty 等。Flink 目前提供了一套基于 Akka 的实现。
<a name="aeeca424"></a>
### [](https://blog.jrwang.me/2019/flink-source-code-rpc/#%E5%90%AF%E5%8A%A8-rpcendpoint)启动 RpcEndpoint
`AkkaRpcService` 实现了 `RpcService` 接口, `AkkaRpcService` 会启动 Akka actor 来接收来自 `RpcGateway` 的 RPC 调用。<br />首先,在 `RpcEndpoint` 的构造函数中,会调用 `AkkaRpcService#startServer` 方法来初始化服务,`AkkaRpcService#startServer` 的主要工作包括: - 创建一个 Akka actor (`AkkaRpcActor` 或 `FencedAkkaRpcActor`) - 通过动态代理创建代理对象
|
class AkkaRpcService {
@Override
public
|
| --- |
在 `RpcEndpoint` 对象创建后,下一步操作是启动它,实际上调用的是 `RpcServer.start()` 方法。`RpcServer` 是通过 `AkkaInvocationHandler` 创建的动态代理对象:
|
1 2 3 4 5 6 7 8
|
class AkkaInvocationHandler { private final ActorRef rpcEndpoint;
public void start() {
_ rpcEndpoint.tell(ControlMessages.START, ActorRef.noSender());
}
}
|
| --- | --- |
所以启动 `RpcEndpoint` 实际上就是向当前 endpoint 绑定的 Actor 发送一条 START 消息,通知服务启动。
<a name="3517cb21"></a>
### [](https://blog.jrwang.me/2019/flink-source-code-rpc/#%E8%8E%B7%E5%8F%96-rpcendpoint-%E7%9A%84%E4%BB%A3%E7%90%86%E5%AF%B9%E8%B1%A1)获取 RpcEndpoint 的代理对象
在 `RpcEndpoint` 创建的过程中,实际上已经通过动态代理生成了一个可供本地使用的代理对象,通过 `RpcEndpoint#getSelfGateway` 方法可以直接获取。
|
class RpcEndpoint {
public
|
| --- |
如果需要获取一个远程 `RpcEndpoint` 的代理,就需要通过 `RpcService#connect` 方法,需要提供远程 endpoint 的地址:
|
class AkkaRpcService {
private
|
| --- |
上述方法主要的功能包括:
- 通过地址获取 `RpcEndpoint` 绑定的 actor 的引用 `ActorRef`
- 向对应的 `AkkaRpcActor` 发送握手消息
- 握手成功之后,创建 `AkkaInvocationHandler` 对象,并通过动态代理生成代理对象
<a name="824fe91d"></a>
### [](https://blog.jrwang.me/2019/flink-source-code-rpc/#rpc-%E8%B0%83%E7%94%A8)Rpc 调用
在获取了本地或者远端 `RpcEndpoint` 的代理对象后,就可以通过代理对象发起 RPC 调用了。由于代理对象是通过动态代理创建的,因而所以的方法都会转化为 `AkkaInvocationHandler#invoke` 方法,并传入 RPC 调用的方法以及参数信息。
|
class AkkaInvocationHandler { @Override public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { Class<?> declaringClass = method.getDeclaringClass(); Object result; if (declaringClass.equals(AkkaBasedEndpoint.class) || declaringClass.equals(Object.class) || declaringClass.equals(RpcGateway.class) || declaringClass.equals(StartStoppable.class) || declaringClass.equals(MainThreadExecutable.class) || declaringClass.equals(RpcServer.class)) { result = method.invoke(this, args); } else if (declaringClass.equals(FencedRpcGateway.class)) { throw new UnsupportedOperationException(“AkkaInvocationHandler does not support the call FencedRpcGateway#” + method.getName() + “. This indicates that you retrieved a FencedRpcGateway without specifying a “ + “fencing token. Please use RpcService#connect(RpcService, F, Time) with F being the fencing token to “ + “retrieve a properly FencedRpcGateway.”); } else { result = invokeRpc(method, args); } return result; } private Object invokeRpc(Method method, Object[] args) throws Exception { String methodName = method.getName(); Class<?>[] parameterTypes = method.getParameterTypes(); Annotation[][] parameterAnnotations = method.getParameterAnnotations(); Time futureTimeout = extractRpcTimeout(parameterAnnotations, args, timeout); //将 RPC 调用封装为 RpcInvocation(会根据RpcEndpoint是本地还是远程的) final RpcInvocation rpcInvocation = createRpcInvocationMessage(methodName, parameterTypes, args); Class<?> returnType = method.getReturnType(); final Object result; //根据RPC方法是否有返回值决定调用 tell 还是 ask if (Objects.equals(returnType, Void.TYPE)) { //akka actor tell tell(rpcInvocation); result = null; } else { // execute an asynchronous call //akka actor ask CompletableFuture<?> resultFuture = ask(rpcInvocation, futureTimeout); CompletableFuture<?> completableFuture = resultFuture.thenApply((Object o) -> { if (o instanceof SerializedValue) { try { return ((SerializedValue<?>) o).deserializeValue(getClass().getClassLoader()); } catch (IOException | ClassNotFoundException e) { throw new CompletionException( new RpcException(“Could not deserialize the serialized payload of RPC method : “
+ methodName, e));
}
} else {
return o;
}
});
if (Objects.equals(returnType, CompletableFuture.class)) {
result = completableFuture;
} else {
try {
result = completableFuture.get(futureTimeout.getSize(), futureTimeout.getUnit());
} catch (ExecutionException ee) {
throw new RpcException("Failure while obtaining synchronous RPC result.", ExceptionUtils.stripExecutionException(ee));
}
}
}
return result;
}
}
|
| --- |
对于 RPC 调用,需要将 RPC 调用的方法名、参数类型和参数值封装为一个 `RpcInvocation` 对象,根据 `RpcEndpoint` 是本地的还是远端,具体的 有 `LocalRpcInvocation` 和 `RemoteRpcInvocation` 两类,它们的区别在于是否需要序列化。<br />然后根据 RPC 方法是否有返回值,决定调用 tell 或 ask 方法,然后通过 Akka 的 `ActorRef` 向对应的 AkkaRpcActor 发送请求,如果带有返回值,则等待 actor 的响应。
<a name="akkarpcactor"></a>
### [](https://blog.jrwang.me/2019/flink-source-code-rpc/#akkarpcactor)AkkaRpcActor
AkkaRpcActor 负责接受 RPC 调用的请求,并通过反射调用 `RpcEndpoint` 的对应方法来完成 RPC 调用。
|
class AkkaRpcActor
private void handleRpcInvocation(RpcInvocation rpcInvocation) { Method rpcMethod = null; try { String methodName = rpcInvocation.getMethodName(); Class<?>[] parameterTypes = rpcInvocation.getParameterTypes(); //获去需要调用的方法 rpcMethod = lookupRpcMethod(methodName, parameterTypes); } catch (ClassNotFoundException e) { log.error(“Could not load method arguments.”, e); RpcConnectionException rpcException = new RpcConnectionException(“Could not load method arguments.”, e); getSender().tell(new Status.Failure(rpcException), getSelf()); } catch (IOException e) { log.error(“Could not deserialize rpc invocation message.”, e); RpcConnectionException rpcException = new RpcConnectionException(“Could not deserialize rpc invocation message.”, e); getSender().tell(new Status.Failure(rpcException), getSelf()); } catch (final NoSuchMethodException e) { log.error(“Could not find rpc method for rpc invocation.”, e); RpcConnectionException rpcException = new RpcConnectionException(“Could not find rpc method for rpc invocation.”, e); getSender().tell(new Status.Failure(rpcException), getSelf()); } //通过反射执行 if (rpcMethod != null) { try { // this supports declaration of anonymous classes rpcMethod.setAccessible(true); if (rpcMethod.getReturnType().equals(Void.TYPE)) { // No return value to send back rpcMethod.invoke(rpcEndpoint, rpcInvocation.getArgs()); } else { final Object result; try { result = rpcMethod.invoke(rpcEndpoint, rpcInvocation.getArgs()); } catch (InvocationTargetException e) { log.debug(“Reporting back error thrown in remote procedure {}”, rpcMethod, e); // tell the sender about the failure getSender().tell(new Status.Failure(e.getTargetException()), getSelf()); return; }
final String methodName = rpcMethod.getName();
//向调用方发送执行结果
if (result instanceof CompletableFuture) {
final CompletableFuture<?> responseFuture = (CompletableFuture<?>) result;
sendAsyncResponse(responseFuture, methodName);
} else {
sendSyncResponse(result, methodName);
}
}
} catch (Throwable e) {
log.error("Error while executing remote procedure call {}.", rpcMethod, e);
// tell the sender about the failure
getSender().tell(new Status.Failure(e), getSelf());
}
}
}
} ``` | | —- |
小结
这篇文章简单地分析了 Flink 内部的 RPC 框架。首先,通过 RpcService
, RpcEndpoint
, RpcGateway
, RpcServer
等接口和抽象类,确定了 RPC 服务的基本框架;在这套框架的基础上, Flink 借助 Akka 和动态代理等技术提供了 RPC 调用的具体实现。
-EOF-