Description
The current Uuid() expression uses java.util.UUID.randomUUID for UUID generation. There are a couple of major problems with this:
- It is non-deterministic across task retries. This breaks Spark's processing model, and this will to very hard to trace bugs, like non-deterministic shuffles, duplicates and missing rows.
- It uses a single secure random for UUID generation. This uses a single JVM wide lock, and this can lead to lock contention and other performance problems.
We should move to something that is deterministic between retries. This can be done by using seeded PRNGs for which we set the seed during planning. It is important here to use a PRNG that provides enough entropy for creating a proper UUID.
Attachments
Issue Links
- relates to
-
SPARK-23794 UUID() should be stateful
- Resolved
- links to