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
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sören Henning
theodolite
Commits
7a452042
Commit
7a452042
authored
3 years ago
by
Lorenz Boguhn
Browse files
Options
Downloads
Patches
Plain Diff
Also align the uc3 HazelcastJetFactory
parent
59d9d755
No related branches found
No related tags found
1 merge request
!275
Refactor hazelcast jet benchmarks:
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
theodolite-benchmarks/uc3-hazelcastjet/src/main/java/rocks/theodolite/benchmarks/uc3/hazelcastjet/Uc3HazelcastJetFactory.java
+2
-2
2 additions, 2 deletions
...e/benchmarks/uc3/hazelcastjet/Uc3HazelcastJetFactory.java
with
2 additions
and
2 deletions
theodolite-benchmarks/uc3-hazelcastjet/src/main/java/rocks/theodolite/benchmarks/uc3/hazelcastjet/Uc3HazelcastJetFactory.java
+
2
−
2
View file @
7a452042
...
...
@@ -303,7 +303,7 @@ public class Uc3HazelcastJetFactory { // NOPMD
public
Uc3HazelcastJetFactory
setWindowSizeInSecondsFromEnv
(
// NOPMD
final
String
defaultWindowSizeInSeconds
)
{
final
String
windowSizeInSeconds
=
Objects
.
requireNonNullElse
(
System
.
getenv
(
ConfigurationKeys
.
WINDOW_SIZE_IN_SECOND
S
),
System
.
getenv
(
ConfigurationKeys
.
AGGREGATION_DURATION_DAY
S
),
defaultWindowSizeInSeconds
);
final
int
windowSizeInSecondsNumber
=
Integer
.
parseInt
(
windowSizeInSeconds
);
this
.
windowSizeInSeconds
=
windowSizeInSecondsNumber
;
...
...
@@ -332,7 +332,7 @@ public class Uc3HazelcastJetFactory { // NOPMD
public
Uc3HazelcastJetFactory
setHoppingSizeInSecondsFromEnv
(
// NOPMD
final
String
defaultHoppingSizeInSeconds
)
{
final
String
hoppingSizeInSeconds
=
Objects
.
requireNonNullElse
(
System
.
getenv
(
ConfigurationKeys
.
HOPPING_SIZE_IN_SECOND
S
),
System
.
getenv
(
ConfigurationKeys
.
AGGREGATION_ADVANCE_DAY
S
),
defaultHoppingSizeInSeconds
);
final
int
hoppingSizeInSecondsNumber
=
Integer
.
parseInt
(
hoppingSizeInSeconds
);
this
.
hoppingSizeInSeconds
=
hoppingSizeInSecondsNumber
;
...
...
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