Take a Number

pleasetakeanumbersign_rainbowsigns.jpgWaiting the other day my thoughts turned again to coordination problems, since I was thinking about how the store needed one of those take a number, now serving schemes.  I don’t think I’ve seen a scheme like that in a software system, wonder why?  Wouldn’t be too hard, in the abstract, to add one to HTTP.  It would be a slight variation on the temporary redirect.  The server’s redirect would include the number, along with a time to delay before the retry.

Today I was tinkering with a Freebsd installation.  It includes a tool that fetches system updates.  The instructions advise me to invoke that tool in a mode that forces it to do a random delay before it actually fires off.  This is to avoid having the entire installed base of systems hit their upgrade server at the top of the hour.  It’s brittle since it depends on the users to use the right mode.  A scheme like the one above would avoid that risk, and it would could be used to help the server tune the load so it can run flat out when the bursts of users show up.

It is almost possible to do this without changing the existing HTTP spec.  For example you set up a Rube Goldberg device with three servers.  One to hand out numbers, one to queue up users, and finally one that actually provides service.  Say you want to sell concert tickets on a first come first serve basis.  As buyers arrive at your server you redirect them, providing a number, to a second server.  This server has only one purpose in live and that’s to make them wait.  A HTTP server configured to do that for a huge number of users is a bit odd to set up but it’s not particularly difficult.  This waiting server finally redirects them to the actual selling server at the appropriate time.  The nice thing about this approach is that it removes the incentive for buyers to attempt to poll as fast as possible.
Curious, I’ve mentioned take a number systems before (includes more amusing picture).

1 thought on “Take a Number

  1. epc

    I tried this once, I set up a system where the primary server responded with a Refresh header in the HTTP block (not a “meta refresh”), which had a 0-30 second delay followed by the primary URL again, polling until the load had dropped on the download server. Then the primary would return a 302 redirect to the newly freed download server.

    There were some problems with this though: although web browsers had no problems dealing with the Refresh: header, users seem to be conditioned to download starting automatically and would either close the window or do a shift-reload, starting the queuing process over again. Also, non-traditional browsers or command line tools didn’t seem to support Refresh: in the HTTP headers and would never reload the URL.

Leave a Reply

Your email address will not be published. Required fields are marked *