That's not really the same thing, is it? `beam.Flatten` combines two or more pcollections into a single pcollection while beam.FlatMap unpacks iterables of elements (i.e. PCollection<Iterable<T>> -> PCollection<T>)
On Thu, Mar 21, 2024 at 2:57 PM Valentyn Tymofieiev via dev < dev@beam.apache.org> wrote: > Hi, you can use beam.Flatten() instead. > > On Thu, Mar 21, 2024 at 10:55 AM Joey Tran <joey.t...@schrodinger.com> > wrote: > >> Hey all, >> >> Using an identity function for FlatMap comes up more often than using >> FlatMap without an identity function. Would it make sense to use the >> identity function as a default? >> >> >> >>