Generic/Template Programming in Flink

SourceFunction<T>

  1. @Public
  2. public interface SourceFunction<T> extends Function, Serializable {
  3.  
  4. void run(SourceContext<T> ctx) throws Exception;
  5.  
  6. void cancel();
  7.  
  8. @Public // Interface might be extended in the future with additional methods.
  9. interface SourceContext<T> {
  10. void collect(T element);
  11.  
  12. @PublicEvolving
  13. void collectWithTimestamp(T element, long timestamp);
  14.  
  15. @PublicEvolving
  16. void emitWatermark(Watermark mark);
  17.  
  18. @PublicEvolving
  19. void markAsTemporarilyIdle();
  20. Object getCheckpointLock();
  21. void close();
  22. }
  23. }
  1. @Override
  2. public void run(SourceContext<Integer> ctx) throws Exception {
  3. while ((start < counter || counter == -1) && isRunning) {
  4. synchronized (ctx.getCheckpointLock()) {
  5. ctx.collect(start);
  6. ++start;
  7.  
  8. // loop back to 0
  9. if (start == Integer.MAX_VALUE) {
  10. start = 0;
  11. }
  12. }
  13. Thread.sleep(10L);
  14. }
  15. }

AsyncFunction<IN, OUT>

  1. @PublicEvolving
  2. public interface AsyncFunction<IN, OUT> extends Function, Serializable {
  3. void asyncInvoke(IN input, ResultFuture<OUT> resultFuture) throws Exception;
  4. default void timeout(IN input, ResultFuture<OUT> resultFuture) throws Exception {
  5. resultFuture.completeExceptionally(
  6. new TimeoutException("Async function call has timed out."));
  7. }
  8. }
  1. @Override
  2. public void asyncInvoke(final Integer input, final ResultFuture<String> resultFuture) {
  3. executorService.submit(() -> {
  4. // wait for while to simulate async operation here
  5. long sleep = (long) (ThreadLocalRandom.current().nextFloat() * sleepFactor);
  6. try {
  7. Thread.sleep(sleep);
  8.  
  9. if (ThreadLocalRandom.current().nextFloat() < failRatio) {
  10. resultFuture.completeExceptionally(new Exception("wahahahaha..."));
  11. } else {
  12. resultFuture.complete(
  13. Collections.singletonList("key-" + (input % 10)));
  14. }
  15. } catch (InterruptedException e) {
  16. resultFuture.complete(new ArrayList<>(0));
  17. }
  18. });
  19. }
  1. public static <IN, OUT> SingleOutputStreamOperator<OUT> orderedWait(
  2. DataStream<IN> in,
  3. AsyncFunction<IN, OUT> func,
  4. long timeout,
  5. TimeUnit timeUnit,
  6. int capacity) {
  7. return addOperator(in, func, timeUnit.toMillis(timeout), capacity, OutputMode.ORDERED);
  8. }
  1. FlatMapFunction<T, O>
  1. @Public
  2. @FunctionalInterface
  3. public interface FlatMapFunction<T, O> extends Function, Serializable {
  4. void flatMap(T value, Collector<O> out) throws Exception;
  5. }
  1. FlatMapFunction<String, Tuple2<String, Integer>>() {
  2. private static final long serialVersionUID = -938116068682344455L;
  3.  
  4. @Override
  5. public void flatMap(String value, Collector<Tuple2<String, Integer>> out) throws Exception {
  6. out.collect(new Tuple2<>(value, 1));
  7. }
  8. }

Generic/Template Programming in Flink的更多相关文章

  1. Flink -- Java Generics Programming

    Flink uses a lot of generics programming, which is an executor Framework with cluster of executor ha ...

  2. 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 ...

  3. Flink Program Guide (2) -- 综述 (DataStream API编程指导 -- For Java)

    v\:* {behavior:url(#default#VML);} o\:* {behavior:url(#default#VML);} w\:* {behavior:url(#default#VM ...

  4. Flink官网文档翻译

    http://ifeve.com/flink-quick-start/ http://vinoyang.com/2016/05/02/flink-concepts/ http://wuchong.me ...

  5. C++ template —— 模板特化(五)

    本篇讲解模板特化-------------------------------------------------------------------------------------------- ...

  6. Asynchronous programming with Tornado

    Asynchronous programming can be tricky for beginners, therefore I think it’s useful to iron some bas ...

  7. Google C++ Style Guide

    Background C++ is one of the main development languages used by many of Google's open-source project ...

  8. (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 ...

  9. CGAL Manual/tutorial_hello_world.html

    Hello World Author CGAL Editorial Board 本教程是为知道C++和几何算法的基本知识的CGAL新手准备的.第一节展示了如何特化点和段CGAL类,以及如何应用几何谓词 ...

随机推荐

  1. Thread类和Runnable接口的比较

    Thread和Runnable的联系 Thread类的定义: public class Thread extends Object implements Runnable 联系:从Thread类的定义 ...

  2. scrapyd 参考(https://www.jianshu.com/p/2a189127901a)

    一    Scrapyd简介 Scrapyd 是一个用来部署和运行 Scrapy 项目的应用,由 Scrapy 的开发者开发.其可以通过一个简单的 Json API 来部署(上传)或者控制你的项目. ...

  3. Django之ContentTypes

    ContentTypes是什么? ContentTypes是Django内置的一个应用,可以追踪项目中所有app和model的对应关系,并记录在ContentType表中. 每当我们创建了新的mode ...

  4. V1-bug Alpha阶段测试报告

    发现的Bug Bug现象 Bug原因 是否解决 访问到错误的视图 路由正则写的太过宽泛 是 主题太长时超过页面宽度,导致超过顶部的宽度 / 否 无法使用域名访问服务器 后端没有在配置文件的ALLOWE ...

  5. 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 ...

  6. java HelloWorld时报错:"找不到或无法加载主类"问题的解决办法

    学习java的第一天: 当我在做Java入门的时候,根据教程写的第一个Java程序是: public class Hello{ public static void main(String args[ ...

  7. java多线程-线程间协作

    大纲: wait.notify.notifyAll Condition 生产消费者 一.wait.notify.notifyAll wait.notify.notifyAll是Object的本地fin ...

  8. vue项目页面空白

    vue项目页面空白 今天新建项目,然后发现路由也改了 app.vue里面也是啥都没有, 但是访问http://localhost:8080/#/login 能访问 里面确实空白的 错误: 错误原因: ...

  9. JAVA学习5:用Maven创建第一个web项目(2)servlet演示

    上一章用Maven新建了web项目成功后,本文演示在此基础上应用servlet. 1.首先修改pom.xml文件,添加servlet依赖   <project xmlns="http: ...

  10. Asp.Net webconfig中使用configSections的用法

    最近闲来无事,研究研究公司的框架,无意中打开了webconfig页面,发现了一个我不认识的节点<configSections></configSections>,于是百度之,大 ...