What is the lowest cost partitioning method for parallel stage to sequential stage?
-
Sort Merge
-
Round Robin
-
Entire
-
Ordered
B
Correct answer
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.