How to Accelerate Event Processing and Delivery in Google Sheets?

This topic was automatically generated from Slack. You can find the original thread here.

is there a way to speed up events with new rows added to google sheets as sometimes it seems to either completely miss events or takes extended amounts of time to be delivered?

Hey , would you mind sharing more details of your Google Sheet? If possible could you share your Source URL?

If you want the most speed, you could trigger your workflow from App Scripts instead of events.

App scripts is connected in real time to our sheet, and you can send HTTP requests to your workflow URL instantly when you catch changes.

Unless the rows are being added by another background service… in that case, App scripts wouldn’t even be loaded (it only loads when users are active in the sheet).

But then that other background service could be the one to trigger your Pipedream workflow after adding new rows.

Yes currently im using 3rd party software to create a new row of data then that triggers the current code i have to send to discord creating an embed.

Appreciate the tip I was able to solve my issue just running the script via google script to get faster response.