Abacn commented on issue #27648:
URL: https://github.com/apache/beam/issues/27648#issuecomment-1661147534
I am testing Java portable runner and is making a little bit progress
- PeriodicImpulse (SDF based) - failing
- GenerateSequence (Read(unbounded)) - failing : this is due to that
Read(unbounded) wrapped to SDF after #13006. However, adding a piece of code of
```
if (ExperimentalOptions.hasExperiment(
pipeline.getOptions(), "beam_fn_api_use_deprecated_read")
|| ExperimentalOptions.hasExperiment(pipeline.getOptions(),
"use_deprecated_read")) {
SplittableParDo.convertReadBasedSplittableDoFnsToPrimitiveReadsIfNecessary(pipeline);
}
```
in PortableRunner.run(), one is able to get GenerateSequence working for
portable Flink runner. Same should happen for KafkaIO
--
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]