Multiple choice technology

Which is the best partition technique we will use for join stage?

  1. Round robin

  2. Auto

  3. Hash

  4. Entire

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

Hash partitioning is optimal for join operations because it distributes rows with the same join key to the same partition. This ensures matching records from both inputs are colocated, minimizing data movement during the join. Round robin distributes randomly, Entire copies everything to all partitions, and Auto may not choose the best method.