Glossary

UUID

UUID (Universally Unique Identifier) is a 128-bit identifier with an astronomically low probability of collision. It looks like 550e8400-e29b-41d4-a716-446655440000. It replaces sequential numeric IDs where they are insecure or inconvenient.

Why instead of a numeric ID

Versions

Drawback

UUID v4 as an InnoDB primary key causes B-Tree index fragmentation due to random insert order. UUID v7 or ULID solve this problem.