🎴 Flashcard Mode

IBM InfoSphere DataStage Fundamentals

Card1 / 20
Mastered0
Review0
QuestionClick to flip

What is the lowest cost partitioning method for parallel stage to sequential stage?

AnswerClick to flip back
A
Round Robin
💡 Explanation:

Round Robin is the lowest cost method for parallel-to-sequential flow because it simply gathers records from all partitions without any computation - it just collects rows in the order they arrive. Entire would broadcast all data (expensive), Sort Merge requires sorting, and Ordered needs coordination. Round Robin's collect operation has minimal overhead.

Change Mode