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
When running the gcp_logging_collect recipe, the collection will fail silently if it exceeds the cloud logging API quota limit.
Based on my testing, this will first issue a 'google_api_exceptions.TooManyRequests' exception. Following this, all subsequent queries from the same logging client will be returned with a 'google_api_exceptions.StopIteration' exception. This occurs even when I implemented a 2 minute delay between requests after the first 'TooManyRequests' exception.
Due to this, I believe the previous logging retries fix from 32e3978 may not achieve any successful retries, as a new logging client is not generated after hitting the API limit.
The text was updated successfully, but these errors were encountered:
When running the gcp_logging_collect recipe, the collection will fail silently if it exceeds the cloud logging API quota limit.
Based on my testing, this will first issue a 'google_api_exceptions.TooManyRequests' exception. Following this, all subsequent queries from the same logging client will be returned with a 'google_api_exceptions.StopIteration' exception. This occurs even when I implemented a 2 minute delay between requests after the first 'TooManyRequests' exception.
Due to this, I believe the previous logging retries fix from 32e3978 may not achieve any successful retries, as a new logging client is not generated after hitting the API limit.
The text was updated successfully, but these errors were encountered: