Concept Flow - Hash partitioning for distribution
Start: Insert row
Compute hash on partition key
Modulo hash by number of partitions
Determine target partition
Insert row into target partition
End
When inserting data, the system computes a hash of the partition key, uses modulo to pick a partition, then inserts the row there.
