You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When we just execute a stage or single tasks as subflow, we need to find all inputs in cache. It should be logged on which cached inputs we depend and the error message should clarify the problem and help to fix it.
Whenever the if in_t in results filters an entry from task.input_tasks. I suggest a logger.info() message informing that we depend on those caches for specific input tasks. Then, I suggest to catch the CacheError exception here and reraise it with a nicer message saying that the error is most likely caused by just executing as subflow without having executed all tasks which are needed as inputs repeating the list of tasks that might be to blame. I would also suggest to rerun the full flow once before continuing to develop with subflows again.
A typical error is that stages are reordered but the development code running individual stages is not up-to-date.
The text was updated successfully, but these errors were encountered:
When we just execute a stage or single tasks as subflow, we need to find all inputs in cache. It should be logged on which cached inputs we depend and the error message should clarify the problem and help to fix it.
sequential.py:28
Whenever the
if in_t in results
filters an entry from task.input_tasks. I suggest alogger.info()
message informing that we depend on those caches for specific input tasks. Then, I suggest to catch the CacheError exception here and reraise it with a nicer message saying that the error is most likely caused by just executing as subflow without having executed all tasks which are needed as inputs repeating the list of tasks that might be to blame. I would also suggest to rerun the full flow once before continuing to develop with subflows again.A typical error is that stages are reordered but the development code running individual stages is not up-to-date.
The text was updated successfully, but these errors were encountered: