I created a workflow that loops through rows in a csv. Each row takes about a minute to process, so for 60 rows it takes roughly an hour for the whole thing. Is there a way to do this asynchronously? The rows do not depend on each other at all and are isolated, so ideally id like each row to become its own execution but im not sure how to do that.
When using the Loop node, you have the option to increase the batch size. Each row can be processed either by creating a separate workflow or within the same workflow, depending on your preference. The Execute Workflow node offers flexibility: you can either pass all items at once or start a separate workflow for each item individually. Additionally, you can choose whether or not to wait for the workflow to finish before proceeding.
This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.