Multiple choice technology

What are the types of parallelism?

  1. pipeline parallelism

  2. partition parallelism

  3. All the above

  4. None of the above

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

The two main types of parallelism in ETL processing are pipeline parallelism (breaking data flow into concurrent stages where output from one stage flows to the next) and partition parallelism (splitting data into subsets processed simultaneously on different processors). Pipeline parallelism improves throughput by overlapping different operations like extraction, transformation, and loading. Partition parallelism reduces processing time by handling multiple data partitions concurrently.