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

Merge branch 'main' into feature/374-improve-hazelcastjet-structure

parents bba206bf e880d933
No related branches found
No related tags found
1 merge request!275Refactor hazelcast jet benchmarks:
Pipeline #10130 passed
...@@ -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
......
...@@ -21,7 +21,7 @@ public final class ConfigurationKeys { ...@@ -21,7 +21,7 @@ public final class ConfigurationKeys {
public static final String AGGREGATION_ADVANCE_DAYS = "aggregation.advance.days"; public static final String AGGREGATION_ADVANCE_DAYS = "aggregation.advance.days";
public static final String AGGREGATION_TRIGGER_INTERVAL_SECONDS = public static final String AGGREGATION_TRIGGER_INTERVAL_SECONDS = // NOPMD
"aggregation.trigger.interval.seconds"; "aggregation.trigger.interval.seconds";
public static final String COMMIT_INTERVAL_MS = "commit.interval.ms"; public static final String COMMIT_INTERVAL_MS = "commit.interval.ms";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment