UUIDs are obsolete in the age of Docker
leonid.shevtsov.me
UUIDs are obsolete in the age of Docker
1–10 of 39 posts
Re: UUIDs are obsolete in the age of Docker
#2Re: UUIDs are obsolete in the age of Docker
#3This is a bold claim and doesn't match my experience at all. UUIDv4 is all I see, everywhere, everyday.
That's also a big enough caveat to put in the title: if you have a beef with UUIDv1, say UUIDv1 is obsolete.
Re: UUIDs are obsolete in the age of Docker
#4Postgres only offers random uuid generation (https://www.postgresql.org/docs/15/functions-uuid.html).
The `uuidgen` CLI tool, at least for modern versions (I have not checked historically), says (from https://man7.org/linux/man-pages/man1/uuidgen.1.html): "By default uuidgen will generate a random-based UUID if a high-quality random number generator is present." (later it lists /dev/random as such a generator, present on almost all systems)
What's an example of a system that generates v1 uuids by default?
Re: UUIDs are obsolete in the age of Docker
#5Re: UUIDs are obsolete in the age of Docker
#6> this is only correct about UUID version 1. However, it is what most applications use. This is a bold claim and doesn't match my experience at all. UUIDv4 is all I see, everywhere, everyday. That's also a big enough caveat to put in the title: if you have a beef with UUIDv1, say UUIDv1 is obsolete.
Re: UUIDs are obsolete in the age of Docker
#7Re: UUIDs are obsolete in the age of Docker
#8Is my knee-jerk judgement that this advice borders on nonsense, unwarranted?
Re: UUIDs are obsolete in the age of Docker
#9Is anyone even still using non-random UUIDs? Every application I've ever seen them use is using v4.