RE: 429 Resource has been exhausted (e.g. check quota) when update max CPC

2022-11-02 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi,

Thank you for posting your concern.

It appears that the error you've mentioned in the subject and in the body of 
the concern are different. However, allow me to provide insights on both errors.

For the "429 Resource has been exhausted", please note that all of the Google 
Ads API client libraries use gRPC for generating requests and responses. By 
default, gRPC has a message size of 4 MB, but our client libraries set the max 
message size to 64 MB in order to increase efficiency.

Responses must not exceed this limit. For example, a search request that 
includes a lot of fields may generate a response that exceeds 64 MB in size. To 
avoid this limit, you can reduce the number of selected fields, reduce the page 
size, or use streaming. For mutates, send fewer operations per request.

Requests that violate this limitation will not generate a GoogleAdsError, but 
will generate a 429 Resource Exhausted gRPC error. Refer to the list of gRPC 
error codes and messages.


Moving forward to the error below, it signifies that you have already reached 
the number of operations per day for the developer token with basic access 
mentioned on this document. With this, you will need to wait for the time that 
mentioned in the retryDelay field to resume the API requests. Otherwise, if you 
need more operations per day, you can apply for standard access by following 
this guide to have an unlimited number of operations per day.

{
                            "quotaError": "RESOURCE_EXHAUSTED"
                        },
                        "message": "Too many requests. Retry in 22986 seconds.",
                        "details": {
                            "quotaErrorDetails": {
                                "rateScope": "DEVELOPER",
                                "rateName": "Number of operations for basic 
access",
                                "retryDelay": "22986s"
                            }
}


Regards,

Ernie John
Google Ads API Team
ref:_00D1U1174p._5004Q2fqoBg:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/1Si8B0RKPRWY00IDYESW6LSVWxX0gv8mffJA%40sfdc.net.


Re: 429 Resource has been exhausted

2022-09-26 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi George,

Thank you for getting back to us. I am Carmela from the Google Ads API team as 
well.

Moving forward, to better check and can have a clearer view regarding this, 
could you provide the complete request and response logs with request ID and 
request header generated on your end? If you haven't yet, logging can be 
enabled by navigating to the Client libraries > Your client library (ex. Java) 
> Logging documentation, which you can access from this link.

You can provide it via Reply privately to author option. If this option is not 
available, then send it instead on this email address 
googleadsapi-supp...@google.com.

Regards,

Carmela
Google Ads API Team
ref:_00D1U1174p._5004Q2efS4P:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/4uee30RIUOEY00Wy5nSDUgQMau4t83crP76A%40sfdc.net.


Re: 429 Resource has been exhausted

2022-09-26 Thread George Lin
Hi, 

We have verified that the issue is not driven by gRPC client message limits 
in our code as our code uses streaming and mutates are using 1-2 operations 
per request. Regardless, when we receive these 429 errors we are 
subsequently locked out of our account for anywhere from 12-24 hours even 
though we have verified that this is below the published quota limits. 

Can you please look into this for us?


Thanks!

On Sunday, September 25, 2022 at 9:53:22 PM UTC-4 adsapi wrote:

> Hi George,
>
> Thank you for posting your concern.
>
> With regard to your concern, it appears that it is not related with the 
> daily operational limit of the basic access developer token that you have. 
> It is related to what was discussed in this document 
> 
>  that 
> "*All of the Google Ads API client libraries 
>  use gRPC 
>  for generating requests and responses. By default, gRPC 
> has a message size of 4 MB, but our client libraries set the max message 
> size to 64 MB in order to increase efficiency.* 
>
> *Responses must not exceed this limit. For example, a search request that 
> includes a lot of fields may generate a response that exceeds 64 MB in 
> size. To avoid this limit, you can reduce the number of selected fields, 
> reduce the page size, or use streaming 
> . 
> For mutates, send fewer operations per request.*
>
> *Requests that violate this limitation will not generate a GoogleAdsError 
> ,
>  
> but will generate a 429 Resource Exhausted gRPC error. Refer to the list of 
> gRPC error codes and messages 
> .*"
> You may follow the suggestions provided above to address the issue. If you 
> have any questions, do not hesitate to reach out again and our team will be 
> happy to provide support.
>
> Regards,
> [image: Google Logo] 
> Ernie John 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2efS4P:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/7a895765-8845-4f5b-8bca-d0656c6ab288n%40googlegroups.com.


RE: 429 Resource has been exhausted

2022-09-25 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi George,

Thank you for posting your concern.

With regard to your concern, it appears that it is not related with the daily 
operational limit of the basic access developer token that you have. It is 
related to what was discussed in this document that "All of the Google Ads API 
client libraries use gRPC for generating requests and responses. By default, 
gRPC has a message size of 4 MB, but our client libraries set the max message 
size to 64 MB in order to increase efficiency.

Responses must not exceed this limit. For example, a search request that 
includes a lot of fields may generate a response that exceeds 64 MB in size. To 
avoid this limit, you can reduce the number of selected fields, reduce the page 
size, or use streaming. For mutates, send fewer operations per request.

Requests that violate this limitation will not generate a GoogleAdsError, but 
will generate a 429 Resource Exhausted gRPC error. Refer to the list of gRPC 
error codes and messages."

You may follow the suggestions provided above to address the issue. If you have 
any questions, do not hesitate to reach out again and our team will be happy to 
provide support.

Regards,

Ernie John
Google Ads API Team
ref:_00D1U1174p._5004Q2efS4P:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/MOYr60RISNWL0047Dtnh36QG28VZRkQeS9gQ%40sfdc.net.


RE: 429 Resource has been exhausted

2022-08-04 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi Sprighub,

Thank you for reaching out to the Google Ads API support team.

Kindly note that the RESOURCE_EXHAUSTED error generally occurs when you are 
sending too many requests in a short period of time. The server throws this 
error once it detects that your request has exceeded the system frequency 
limit. I would recommend setting up short delays between requests or combine 
more operations in fewer requests.

Please refer to the Best practices guide to optimize the efficiency and 
performance. Also, this may occur if you have already exceeded the daily limit 
of 15,000 API operations per day. You may refer to this documentation for the 
quota you need to consider daily when performing requests using the API. It 
says that the basic access level allows the developer token to execute up to 
15,000 operational requests per day and 1,000 get operations per day only.

However, we would request that you provide the complete request and response 
logs, with the request-id, generated for the RESOURCE_EXHAUSTED error in order 
to check further. You can enable logging, which you may do so by navigating to 
the Client libraries > Your client library (ex. Java) > Logging documentation, 
which you can access from this link. Please reply via privately author option. 
Let me know if you have any questions.

Thanks,

Nirmitabahen Gaurav
Google Ads API Team
ref:_00D1U1174p._5004Q2d4pDI:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/4IGIA0RG3GZC00_lHTuab6Q-ewPBUl2aTggQ%40sfdc.net.


RE: 429 Resource has been exhausted (e.g. check quota) when adding keywords to a shared set

2019-12-06 Thread Google Ads API Forum Advisor Prod
Hello,

Thank you for reaching out. The QuotaCheckError.RESOURCE_EXHAUSTED generally 
occurs when you are sending too many requests in a short period of time. The 
server throws this error once it detects that your request has exceeded the 
system frequency limit. I would recommend to set up short delays between 
requests or combine more operations in fewer requests. Please refer to the Best 
practices guide to optimize the efficiency and performance. If the issue 
persists, could you please share the complete request and response logs along 
with the client customer id for me to take a look into this further?

P.S. Please use Reply privately to author option while sharing the requested 
information.

Regards,
Nikisha Patel, Google Ads API Team
ref:_00D1U1174p._5001UODxeD:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/mv-ic0Q23Q2S00XyL7xCKLQDGi7OfXoEDMsw%40sfdc.net.