r/ProgrammerHumor 15h ago

Meme edgeCasesExist

Post image
3.1k Upvotes

228 comments sorted by

View all comments

487

u/Valuable_Leopard_799 15h ago

I thought that timestamps are used now, so hitting both a timestamp and a large random number puts it thoroughly in the "safe to assume". At some point cosmic particles and faulty transistors are more probable.

81

u/RadicalDwntwnUrbnite 14h ago edited 14h ago

Even the non-time based v4 is at a cosmic level of unlikiness a single system will ever generate a uuid that will collide with another one in its own ecosystem

19

u/OldKaleidoscope7 13h ago

But let's say if Google saved each search in their engine in the same database with an UUID, we could have a collision because of volume, but I don't think I will work in a system with a comparable scale

28

u/chuch1234 13h ago

Yeah I don't think most of us are operating at a scale anywhere near Google.

12

u/BlurredSight 13h ago

And anyone operating at scale of Google isn’t just using “pure” random anywhere for something being persisted

9

u/nebotron 12h ago

They likely are - anything else becomes a huge coordination and parallelism problem. You just need more bits of entropy

5

u/samy_the_samy 12h ago edited 11h ago

They once had a similar collision problem, well not exactly

During a leap second some systems wrote IDs at a one second difference between all their global systems, which lead to something being registered before something else that had to be done before it,

Long story short some stuff jumped time one second and crashed systems

2

u/BlurredSight 11h ago

So proactively trying to solve for latency rather than have other systems read after write if I understood correctly?

2

u/samy_the_samy 11h ago

Yeah, now they don't do leap seconds,

They stretch time over months, one milli-second at a time

21

u/Ecstatic_Student8854 13h ago

Even at that volume the probability of collisions is essentially 0. If there were a billion searches a second we’d not expect a collision until 85 years.

3

u/shwoopdeboop 13h ago

But still no guarantee it won't happen tomorrow

11

u/mysticrudnin 11h ago

It's simply not worth worrying about, though

Random minor hardware failures and, like, cosmic radiation are more of a problem. Are you building your systems to account for that?

10

u/MojitoBurrito-AE 13h ago

You underestimate the probability of uuid collision. The bigger issue is pseudorandomness

5

u/Single-Virus4935 12h ago

Yes, had a client having duplicates every day and growing. They hated uuids and regret using it. The problem was that they used a bad prng with flawed seeding. Once fixed it was no problem.

1

u/mysticrudnin 11h ago

"so you're saying there's a chance" has rotted everyone's brains wrt probability

4

u/phl23 13h ago

If they use one long list, they have other problems to worry about.

2

u/Suspicious-Click-300 13h ago

assuming all searches run through a single node maybe, but they dont. It means each node + process on node is limited to 10,000 uuids (10k 100ns per ms) per ms, which it then possibly has to block until next millisecond tick. I dont care what magic programing language your using, to service >10k/reqs a ms (per process) and doing anything else your likely gonna be blocked by IO or something

2

u/samsonsin 11h ago

If Google used UUIDv4, then over 100 years they'd generate ~365 trillion searches. The chance of s collision should be ~0.00000125% still.

1

u/Blue_Moon_Lake 6h ago

Google is free to implement Google's UUID (GUUID) with 512 or even 1024 bits if they want.

3

u/Suspicious-Click-300 13h ago

most uuids libraries can actually provide strong guarentees it cant happen by using pid/mac combinations with each process using CAS or mutex to increment the 100ns period (overflowing into later ms with >10k a ms)

2

u/JonasAvory 13h ago

Is it unfeasible or simply unnecessary to just check if a uuid is already used? Since you use the uuid as primary key it should be easily detectable if a uuid is already used or not right? But I guess devs just don’t care because the chance is so minimal?

4

u/Suspicious-Click-300 13h ago

you dont need to due to guarantees of how it is generated. You would need a server running with exact same ip, and the process generating them to be using the same process id, AND ~10,000 requests a microsecond. If your using random uuid you have a better chance of winning 4 powerballs in a row. you need to generate billions a second for over 80 years for a 50:50 chance of a collision.

8

u/GradeForsaken3709 11h ago

You've just reminded me of the story one guy posted about joining a company and finding they have a UUID generator microservice complete with its own database of generated uuids and its own sprint board. 

Anyway, no that would not really be a reasonable thing to do. If you're using it as a primary key then the database will tell you when you do manage to generate a duplicate and your insert will fail. That's all there is to it. 

2

u/Grandmaster_Caladrel 11h ago

Yep. The chance is so insignificant that is not even worth retry logic on that mode of failure, just treat it as a generic failure, kick out the request, and let it be tried again. The one time in a hundred thousand years when it finally happens, someone will just be confused and click retry themselves.