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
Commits
0babb6b3
Commit
0babb6b3
authored
2 years ago
by
Lorenz Boguhn
Committed by
Lorenz Boguhn
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Extend common ConfigurationKeys
parent
75401cf5
No related branches found
No related tags found
1 merge request
!272
Introduce Abstract Flink Service Class
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
theodolite-benchmarks/flink-commons/src/main/java/rocks/theodolite/benchmarks/commons/flink/ConfigurationKeys.java
+24
-1
24 additions, 1 deletion
...heodolite/benchmarks/commons/flink/ConfigurationKeys.java
with
24 additions
and
1 deletion
theodolite-benchmarks/flink-commons/src/main/java/rocks/theodolite/benchmarks/commons/flink/ConfigurationKeys.java
+
24
−
1
View file @
0babb6b3
...
...
@@ -5,6 +5,26 @@ package rocks.theodolite.benchmarks.commons.flink;
*/
public
final
class
ConfigurationKeys
{
public
static
final
String
APPLICATION_NAME
=
"application.name"
;
public
static
final
String
APPLICATION_VERSION
=
"application.version"
;
public
static
final
String
CONFIGURATION_KAFKA_TOPIC
=
"configuration.kafka.topic"
;
public
static
final
String
KAFKA_BOOTSTRAP_SERVERS
=
"kafka.bootstrap.servers"
;
public
static
final
String
KAFKA_OUTPUT_TOPIC
=
"kafka.output.topic"
;
public
static
final
String
KAFKA_INPUT_TOPIC
=
"kafka.input.topic"
;
public
static
final
String
SCHEMA_REGISTRY_URL
=
"schema.registry.url"
;
public
static
final
String
WINDOW_SIZE_MS
=
"window.size.ms"
;
public
static
final
String
WINDOW_GRACE_MS
=
"window.grace.ms"
;
public
static
final
String
COMMIT_INTERVAL_MS
=
"commit.interval.ms"
;
public
static
final
String
FLINK_STATE_BACKEND
=
"flink.state.backend"
;
public
static
final
String
FLINK_STATE_BACKEND_PATH
=
"flink.state.backend.path"
;
...
...
@@ -12,8 +32,11 @@ public final class ConfigurationKeys {
public
static
final
String
FLINK_STATE_BACKEND_MEMORY_SIZE
=
// NOPMD
"flink.state.backend.memory.size"
;
public
static
final
String
FLINK_CHECKPOINTING
=
"checkpointing"
;
public
static
final
String
DEBUG
=
"debug"
;
public
static
final
String
CHECKPOINTING
=
"checkpointing"
;
public
static
final
String
PARALLELISM
=
"parallelism"
;
private
ConfigurationKeys
()
{}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment