Hi there,
I would like to implement a parallel loop into this workflow.
In each of the two list files/folders nodes, I am reading in 5 different tables with different columns.
I would like to achieve the following order of workflow execution:
- Execute the first loop iteration of the red part (read table 1 of folder A)
- Execute the first loop iteration of the blue part (read table 1 of folder B)
- Join the output tables from the blue and red part (join tables 1A and 1B)
- Execute the second loop iteration of the red part (read table 2 of folder A)
- Execute the second loop iteration of the blue part (read table 2 of folder B)
6. Join the output tables from the blue and red part (join tables 2A and 2B)
So far, I only achieved a slightly different workflow execution order:
- Execute the first loop iteration of the red part (read table 1 of folder A)
- Execute the first loop iteration of the blue part (read table 1 of folder B)
- Join the output tables from the blue and red part (join tables 1A and 1B)
4. Execute the second loop iteration of the blue part (read table 2 of folder B)
5. Join the output tables of the red part of the first iteration and the blue part of the second iteration (join tables 1A and 2B)
How can I ensure to first execute the second loop iteration of both the blue and red part and only then join the tables? Thanks!