Hi all,
I’m working on a workflow that needs to carry out two tasks each using chunk loops; the first part is very quick, but needs to be run on 1 row at a time while the second part is slower, but can run on large numbers of rows at a time.
At the moment, the workflow runs the first loop until it is complete and only then does it start on the second loop. Is it possible for the second chunk loop to start execution as soon as enough rows are fed out of the first chunk loop? The workflow will ultimately be run on some large inputs and it feels as if running the loops in parallel could greatly reduce the overall execution time.
It’s possible this will just result in overall slowdown, but I’d like to test it with some benchmarking nodes on my tests before running deploying it to the large real datasets…