You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a worksheet with 100+ requests to an API; it works ok the first time I set it up, but returns a 429 error as soon as it auto-refreshes. since it tries refreshing every occurance of the function at the same time. I can't do just one request because the way the api organizes the data.
Is it possible to set up a delay so that Sheets doesn't try refreshing multiple instances of this function at the same time?
The text was updated successfully, but these errors were encountered:
This prevents multiple functions from trying to fetch data at the same time - it locks the formulae for a maximum time of 15 seconds (can lower or increase depending on amount of data, too little time and it returns a lock timeout error).
Before doing this most of the data would return a 429; hasn't happened once after I added the lines above.
I have a worksheet with 100+ requests to an API; it works ok the first time I set it up, but returns a 429 error as soon as it auto-refreshes. since it tries refreshing every occurance of the function at the same time. I can't do just one request because the way the api organizes the data.
Is it possible to set up a delay so that Sheets doesn't try refreshing multiple instances of this function at the same time?
The text was updated successfully, but these errors were encountered: