I'm designing a HTTP-service, with capacity of up to 500 million requests per day (served by more than one independent machine).

For each request I have to generate unique ID and return it to user. ID must be 100% unique within a window of 10 minutes. (1 day is preferred, globally unique IDs are ideal.) No server-server communication must be needed to generate that ID.

Silly pseudo-session example:

Client: GET /foo

Server: Content-Type: text/xml

        <root>
            <id>ab9d1972-2844-11e0-86b2-000c29544403</id>
            <other_data/>
        </root>

In previous generation of this HTTP service I used UUIDs.

I'm happy with UUIDs, but there is one problem: they are too long. On that number of requests, this extra size in noticeable in disk space waste for log files.

What is the best way to create a short, but unique identifier? To make things worthwhile, I guess, algorithm should produce at most half of UUID length while being unique for all day long (10 minutes should be even shorter).

Ideally, suggested algorithm would have sane, lightweight production-quality implementation in plain C.

Update: Generated ID should not require URI-encoding when passed in the GET request.

link|improve this question

Lazy question (sorry, it is too late at night to do math): how long is UUID if encoded with ascii85 from binary? – Alexander Gladysh Jan 29 '11 at 0:35
@Alexander: Number of digits is ceil(log(max_val)/log(num_different_chars)). – Oli Charlesworth Jan 29 '11 at 0:40
ASCII85 encodes 4 bytes in 5 characters. However, it is not really URI or human-friendly. (UUID is 128bits is 16 bytes is 20 characters ASCII85). – pst Jan 29 '11 at 0:43
As far are making it unique, it depends upon exact requirements, but consider an approach like twitter snowflake (twitter message numbers) -- it uses only 64bits but a careful selection of machine/worker identification, time, and counters to guarantee uniqueness within the environment. Much more "guessable", but that's a weak reason/concern not to use a more problem-space refined approach. – pst Jan 29 '11 at 0:46
@pst: why is ASCII85 not URI-friendly? (human-friendliness is not an issue) 20 characters is nice! – Alexander Gladysh Jan 29 '11 at 0:50
show 2 more comments
feedback

3 Answers

up vote 5 down vote accepted

Give each machine a unique prefix. Give each machine a counter. To generate an ID, increment the counter, and append its value to the prefix.

If you want to obfuscate the IDs, encrypt them - a cipher is a reversible transformation, so applying it to unique values will produce unique values.

link|improve this answer
2  
Perhaps also make each ID three parts: machineid-counter-randomkey to eliminate ID prediction attacks. – Software Monk Jan 29 '11 at 0:25
Good idea. Can you suggest a really fast cipher? – Alexander Gladysh Jan 29 '11 at 0:25
Also: How short do you think the ID can be if it is generated in your way? – Alexander Gladysh Jan 29 '11 at 0:27
@Alexander: 10 minutes at 500 million hits per day is 3.7 million. 7 digits ought to be enough for the counter (use 8 or 9 for headroom!). – Oli Charlesworth Jan 29 '11 at 0:29
@Software Monkey: also a good idea. – Alexander Gladysh Jan 29 '11 at 0:29
show 8 more comments
feedback

A few thoughts:

  • 500 million requests a day. Really?
  • Use UUIDs.
  • If required, don't use HTTP (as that's the more significant overhead) and transfer the UUID in a binary form.
  • You need a certain amount of bytes to guarantee that your server returns a truly unique ID.
  • How about using UDP?

Anyway, what the heck are you trying to do?

link|improve this answer
500M, really (that is target top capacity, estimated actual load is more like 100M). HTTP and TCP/IP is a must, unfortunately. – Alexander Gladysh Jan 29 '11 at 0:24
also, 500M/day should be within c10k limits, what is so surprising about it? – Alexander Gladysh Jan 29 '11 at 0:29
feedback

you could easily implement a javascript method that manipulates a visitors ip adrress and store it to a database.

you could use a hashing method

link|improve this answer
Would not do, sorry. Remember: no server-server communication = no DB. Also: IP is not unique! Whole countries exist under the same IP. – Alexander Gladysh Jan 29 '11 at 0:21
what about a cookie? – NSAwesomeGuy Jan 29 '11 at 0:26
1  
No, I'd rather not use anything that comes from client. – Alexander Gladysh Jan 29 '11 at 0:36
feedback

Your Answer

 
or
required, but never shown

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