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
c6739061
Commit
c6739061
authored
4 years ago
by
Lorenz Boguhn
Browse files
Options
Downloads
Patches
Plain Diff
Fix logging error
parent
0ccce97d
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
,
!106
Introduce a Theodolite operator
,
!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/execution/TheodoliteController.kt
+13
-9
13 additions, 9 deletions
.../main/kotlin/theodolite/execution/TheodoliteController.kt
with
13 additions
and
9 deletions
theodolite-quarkus/src/main/kotlin/theodolite/execution/TheodoliteController.kt
+
13
−
9
View file @
c6739061
...
@@ -8,8 +8,9 @@ import mu.KotlinLogging
...
@@ -8,8 +8,9 @@ import mu.KotlinLogging
import
theodolite.benchmark.BenchmarkExecution
import
theodolite.benchmark.BenchmarkExecution
import
theodolite.benchmark.KubernetesBenchmark
import
theodolite.benchmark.KubernetesBenchmark
import
java.lang.Thread.sleep
import
java.lang.Thread.sleep
import
java.util.Queue
import
java.util.*
import
java.util.LinkedList
import
kotlin.collections.HashMap
import
kotlin.collections.set
private
val
logger
=
KotlinLogging
.
logger
{}
private
val
logger
=
KotlinLogging
.
logger
{}
...
@@ -30,8 +31,8 @@ class TheodoliteController(
...
@@ -30,8 +31,8 @@ class TheodoliteController(
fun
create
()
{
fun
create
()
{
informerBenchmarkExecution
.
addEventHandler
(
object
:
ResourceEventHandler
<
BenchmarkExecution
>
{
informerBenchmarkExecution
.
addEventHandler
(
object
:
ResourceEventHandler
<
BenchmarkExecution
>
{
override
fun
onAdd
(
execution
:
BenchmarkExecution
)
{
override
fun
onAdd
(
execution
:
BenchmarkExecution
)
{
logger
.
info
{
"Add new execution ${execution.metadata.name} to queue"
}
execution
.
name
=
execution
.
metadata
.
name
execution
.
name
=
execution
.
metadata
.
name
logger
.
info
{
"Add new execution ${execution.metadata.name} to queue"
}
executionsQueue
.
add
(
execution
)
executionsQueue
.
add
(
execution
)
}
}
...
@@ -51,7 +52,7 @@ class TheodoliteController(
...
@@ -51,7 +52,7 @@ class TheodoliteController(
override
fun
onDelete
(
execution
:
BenchmarkExecution
,
b
:
Boolean
)
{
override
fun
onDelete
(
execution
:
BenchmarkExecution
,
b
:
Boolean
)
{
logger
.
info
{
"Delete execution ${execution.metadata.name} from queue"
}
logger
.
info
{
"Delete execution ${execution.metadata.name} from queue"
}
executionsQueue
.
removeIf
{
e
->
e
.
name
==
execution
.
metadata
.
name
}
executionsQueue
.
removeIf
{
e
->
e
.
name
==
execution
.
metadata
.
name
}
if
(
::
executor
.
isInitialized
&&
executor
.
getExecution
().
name
==
execution
.
metadata
.
name
)
{
if
(
::
executor
.
isInitialized
&&
executor
.
getExecution
().
name
==
execution
.
metadata
.
name
)
{
executor
.
stop
()
executor
.
stop
()
logger
.
info
{
"Current benchmark stopped"
}
logger
.
info
{
"Current benchmark stopped"
}
...
@@ -61,8 +62,8 @@ class TheodoliteController(
...
@@ -61,8 +62,8 @@ class TheodoliteController(
informerBenchmarkType
.
addEventHandler
(
object
:
ResourceEventHandler
<
KubernetesBenchmark
>
{
informerBenchmarkType
.
addEventHandler
(
object
:
ResourceEventHandler
<
KubernetesBenchmark
>
{
override
fun
onAdd
(
benchmark
:
KubernetesBenchmark
)
{
override
fun
onAdd
(
benchmark
:
KubernetesBenchmark
)
{
logger
.
info
{
"Add new benchmark ${benchmark.name}"
}
benchmark
.
name
=
benchmark
.
metadata
.
name
benchmark
.
name
=
benchmark
.
metadata
.
name
logger
.
info
{
"Add new benchmark ${benchmark.name}"
}
benchmarks
[
benchmark
.
name
]
=
benchmark
benchmarks
[
benchmark
.
name
]
=
benchmark
}
}
...
@@ -81,7 +82,7 @@ class TheodoliteController(
...
@@ -81,7 +82,7 @@ class TheodoliteController(
override
fun
onDelete
(
benchmark
:
KubernetesBenchmark
,
b
:
Boolean
)
{
override
fun
onDelete
(
benchmark
:
KubernetesBenchmark
,
b
:
Boolean
)
{
logger
.
info
{
"Delete benchmark ${benchmark.metadata.name}"
}
logger
.
info
{
"Delete benchmark ${benchmark.metadata.name}"
}
benchmarks
.
remove
(
benchmark
.
metadata
.
name
)
benchmarks
.
remove
(
benchmark
.
metadata
.
name
)
if
(
::
executor
.
isInitialized
&&
executor
.
getBenchmark
().
name
==
benchmark
.
metadata
.
name
)
{
if
(
::
executor
.
isInitialized
&&
executor
.
getBenchmark
().
name
==
benchmark
.
metadata
.
name
)
{
executor
.
stop
()
executor
.
stop
()
logger
.
info
{
"Current benchmark stopped"
}
logger
.
info
{
"Current benchmark stopped"
}
}
}
...
@@ -100,15 +101,18 @@ class TheodoliteController(
...
@@ -100,15 +101,18 @@ class TheodoliteController(
}
}
}
}
}
}
@Synchronized
@Synchronized
private
fun
reconcile
()
{
private
fun
reconcile
()
{
while
(
executionsQueue
.
isNotEmpty
()
while
(
executionsQueue
.
isNotEmpty
()
&&
((
this
::
executor
.
isInitialized
&&
!
executor
.
isRunning
)
||
!
this
::
executor
.
isInitialized
))
{
&&
((
this
::
executor
.
isInitialized
&&
!
executor
.
isRunning
)
||
!
this
::
executor
.
isInitialized
)
)
{
val
execution
=
executionsQueue
.
peek
()
val
execution
=
executionsQueue
.
peek
()
val
benchmark
=
benchmarks
[
execution
.
benchmark
]
val
benchmark
=
benchmarks
[
execution
.
benchmark
]
if
(
benchmark
==
null
)
{
if
(
benchmark
==
null
)
{
logger
.
debug
{
"No benchmark found for execution ${execution.benchmark}"
}
logger
.
debug
{
"No benchmark found for execution ${execution.benchmark}"
}
sleep
(
1000
)
}
else
{
}
else
{
logger
.
info
{
"Start execution ${execution.name} with benchmark ${benchmark.name}"
}
logger
.
info
{
"Start execution ${execution.name} with benchmark ${benchmark.name}"
}
executor
=
TheodoliteExecutor
(
config
=
execution
,
kubernetesBenchmark
=
benchmark
)
executor
=
TheodoliteExecutor
(
config
=
execution
,
kubernetesBenchmark
=
benchmark
)
...
@@ -121,7 +125,7 @@ class TheodoliteController(
...
@@ -121,7 +125,7 @@ class TheodoliteController(
sleep
(
1000
)
sleep
(
1000
)
}
}
}
catch
(
e
:
Exception
)
{
}
catch
(
e
:
Exception
)
{
logger
.
error
{
"Error while delete current execution"
}
logger
.
error
{
"Error while delete current execution
: $e
"
}
}
}
logger
.
info
{
"Execution is finally stopped for execution ${execution.name}"
}
logger
.
info
{
"Execution is finally stopped for execution ${execution.name}"
}
}
}
...
...
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