Parallel execution of Microflows

0
Hi, I have to download lot of files from external application and there is no bulk download API available so I have to download file by file. To improve performance I am thinking of running multiple instances of file download microflow. Any suggestions on running the multiple instances of a microflow in parallel or any other better approach to improve the performance?
asked
1 answers
3

You could use a queued process for this reason. I could imagine to create a microflow which starts and creates queued actions, which doing one of your download action, and then create for every dowload a queued action. Every queued action is one microflow which could contatin sub microflows. In the Queue, you can decide then how many of them running in parallel. With that solution, you could run multiple microflows at the same time. If youo search in the App Store, there are two possible Queue modules.

answered