AyWa commented on issue #27648:
URL: https://github.com/apache/beam/issues/27648#issuecomment-1685182401

   > @nybbles would you mind testing your kafka pipeline with option 
`--experiments=use_deprecated_read` ? (PeriodicImpulse does not work because 
its a pure SDF; while KafkaIO still has an UnboundedRead implementation)
   
   I can confirm that it is working properly ! The way to make it works is to 
set some expansion service params like:
   ```
   import apache_beam.io.kafka import ReadFromKafka, 
default_io_expansion_service
   
   ReadFromKafka(
     consumer_config=...
     
expansion_service=default_io_expansion_service(append_args=['--experiments=use_deprecated_read'])
   )
   ```
   
   However I have still some problem to make it works in the flink k8s 
operator, because of beam artifacts resolution. See 
https://github.com/apache/beam/pull/28068


-- 
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]

Reply via email to