Generic/Template Programming in Flink
Generic/Template Programming in Flink
SourceFunction<T>
- @Public
- public interface SourceFunction<T> extends Function, Serializable {
- void run(SourceContext<T> ctx) throws Exception;
- void cancel();
- @Public // Interface might be extended in the future with additional methods.
- interface SourceContext<T> {
- void collect(T element);
- @PublicEvolving
- void collectWithTimestamp(T element, long timestamp);
- @PublicEvolving
- void emitWatermark(Watermark mark);
- @PublicEvolving
- void markAsTemporarilyIdle();
- Object getCheckpointLock();
- void close();
- }
- }
- @Override
- public void run(SourceContext<Integer> ctx) throws Exception {
- while ((start < counter || counter == -1) && isRunning) {
- synchronized (ctx.getCheckpointLock()) {
- ctx.collect(start);
- ++start;
- // loop back to 0
- if (start == Integer.MAX_VALUE) {
- start = 0;
- }
- }
- Thread.sleep(10L);
- }
- }
AsyncFunction<IN, OUT>
- @PublicEvolving
- public interface AsyncFunction<IN, OUT> extends Function, Serializable {
- void asyncInvoke(IN input, ResultFuture<OUT> resultFuture) throws Exception;
- default void timeout(IN input, ResultFuture<OUT> resultFuture) throws Exception {
- resultFuture.completeExceptionally(
- new TimeoutException("Async function call has timed out."));
- }
- }
- @Override
- public void asyncInvoke(final Integer input, final ResultFuture<String> resultFuture) {
- executorService.submit(() -> {
- // wait for while to simulate async operation here
- long sleep = (long) (ThreadLocalRandom.current().nextFloat() * sleepFactor);
- try {
- Thread.sleep(sleep);
- if (ThreadLocalRandom.current().nextFloat() < failRatio) {
- resultFuture.completeExceptionally(new Exception("wahahahaha..."));
- } else {
- resultFuture.complete(
- Collections.singletonList("key-" + (input % 10)));
- }
- } catch (InterruptedException e) {
- resultFuture.complete(new ArrayList<>(0));
- }
- });
- }
- public static <IN, OUT> SingleOutputStreamOperator<OUT> orderedWait(
- DataStream<IN> in,
- AsyncFunction<IN, OUT> func,
- long timeout,
- TimeUnit timeUnit,
- int capacity) {
- return addOperator(in, func, timeUnit.toMillis(timeout), capacity, OutputMode.ORDERED);
- }
- FlatMapFunction<T, O>
- @Public
- @FunctionalInterface
- public interface FlatMapFunction<T, O> extends Function, Serializable {
- void flatMap(T value, Collector<O> out) throws Exception;
- }
- FlatMapFunction<String, Tuple2<String, Integer>>() {
- private static final long serialVersionUID = -938116068682344455L;
- @Override
- public void flatMap(String value, Collector<Tuple2<String, Integer>> out) throws Exception {
- out.collect(new Tuple2<>(value, 1));
- }
- }
Generic/Template Programming in Flink的更多相关文章
- Flink -- Java Generics Programming
Flink uses a lot of generics programming, which is an executor Framework with cluster of executor ha ...
- Important Programming Concepts (Even on Embedded Systems) Part V: State Machines
Earlier articles in this series: Part I: Idempotence Part II: Immutability Part III: Volatility Part ...
- Flink Program Guide (2) -- 综述 (DataStream API编程指导 -- For Java)
v\:* {behavior:url(#default#VML);} o\:* {behavior:url(#default#VML);} w\:* {behavior:url(#default#VM ...
- Flink官网文档翻译
http://ifeve.com/flink-quick-start/ http://vinoyang.com/2016/05/02/flink-concepts/ http://wuchong.me ...
- C++ template —— 模板特化(五)
本篇讲解模板特化-------------------------------------------------------------------------------------------- ...
- Asynchronous programming with Tornado
Asynchronous programming can be tricky for beginners, therefore I think it’s useful to iron some bas ...
- Google C++ Style Guide
Background C++ is one of the main development languages used by many of Google's open-source project ...
- (C/C++) Interview in English - Basic concepts.
Question Key words Anwser A assignment operator abstract class It is a class that has one or more pu ...
- CGAL Manual/tutorial_hello_world.html
Hello World Author CGAL Editorial Board 本教程是为知道C++和几何算法的基本知识的CGAL新手准备的.第一节展示了如何特化点和段CGAL类,以及如何应用几何谓词 ...
随机推荐
- Thread类和Runnable接口的比较
Thread和Runnable的联系 Thread类的定义: public class Thread extends Object implements Runnable 联系:从Thread类的定义 ...
- scrapyd 参考(https://www.jianshu.com/p/2a189127901a)
一 Scrapyd简介 Scrapyd 是一个用来部署和运行 Scrapy 项目的应用,由 Scrapy 的开发者开发.其可以通过一个简单的 Json API 来部署(上传)或者控制你的项目. ...
- Django之ContentTypes
ContentTypes是什么? ContentTypes是Django内置的一个应用,可以追踪项目中所有app和model的对应关系,并记录在ContentType表中. 每当我们创建了新的mode ...
- V1-bug Alpha阶段测试报告
发现的Bug Bug现象 Bug原因 是否解决 访问到错误的视图 路由正则写的太过宽泛 是 主题太长时超过页面宽度,导致超过顶部的宽度 / 否 无法使用域名访问服务器 后端没有在配置文件的ALLOWE ...
- qt下qmake:提示could not exec '/usr/lib/x86_64-linux-gnu/qt4/bin/qmake': No such file or directory
编译出现的问题解决方法: 打开终端输入,qmake -v,出现错误:qmake: could not exec '/usr/lib/x86_64-linux-gnu/qt4/bin/qmake': N ...
- java HelloWorld时报错:"找不到或无法加载主类"问题的解决办法
学习java的第一天: 当我在做Java入门的时候,根据教程写的第一个Java程序是: public class Hello{ public static void main(String args[ ...
- java多线程-线程间协作
大纲: wait.notify.notifyAll Condition 生产消费者 一.wait.notify.notifyAll wait.notify.notifyAll是Object的本地fin ...
- vue项目页面空白
vue项目页面空白 今天新建项目,然后发现路由也改了 app.vue里面也是啥都没有, 但是访问http://localhost:8080/#/login 能访问 里面确实空白的 错误: 错误原因: ...
- JAVA学习5:用Maven创建第一个web项目(2)servlet演示
上一章用Maven新建了web项目成功后,本文演示在此基础上应用servlet. 1.首先修改pom.xml文件,添加servlet依赖 <project xmlns="http: ...
- Asp.Net webconfig中使用configSections的用法
最近闲来无事,研究研究公司的框架,无意中打开了webconfig页面,发现了一个我不认识的节点<configSections></configSections>,于是百度之,大 ...