Can this be sped up?

I have a scenario that checks a google sheet for a file name, then finds that name in Dropbox and downloads it to a Google Drive folder.

The problem is that just 30 files, all very small, about 50-100k, takes two minutes to download. Seems like there should be a way to speed it up?

Search modules tend to be the bottleneck.

You can’t speed it up in a single scenario as you are searching each individual file sequentially, and the search for the next file won’t begin until after the current file has been uploaded to Google Drive.

2 Likes

Thank you. So is there some other way to do this to make it faster?