We randomly get thruout the day the RESOURCE_EXHAUSTED "Too many requests. Retry in 900 seconds."
I tried to create a new GoogleAdsService for each customer , and we definitely do not do 15k requests per customer
Is it possible that the SearchGoogleAdsStreamResponse .... get let's say 1,000 rows ... then makes another connection to google ... gets another 1,000 rows ... and if you have 500 million rows ... it could get to the 15k requests ?
Not sure what i can try to diagnose this ?? THOUGHTS ??
ServerStream<SearchGoogleAdsStreamResponse> responseStream = getGoogleAdsStreamF(gasc, customerId, gaqlModif);
for (SearchGoogleAdsStreamResponse response : responseStream)
{
for (GoogleAdsRow row : response.getResultsList())
{