Vivien
Vivien

Reputation: 1169

Error when activating Gmail API for my google service account

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].

enter image description here

What should I do to fix that ? (My final goal is to update user email signature for my domain)

Upvotes: 0

Views: 195

Answers (1)

Teyam
Teyam

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

Related Questions