Janusz Skonieczny
Janusz Skonieczny

Reputation: 18982

How can you check Search API Quota usage in GAE?

For a few days in a row I have a Search API error:

OverQuotaError: The API call search.IndexDocument() 
required more quota than is available.

I almost sure that I have not reached [quota limits] but I cannot find a way to make sure.

How can I check current quota usage, if not in admin them maybe by code.

Upvotes: 2

Views: 875

Answers (5)

Christina
Christina

Reputation: 51

If you need additional quota for the App Engine search API, you can request it here.

Upvotes: 0

Chris
Chris

Reputation: 1162

I found quotas on appengine search api for java which says that there is a rate limiting at about 100 to 120 API calls per minute.

Upvotes: 0

RLH
RLH

Reputation: 15698

You can now check your Search API Quota from within the Quota Admin Console. It is located below the Storage section, of the Quote Details page. This feature was added yesterday (5-23-2012) and was blogged about on the official Google App Engine Blog.

Upvotes: 1

Vishal
Vishal

Reputation: 2181

You can check quotas for all Google services which provides API here. I don't find Custom Search API there although.

Upvotes: 0

Peter McKenzie
Peter McKenzie

Reputation: 741

You can't check Search quota usage right now. It'll be viewable in admin console soon.

Upvotes: 2

Related Questions