Flatten

Flatten is a Beam transform for PCollection objects that store the same data type. Flatten merges multiple PCollection objects into a single logical PCollection.

Kata: Implement a Flatten transform that merges two PCollection of words into a single PCollection.


Refer to Flatten to solve this problem.
Refer to the Beam Programming Guide "Flatten" section for more information.