Apache Beam Pipeline Query Table After Writing Table

前端 未结 1 477
情歌与酒
情歌与酒 2021-01-07 06:55

I have a Apache Beam/Dataflow pipeline that is writing results to a BigQuery table. I would then like to query this table for a separate portion of the pipeline. However, I

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

    The use case "do something after a BigQuery write is complete" is not supported by Beam currently. The only workaround is to run separate pipelines: have your main program be: run the pipeline that writes to BigQuery; wait for the pipeline to finish; run another pipeline that reads from BigQuery.

    This is a very frequently requested feature and we're beginning to design this support (more generally, upgrading various IO writes to support sequencing operations after them), but I don't know when we'll be done.

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