Multiple choice technology

Your job reads from a file using a Sequential File stage running sequentially. You are using a Transformer stage following the Sequential File stage to format the data in some of the columns. What is the default (Auto) partitioning method?

  1. Random

  2. Hash

  3. Round Robin

  4. Same

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

When data is read sequentially from a Sequential File stage, the default (Auto) partitioning method is Round Robin. This distributes rows evenly across available partitions, which is appropriate after a sequential read where there's no inherent partitioning key. 'Same' would keep all data on one partition, defeating the purpose of parallel processing.