Hi,
I have an automation that sometimes fails with the below exception. Is this always due to exceeding Google’s quota or could this be down to something else? The error is suspicious as it can occur first thing in the morning when hardly any other Google requests have been made yet so we don’t see how it could be exceeding Google’s quota.
Write Cell: Google.Apis.Requests.RequestError
Quota exceeded for quota metric ‘Write requests’ and limit ‘Write requests per minute per user’ of service ‘sheets.googleapis.com’ for consumer ’
It seems that you have trouble getting an answer to your question in the first 24 hours.
Let us give you a few hints and helpful links.
First, make sure you browsed through our Forum FAQ Beginner’s Guide. It will teach you what should be included in your topic.
You can check out some of our resources directly, see below:
Always search first. It is the best way to quickly find your answer. Check out the icon for that.
Clicking the options button will let you set more specific topic search filters, i.e. only the ones with a solution.
Topic that contains most common solutions with example project files can be found here.
Read our official documentation where you can find a lot of information and instructions about each of our products:
Meet us and our users on our Community Slack and ask your question there.
Hopefully this will let you easily find the solution/information you need. Once you have it, we would be happy if you could share your findings here and mark it as a solution. This will help other users find it in the future.
Thank you for helping us build our UiPath Community!
The Exception comes from the server, so it’s safe to say that it is refusing the client any more requests relating to quota.
If this happens in the morning, then you are probably exceeding a minutely quota rather than an hourly one (or something similar).
You can add some delay activities in between your request code.
Another option is to use the BatchModifyValues activity and put write cell activities inside this scope, which will send them to the server all at once.