shunping commented on issue #36480:
URL: https://github.com/apache/beam/issues/36480#issuecomment-3395616449
I verified that prism can successfully run the above pipeline.
```
import logging
import apache_beam as beam
from apache_beam.testing.util import assert_that, equal_to
from apache_beam.pipeline import PipelineOptions
logging.basicConfig(level=logging.INFO)
with beam.Pipeline(
options=PipelineOptions(["--runner=prism"])) as p:
output_titles = (
p
| "Create input" >> beam.Create([(0, 0)])
| "Batch in groups" >> beam.GroupIntoBatches(5))
assert_that(output_titles, equal_to([(0, [0])]))
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]