Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
theodolite
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sören Henning
theodolite
Merge requests
!308
Unify logging among all streaming engines
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Unify logging among all streaming engines
unify-logging
into
main
Overview
0
Commits
6
Pipelines
4
Changes
7
Merged
Sören Henning
requested to merge
unify-logging
into
main
2 years ago
Overview
0
Commits
6
Pipelines
4
Changes
7
Expand
Fix
#406 (closed)
, depends on
!307 (merged)
.
Edited
2 years ago
by
Sören Henning
0
0
Merge request reports
Compare
main
version 4
7c74540f
2 years ago
version 3
1d522dcb
2 years ago
version 2
1d522dcb
2 years ago
version 1
1d522dcb
2 years ago
main (base)
and
latest version
latest version
edd0fc63
6 commits,
2 years ago
version 4
7c74540f
5 commits,
2 years ago
version 3
1d522dcb
4 commits,
2 years ago
version 2
1d522dcb
14 commits,
2 years ago
version 1
1d522dcb
17 commits,
2 years ago
7 files
+
8
−
20
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
7
Search (e.g. *.vue) (Ctrl+P)
theodolite-benchmarks/uc2-flink/src/main/java/rocks/theodolite/benchmarks/uc2/flink/HistoryServiceFlinkJob.java
+
1
−
1
Options
@@ -64,7 +64,7 @@ public final class HistoryServiceFlinkJob extends AbstractFlinkService {
.
map
(
t
->
{
final
String
key
=
t
.
f0
;
final
String
value
=
t
.
f1
.
toString
();
LOGGER
.
info
(
"{}: {}"
,
key
,
value
);
// TODO align implementations
//
LOGGER.info("{}: {}", key, value);
return
new
Tuple2
<>(
key
,
value
);
}).
name
(
"map"
).
returns
(
Types
.
TUPLE
(
Types
.
STRING
,
Types
.
STRING
))
.
addSink
(
kafkaSink
).
name
(
"[Kafka Producer] Topic: "
+
outputTopic
);
Loading