pcingola / BigDataScript

BigDataScript: Scirpting language for big data

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Can stop parallel tasks immediately when one of them fails?

leepc12 opened this issue · comments

Tasks executed with par prefix go independently even though one of them fails. This must be an expected/designed behavior but I was wondering if there is a way to force stop all tasks when one of them fails? It is a bit pain to check HTML report every hour to check if any error occurrs.

I can redirect output (stderr) of the pipeline run to a log file and then monitor it, If an error occurs I can send SIGTERM.