Goodbye integers, hello UUIDv7
buildkite.com
Goodbye integers, hello UUIDv7
1–10 of 376 posts
Re: Goodbye integers, hello UUIDv7
#2Re: Goodbye integers, hello UUIDv7
#3Re: Goodbye integers, hello UUIDv7
#4I find it interesting that it’s quoted random IDs are bad for performance, because it’s actually better for distributed storage systems because you don’t hotspot on a single node. For example see: https://stackoverflow.com/a/53901549 and https://medium.com/google-cloud/cloud-spanner-choosing-the-r...
I still think that graph databases are way better for this sort of thing.
Re: Goodbye integers, hello UUIDv7
#5And you can use it today with Postgres uuid type. Postgres doesn’t care what you store in it as long as it has the correct length. So you can generate a uuidv7 and store it natively
Re: Goodbye integers, hello UUIDv7
#6Re: Goodbye integers, hello UUIDv7
#7I find it interesting that it’s quoted random IDs are bad for performance, because it’s actually better for distributed storage systems because you don’t hotspot on a single node. For example see: https://stackoverflow.com/a/53901549 and https://medium.com/google-cloud/cloud-spanner-choosing-the-r...
Re: Goodbye integers, hello UUIDv7
#8I find it interesting that it’s quoted random IDs are bad for performance, because it’s actually better for distributed storage systems because you don’t hotspot on a single node. For example see: https://stackoverflow.com/a/53901549 and https://medium.com/google-cloud/cloud-spanner-choosing-the-r...
Re: Goodbye integers, hello UUIDv7
#9I find it interesting that it’s quoted random IDs are bad for performance, because it’s actually better for distributed storage systems because you don’t hotspot on a single node. For example see: https://stackoverflow.com/a/53901549 and https://medium.com/google-cloud/cloud-spanner-choosing-the-r...
Re: Goodbye integers, hello UUIDv7
#10I find it interesting that it’s quoted random IDs are bad for performance, because it’s actually better for distributed storage systems because you don’t hotspot on a single node. For example see: https://stackoverflow.com/a/53901549 and https://medium.com/google-cloud/cloud-spanner-choosing-the-r...
They likely mean it’s good for latency and not necessarily for throughput. I still think that graph databases are way better for this sort of thing.