Replies: 1 comment
-
There isn't much you can do if the Nextflow pod is deleted by external forces. You just have to retry the workflow. We recently added the option to submit jobs instead of pods. The job just creates a pod in the background, but you can configure the job to automatically retry the pod if it fails for any reason. We don't actually use that feature in Nextflow because Nextflow has its own retry mechanism, but it would be interesting to use the job's retry for the nextflow job created by On the other hand, it's wasteful if your pipeline is failing for other reasons. And if the nextflow job is failing randomly often enough, the better solution is probably to find a more stable place to launch nextflow jobs 😄 |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Morning,
My Nextflow pipeline is executed within a Kubernetes pod.
Although the processes are set up with an
errorStrategy
, if the main pod triggering the pipeline is killed by the node (e.g. for resource optimisation), the whole pipeline crashes.Is there a way to make the main pod robust against these run time issues?
For instance:
Thanks for your help,
Piero
Beta Was this translation helpful? Give feedback.
All reactions