Can multiple workflows execute the same sub-workflow?

I’m just wondering if run multiple workflows in parallel and they all execute the same sub-workflow will the output data be different for each workflow? for example:

Workflow-A reads directory X & execute sub-workflow
Workflow-B reads directory Y & execute sub-workflow
Workflow-C reads directory Z & execute sub-workflow

Wil it give different output for each workflow since they all are calling the same sub-workflow

A subworkflow works as a function. So it runs with whatever input you put into it and then outputs whatever output is in the last node executed in the subflow.
(Assuming it is set to wait for the output)
Every execution is independent of all others.

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.