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
4c857ea9
Commit
4c857ea9
authored
3 years ago
by
Benedikt Wetzel
Committed by
Sören Henning
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
enhance logging
parent
1f0e91c1
No related branches found
No related tags found
4 merge requests
!159
Re-implementation of Theodolite with Kotlin/Quarkus
,
!157
Update Graal Image in CI pipeline
,
!135
Add delay before start the load generator
,
!83
WIP: Re-implementation of Theodolite with Kotlin/Quarkus
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
theodolite-quarkus/src/main/kotlin/theodolite/benchmark/KubernetesBenchmarkDeployment.kt
+1
-1
1 addition, 1 deletion
...lin/theodolite/benchmark/KubernetesBenchmarkDeployment.kt
with
1 addition
and
1 deletion
theodolite-quarkus/src/main/kotlin/theodolite/benchmark/KubernetesBenchmarkDeployment.kt
+
1
−
1
View file @
4c857ea9
...
@@ -45,7 +45,7 @@ class KubernetesBenchmarkDeployment(
...
@@ -45,7 +45,7 @@ class KubernetesBenchmarkDeployment(
.
map
{
NewTopic
(
it
.
name
,
it
.
numPartitions
,
it
.
replicationFactor
)
}
.
map
{
NewTopic
(
it
.
name
,
it
.
numPartitions
,
it
.
replicationFactor
)
}
kafkaController
.
createTopics
(
kafkaTopics
)
kafkaController
.
createTopics
(
kafkaTopics
)
appResources
.
forEach
{
kubernetesManager
.
deploy
(
it
)
}
appResources
.
forEach
{
kubernetesManager
.
deploy
(
it
)
}
logger
.
info
{
"Wait ${this.loadGenerationDelay} seconds before starting the
work
load generator."
}
logger
.
info
{
"Wait ${this.loadGenerationDelay} seconds before starting the load generator."
}
Thread
.
sleep
(
Duration
.
ofSeconds
(
this
.
loadGenerationDelay
).
toMillis
())
Thread
.
sleep
(
Duration
.
ofSeconds
(
this
.
loadGenerationDelay
).
toMillis
())
loadGenResources
.
forEach
{
kubernetesManager
.
deploy
(
it
)
}
loadGenResources
.
forEach
{
kubernetesManager
.
deploy
(
it
)
}
}
}
...
...
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