Hello,
OpenMole was back online and I could run the script. Sadly after 120h of computation I still have no job showed as finished, nor anything stored in a csv file.
I encountered a lot of errors “Job execution failed”
org.openmole.core.exception.InternalProcessingError: Job status is FAILED
at org.openmole.plugin.environment.batch.refresh.RefreshActor$.$anonfun$receive$1(RefreshActor.scala:46)
at org.openmole.plugin.environment.batch.refresh.RefreshActor$.$anonfun$receive$1$adapted(RefreshActor.scala:32)
at org.openmole.plugin.environment.batch.environment.UsageControl$.tryWithToken(UsageControl.scala:16)
at org.openmole.plugin.environment.batch.refresh.RefreshActor$.receive(RefreshActor.scala:32)
at org.openmole.plugin.environment.batch.refresh.JobManager$DispatcherActor$.receive(JobManager.scala:53)
at org.openmole.plugin.environment.batch.refresh.JobManager$.$anonfun$dispatch$1(JobManager.scala:62)
at org.openmole.core.threadprovider.ThreadProvider$RunClosure.run(ThreadProvider.scala:24)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:514)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1135)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:844)
And a lot of errors “Job failed on remote environment”
Could Something be wrong with the code again?
Here is the script after the definition of inputs, outputs and imported model (called netlogo)
val my_sobol_sampling =
SobolSampling(
100, // Number of points
harshness in (5.0, 95.0),
redNoise in (0.0, 30.0),
)
val env = EGIEnvironment(“vo.complex-systems.eu”)
val myExploration = DirectSampling(
evaluation = netlogo on env by 5 hook CSVHook (workDirectory/“results/test_sobol_sampling.csv”
),
sampling = my_sobol_sampling
)
myExploration
Each run of the simulation lasts approximately 55 minutes on my own machine (2 core 4 threads, intel i5 7th gen, 8 Go RAM). Maybe the hook by 5 is a bit too much/less ?
Is there anything I can do to solve the issues met with the script?
Thank you very much in advance.
Best,
Aymeric Vie