【发布时间】:2020-12-15 14:54:37
【问题描述】:
我在 Intellij 中运行 Apache Flink 迷你集群。 尝试设置一个流连接,其中一个流来自 kinesis 源,另一个来自 jdbc。
当我从表源创建数据流时,如下所示:
// Table with two fields (String name, Integer age)
Table table = ...
// convert the Table into an append DataStream of Row by specifying the class
DataStream<Row> dsRow = tableEnv.toAppendStream(table, Row.class);
我在堆栈跟踪中收到以下信息消息:
INFO org.apache.flink.runtime.checkpoint.CheckpointCoordinator [] - Checkpoint triggering task
Soource ...
job bcf73c5d7a0312d57c2ca36d338d4569 is not in state RUNNING but FINISHED instead. Aborting
checkpoint.
【问题讨论】:
标签: apache-flink flink-streaming