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 a sequential stage feeds into a parallel stage with Auto partitioning, DataStage defaults to Round Robin. This evenly distributes the sequential stream across available partitions without requiring a key. Random would also distribute but is not the default for Auto. Hash and Same require specific conditions (key column or existing partitioning) that don't apply when coming from sequential.