Reputation: 1169
I'm getting this error when tring to activate gmail API in my project from https://console.cloud.google.com/apis/api/gmail-json.googleapis.com/overview :
Spanner encountered a persistent error: generic::RESOURCE_EXHAUSTED: Quota exceeded: chubby!mdb/apiserving-spanner in alloc cloud_flex:us_global over user limit for [FLASH_SPACE].
What should I do to fix that ? (My final goal is to update user email signature for my domain)
Upvotes: 0
Views: 195
Reputation: 8112
Based from Standard Error Responses, "quotaExceeded" indicates that limit per view has been reached or exceeded. Recommended action for such error is to retry using exponential back-off and you need to wait for at least one in-progress request for this view (profile) to complete.
For more information, you may also go through Usage Limits and Implementing Server-Side Authorization .
Upvotes: 1