Skip to content

Commit d27e7a2

Browse files
Merge pull request #30330 from svetakvsundhar/minor_typo
[Minor] Clarify pipeline design sentence
2 parents f373e71 + f5e3378 commit d27e7a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

website/www/site/content/en/documentation/pipelines/design-your-pipeline.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ mixedCollection.get(startsWithATag).apply(...);
146146
mixedCollection.get(startsWithBTag).apply(...);
147147
{{< /highlight >}}
148148

149-
You can use either mechanism to produce multiple output `PCollection`s. The first option makes more sense if the processing logic in the `ParDo` is logically very distinct. However, using the second option (a single transform that produces multiple outputs) makes more sense if the transform's computation per element is time-consuming, and is more scalable if you plan to add more output types in the future.
149+
You can use either mechanism to produce multiple output `PCollection`s. The first option is recommended if it logically does not make sense to combine the processing logic into one `ParDo`. However, using the second option (a single transform that produces multiple outputs) makes more sense if the transform's computation per element is time-consuming, and is more scalable if you plan to add more output types in the future.
150150

151151
## Merging PCollections
152152

0 commit comments

Comments
 (0)