Skip to content
Snippets Groups Projects
Commit 1327ffe1 authored by Sören Henning's avatar Sören Henning
Browse files

Minor documentation improvements

parent 092cc3c0
Branches
Tags
No related merge requests found
Pipeline #10127 failed
...@@ -65,7 +65,7 @@ public final class HistoryServiceFlinkJob extends AbstractFlinkService { ...@@ -65,7 +65,7 @@ public final class HistoryServiceFlinkJob extends AbstractFlinkService {
.map(t -> { .map(t -> {
final String key = t.f0; final String key = t.f0;
final String value = t.f1.toString(); final String value = t.f1.toString();
LOGGER.info("{}: {}", key, value); LOGGER.info("{}: {}", key, value); // TODO align implementations
return new Tuple2<>(key, value); return new Tuple2<>(key, value);
}).name("map").returns(Types.TUPLE(Types.STRING, Types.STRING)) }).name("map").returns(Types.TUPLE(Types.STRING, Types.STRING))
.addSink(kafkaSink).name("[Kafka Producer] Topic: " + outputTopic); .addSink(kafkaSink).name("[Kafka Producer] Topic: " + outputTopic);
......
...@@ -11,6 +11,7 @@ schema.registry.url=http://localhost:8081 ...@@ -11,6 +11,7 @@ schema.registry.url=http://localhost:8081
aggregation.duration.days=30 aggregation.duration.days=30
aggregation.advance.days=1 aggregation.advance.days=1
# in seconds
trigger.interval=15 trigger.interval=15
num.threads=1 num.threads=1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment