ovo job management #6
Replies: 1 comment 1 reply
-
|
Thanks @Thomasxin955! Job management from the UI is something we are planning to implement in the future, for now this needs to be done manually depending on the scheduler. For the Nextflow scheduler, you can cancel jobs from the command line using from ovo import db, schedulers
pool = db.Pool.get(id="lwg")
design_job = db.DesignJob.get(id=pool.design_job_id)
scheduler = schedulers[design_job.scheduler_key]
scheduler.cancel(job.job_id)For debugging purposes, you can also look at the execution directories - each job will get its own subdirectory where the |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Great work!My question is about how to manage tasks, such as stopping and deleting them.
Beta Was this translation helpful? Give feedback.
All reactions