Re: API Rate Limits and HTTP Code [#255]

Berkeley Electronic Press (http://www.bepress.com/) is using 503
plus retry_after to rate limit:

out $cgiutils->header(-status=>"503 Excessive OAI queries from IP address
($ip)", -retry_after => $throttle);
out $cgiutils->start_html(-title=>"OAI database busy");

But more importantly we're using (and this is an extension) a 200 error code
for success, but also including retry_after:

out $cgiutils->header(MIME_TYPE => 'text/xml', -retry_after => $throttle);

The goal is to say "you got this reply, but if you ask back in less than 5
seconds, we're going to block you.  It saves an entire server round trip.
 Going directly by the standard our clients would need to do:

    Request->200
    Request->503 retry after 10 seconds
    Wait ten seconds
    Request->200
    Request->503 retry after 10 seconds
    Wait ten seconds

What would it take to make retry_after an officially list for 2xx?  Then
you'd get:

    Request->200 retry after 10 seconds
    Wait ten seconds
    Request->200 retry after 10 seconds
    Wait ten seconds
    Request->200 retry after 10 seconds
    Wait five seconds
    Request->503 retry after 5 seconds
    Wait five seconds
    Request->200 retry after 10 seconds
    Wait ten seconds

We have this in production use, with a particular high volume client, who in
fact halved the number of transactions hitting our server.

We use 5xx because we want the client to come back later, not think the
resource is gone.
We added retry_after to 2xx codes reduce the number of server round trips,
for clients that are crawling
the heck out of us.


On Thu, Oct 28, 2010 at 5:33 PM, Mark Nottingham <mnot@mnot.net> wrote:

> Hi Karl,
>
> That's a very timely question; I've had similar discussions privately with
> a number of folks, and have created an issue to track it:
>  http://trac.tools.ietf.org/wg/httpbis/trac/ticket/255
>
> My personal feeling is that we should clarify one of the existing status
> codes to include this use case, allowing space for someone to define an
> additional header or two giving more information. I'm happy to be argued
> into a new status code, but don't think it's necessary at this point.
>
> Based on the links below, it looks like common practice is to use either
> 403 or 503.
>
> The commonly cited case for 4xx codes (also explained in the blog you link
> to) is that it's a client error, not a server error. While I agree
> generally, it's important to keep in mind the effects on clients. 403 (and
> any 4xx error that a client doesn't recognise) will result in a conservative
> client believing that they're not allowed to resubmit the request, whereas
> 503 + Retry-After results in the correct client behaviour.
>
> That said, I'm more interested in coming to an agreement and assuring that
> existing software doesn't get broken than in coming up with "perfect"
> semantics. To that end, it looks like our options are:
>
> a) Clarify that 503 can be used for rate limiting, or
>
> b) Clarify that 403 can be used for rate limiting, and allow Retry-After to
> appear there, or
>
> c) Define a new status code (4xx or 5xx TBD).
>
>
>
> Some other folks doing similar things:
>
> Github uses 403:
>
> http://support.github.com/discussions/site/1151-api-returns-403-when-rate-limiting
>
> BaseCamp uses 503:
>  http://developer.37signals.com/basecamp/
>
> Google seems to use 404:
>
> http://groups.google.com/group/google-base-data-api/browse_thread/thread/cb5752b43b030fed
>
> Amazon appears to use 503:
>
> http://developer.amazonwebservices.com/connect/message.jspa?messageID=142896
>
> Apache mod_limitipconn uses 503:
>  http://dominia.org/djao/limit/contrib/sbarta/mod_limitipconn.c
>
> Lighttpd mod_evasive uses 403:
>
> http://redmine.lighttpd.net/projects/lighttpd/repository/entry/trunk/src/mod_evasive.c
>
> ... as does Apache mod_evasive:
>  http://www.zdziarski.com/blog/?page_id=442
>
> Nginx uses 503:
>  http://wiki.nginx.org/NginxHttpLimitZoneModule
>
> Yahoo uses 403:
>  http://developer.yahoo.com/search/rate.html
>
> I see references to Facebook using 341, e.g.,:
>  http://forum.developers.facebook.net/viewtopic.php?pid=245966
>
> Mozilla Weave doesn't specify a status code, but re-specifies Retry-After:
>  https://wiki.mozilla.org/Labs/Weave/Sync/1.0/API#X-Weave-Backoff

Received on Thursday, 11 November 2010 22:42:29 UTC