Skip to content
Snippets Groups Projects
Commit 19d46fd3 authored by Benedikt Wetzel's avatar Benedikt Wetzel
Browse files

Use exp as a prefix for all saved files

parent ad3058ee
No related branches found
No related tags found
1 merge request!190Update demant-metric notebooks in order to run with the new implementation
......@@ -115,10 +115,10 @@ class TheodoliteExecutor(
val ioHandler = IOHandler()
val resultsFolder = ioHandler.getResultFolderURL()
this.config.executionId = getAndIncrementExecutionID(resultsFolder + "expID.txt")
ioHandler.writeToJSONFile(this.config, "$resultsFolder${this.config.executionId}-execution-configuration")
ioHandler.writeToJSONFile(this.config, "${resultsFolder}exp${this.config.executionId}-execution-configuration")
ioHandler.writeToJSONFile(
kubernetesBenchmark,
"$resultsFolder${this.config.executionId}-benchmark-configuration"
"${resultsFolder}exp${this.config.executionId}-benchmark-configuration"
)
val config = buildConfig()
......@@ -130,7 +130,7 @@ class TheodoliteExecutor(
}
ioHandler.writeToJSONFile(
config.compositeStrategy.benchmarkExecutor.results,
"$resultsFolder${this.config.executionId}-result"
"${resultsFolder}exp${this.config.executionId}-result"
)
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment