Hi, A short terminology question regarding "bundle", and particularly splitIntoBundles vs. generateInitialSplits.
In *BoundedSource* we have: List<? extends BoundedSource<T>> *splitIntoBundles*(...) In *UnboundedSource* we have: List<? extends UnboundedSource<OutputT, CheckpointMarkT>> *generateInitialSplits*(...) I was wondering if the names were intentionally made different, i.e. "into bundles" vs "into splits"? In a way these two methods carry out a very similar task, would it be reasonable to think of *splitIntoBundles *as *generate*Initial*Splits? * (strikethrough due to "initial" not being applicable in the case of bounded sources) Regards, Stas