2022年4月8日

Flink RPC源码

摘要: DEMO Flink RPC 众所周知底层是Akka,我先来写一个RPC 的用例 RPC Gateway public interface HelloGateway extends RpcGateway { CompletableFuture<String> hello(); } RPC Endpo 阅读全文

posted @ 2022-04-08 15:27 chouc 阅读(193) 评论(0) 推荐(0) 编辑

Flink Windows源码

摘要: Windows 属性 Windows 就是基于ListState 和 AggregateState来做的存储,Windows里面有三个重要的属性,Assigner、Trigger、Evictor (非必须)。 WindowsAssigner TumblingEventTimeWindows prot 阅读全文

posted @ 2022-04-08 15:24 chouc 阅读(104) 评论(0) 推荐(0) 编辑

导航