I have a report that utilizes four workflows, and each time new data arrives, I find myself running all four workflows, which can be quite time-consuming. I am interested in knowing if Sparkflows provides an option to schedule these four workflows sequentially, so that when I execute the first workflow, it automatically triggers the execution of the remaining three workflows?
top of page
bottom of page
Hey Nagisa,
This can be achieved in two ways: first, by utilizing pipelines, and second, by using the "Execute Workflow" node.
In the case of pipelines, you need to create a pipeline and define the desired sequence in which the workflows should be executed. By running or executing the pipeline, all the workflows mentioned in the pipeline will be executed in the specified order.
Alternatively, you can employ the "Execute Workflow" node. At the end of each workflow, you can include an "Execute Workflow" node, where you enlist the workflow that you want to trigger upon the completion of the preceding workflow(s). Similarly, when the next execute step is completed, it will automatically trigger the remaining workflows in the same sequential fashion.
Both methods provide options for scheduling workflows to run one after another, allowing for efficient and streamlined execution of the desired sequence of workflows.