Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've seen the 600 calls / 600 seconds rate limit mentioned by some (e.g. on quora).

What I want to know is whether I am allowed to do 600 batch requests in 600 secs (a batch request consists of up to 50 requests).

share|improve this question
"We currently limit the number of batch requests to 50." - Facebook. 50 what? Requests per minute, day, user!? – Xeoncross Jul 10 '12 at 17:12
I was wanting to know the same thing. 50 concurrent requests, requests per minute, per day, per diaper change??? – josef.van.niekerk Aug 15 '12 at 15:44
Hmm.. I wanted to make fun of FB, but reading their documentation clarifies things: "We currently limit the number of requests which can be in a batch to 50, but each call within the batch is counted separately for the purposes of calculating API call limits and resource limits. For example, a batch of 10 API calls will count as 10 calls and each call within the batch contributes to CPU resource limits in the same manner." – Henley Chiu Dec 19 '12 at 3:30

4 Answers

up vote 4 down vote accepted

You should handle the rate limiting programmatically by checking for the following error message. You should then put in a time-wait loop before your next call if you encounter the error. One of my high traffic applications accounts watches for this error and will slow down.

From: https://developers.facebook.com/docs/bestpractices/

Rate limited (API_EC_TOO_MANY_CALLS) If your application is making too many calls, the API server might rate limit you automatically, returning an "API_EC_TOO_MANY_CALLS" error. Generally, this should not happen. If it does, it is because your application has been determined to be making too many API calls. Iterate on your code so you're making as few calls as possible in order to maintain the user experience needed. You should also avoid complicated FQL queries. To understand if your application is being throttled, go to Insights and click "Throttling".

edit

As reported by Igy in the comment thread, each request in that batch counts as 1. For your example of 600 being the max limit, that means you can fire off 15 batch requests containing 50 calls each.

share|improve this answer
6  
Thanks for pointing out the best practices. However my question is if batched requests and single requests both count as 1 request against the limit. – daremon Jan 11 '12 at 9:10
If Facebook's docs doesn't say which is being done, then you should error on the side of caution in order to not let your developer account become flagged/revoked and monitor the Errors being returned from the API. It's best practice to monitor those errors and do what they say. – DMCS Jan 11 '12 at 16:16
Did this answer help you to find your solution to your question, if so, please accept this answer. See meta.stackoverflow.com/questions/5234/… for how to mark answers. Thank you! – DMCS Feb 4 '12 at 20:59
2  
Does anyone know the answer to the original question? I'm well aware that you should handle the too many calls error code, but I still want to know if batch requests counts as multiple requests in terms of the API rate limit. – heyman Jun 28 '12 at 6:48
3  
A Batch request of 50 counts as 50 API calls - the main advantage is setting dependencies and lowering the number of round-trip calls to the API - it doesn't affect the call or resource limits though – Igy Oct 10 '12 at 21:49
show 6 more comments

From my experience, they count individual requests regardless the way they were made (in batch or not).

For example, if I'm trying to do 1 batch/sec containing 10 requests each, I soon get 'TOO MANY CALLS'.

If I'm doing 1 batch/10 sec, each batch containg 10 requests, I never see TOO MANY CALLS.

I personally do not see any reason to prefer batches over regular API calls.

share|improve this answer

Batch calls definitely are counted per item in the batch. One batch call with 50 items is the equivalent of 50 api calls using the graph.

share|improve this answer

According to FB docs, each element in a batch counts as a separate call.

We currently limit the number of requests which can be in a batch to 50, but each call within the batch is counted separately for the purposes of calculating API call limits and resource limits. For example, a batch of 10 API calls will count as 10 calls and each call within the batch contributes to CPU resource limits in the same manner.

Quoted from: https://developers.facebook.com/docs/reference/api/batch/

In other words: you are not allowed to do 600 batch requests per 600 seconds. You are allowed 600 calls in 600 seconds. And each batch may count as one or more calls depending on the size of the batch.

I don't have empirical evidence however.

David

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.