This relates to this question. I am using this answer to generate UUID in JavaScript:

'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {
    var r = Math.random()*16|0, v = c == 'x' ? r : (r&0x3|0x8);
    return v.toString(16);
});

This solution appeared to be working fine, however i am getting collisions. Here's what i have:

  • A web-app running in Google Chrome.
  • 16 users.
  • about 4000 UUIDs have been generated in the past 2 months by these users.
  • i got about 20 collisions - e.g. new UUID genereated today was the same as about 2 months ago (different user).

So the questions are:

  1. What's causing the issue?
  2. How can i avoid it?
link|improve this question

77% accept rate
Combine a good random number with the current time (in milliseconds). The odds of the random number colliding at exactly the same time are really, really, really low. – jfriend00 Aug 2 '11 at 6:33
feedback

4 Answers

up vote 4 down vote accepted

my best guess is that Math.random() is broken on your system for some reason (bizarre as that sounds.) This is the first report I've seen of anyone getting collisions.

node-uuid has a test harnass that you can use to test the distribution of hex digits in that code. If that looks okay then it's not Math.random(), so then try substituting the UUID implementation you're using into the uuid() method there and see if you still get good results.

[Update: Just saw Veselin's report about the bug with Math.random() at startup. Since the problem is only at startup, the node-uuid test is unlikely to be useful. I'll comment in more detail on the devoluk.com link.]

link|improve this answer
1  
Thanks, I'm going with uuid.js now, since it uses browser's strong crypto if available. Will see if there are any collisions. – Muxa Aug 31 '11 at 22:21
can you provide a link to the uuid.js code you're referring to? (sorry, not sure which lib you mean.) – broofa Sep 7 '11 at 16:51
Had no collisions so far :) – Muxa Feb 12 at 9:41
feedback

Indeed there are collisions but only under Google Chrome. Check out my experience on the topic here

http://devoluk.com/google-chrome-math-random-issue.html

Seems like collisions only happen on the first few calls of Math.random. Cause if you just run the createGUID / testGUIDs method above (which obviously was the first thing I tried) it just works with no collisions whatsoever.

So to make a full test one needs to restart Google Chrome, generate 32 byte, restart Chrome, generate, restart, generate...

link|improve this answer
That's pretty worrying - has anyone raised a bug report? – UpTheCreek Sep 21 '11 at 19:24
1  
Especially like the link to better random number generators in javascript: baagoe.com/en/RandomMusings/javascript – Leopd Oct 3 '11 at 6:35
feedback

I wanted to post this as a comment to your question, but apparently StackOverflow won't let me.

I just ran a rudimentary test of 100,000 iterations in Chrome using the UUID algorithm you posted and got no collisions. Here's a code snippet:

var createGUID = function() {
    return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {
        var r = Math.random()*16|0, v = c == 'x' ? r : (r&0x3|0x8);
        return v.toString(16);
    });
}

var testGUIDs = function(upperlimit) {
    alert('Doing collision test on ' + upperlimit + ' GUID creations.');
    var i=0, guids=[];
    while (i++<upperlimit) {
        var guid=createGUID();
        if (guids.indexOf(guid)!=-1) {
            alert('Collision with ' + guid + ' after ' + i + ' iterations');
        }
        guids.push(guid);
    }
    alert(guids.length + ' iterations completed.');
}

testGUIDs(100000);

Are you sure there isn't something else going on here?

link|improve this answer
Yes, I ran some local tests too and got no collisions. Collisions happen between UUIDs what are generated on different user's machines. I might need to generate some data on different machines and check for collisions. – Muxa Aug 2 '11 at 22:58
Also, i've noticed that collisions are between UUIDs generated 3-4 weeks apart. – Muxa Aug 3 '11 at 0:05
Very odd. What platform are you running on? – user533676 Aug 3 '11 at 3:14
It seems unlikely that there's a flaw so basic in V8's Math.random(), but Chromium 11 added support for strong random number generation using the window.crypto.getRandomValues API if you want to try it instead. See blog.chromium.org/2011/06/…. – user533676 Aug 3 '11 at 3:23
Running on combination of Windows 7 and Windows XP. – Muxa Aug 3 '11 at 11:02
feedback

I submitted a new answer to the original question, that uses window.crypto.getRandomValues() if it's available, and degrades to Math.rand() if not.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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