-
Hi, We're using
I'd like to know what happens after the specified number of attempts is exhausted? For our case, the pipelines continue to run even when downloads were incomplete, obviously producing inconsistent results. Does Nextflow have a configuration/option for triggering a fatal error and stopping the pipeline when these things happen? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
I'm not fully aware of the AWS Batch plugin for Nextflow. Having said that, you could create a process to check if all files were appropriately downloaded and |
Beta Was this translation helpful? Give feedback.
-
NF uses the AWS CLI to download files via a Bash script that is created on the fly, and these options are passed to it. I would have to dig into the code to see if the exit status is captured from that Bash script. |
Beta Was this translation helpful? Give feedback.
@pditommaso @delagoya Thanks for the replies and the link to the Fusion file system blog post, it looks great and really worth investigating updating all of our pipelines to make use of it.
With regards to the original issue we were experiencing, we were able to fix after updating to a slightly newer version of Nextflow than the one we had (
21.08.0-edge
->21.10.6-all
), which contains the commit I mentioned before and not a lot more (for now we only wanted to introduce very little change to not break other things).