Jovan Visnjic
09/28/2020, 10:12 AMLocalResult
and exceptions. We use LocalResult
for checkpointing, so only failed tasks get executed on a workflow re-run. So far we execute the workflow without a server, using just the basic CLI. If LocalResult
exists, the task is skipped and just tasks with missing results get executed. We would also like to store error information on the disk. But if write exception's content as a LocalResult
through task's target
parameter, it gets treated as successful, because something exists at the result location, whatever that may be. Is there some established way of dumping errors to disk, so they don't just remain in the console's stdout
, but that at the same time they don't obstruct the logic of what is successful and what not?
Any ideas or comments appreciated.
JovanKyle Moon-Wright
09/28/2020, 3:12 PMJovan Visnjic
09/29/2020, 2:58 PMResult
class to rule them all", so I'm also skeptical about this approach... 🤔