Using google cloud dataflow PubSubIO, when does the read of the message get acknowledged?

后端 未结 1 354
醉酒成梦
醉酒成梦 2021-01-07 14:40

Is it possible to delay acknowledgement until the subgraph (everything below the PubSubIO.Read) is successfully processed?

For example, we are streaming

相关标签:
1条回答
  • 2021-01-07 14:56

    The acknowledgement will be made once the message is durable persisted somewhere in the Dataflow pipeline. If you want to make changes to a pipeline without losing in-flight data, use the Update feature instead of Cancel: https://cloud.google.com/dataflow/pipelines/updating-a-pipeline

    0 讨论(0)
提交回复
热议问题