nbali commented on pull request #15951: URL: https://github.com/apache/beam/pull/15951#issuecomment-1028039066
Well I tested with Dataflow and the job was always initalized as a streaming pipeline and it never stops, and yes I don't have any other source. It's literally a simple KafkaIO.read. At one point (around the Kafka read) the bounded PCollection becomes unbounded according to this: https://github.com/apache/beam/blob/cc0b2c5f3529e1896778dddeb6c740d40c7fb977/runners/google-cloud-dataflow-java/src/main/java/org/apache/beam/runners/dataflow/DataflowRunner.java#L1467-L1483 Maybe the DataflowRunner is wrong in calling this? ```java if (containsUnboundedPCollection(pipeline)) { options.setStreaming(true); } ``` -- 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]
