Streaming buffer - Google BigQuery

后端 未结 2 1613
青春惊慌失措
青春惊慌失措 2021-01-16 21:15

I\'m developing a python program to use like Google Dataflow template.

What I\'m doing is writing the data in BigQuery from PubSub:

 pipeline_options         


        
2条回答
  •  隐瞒了意图╮
    2021-01-16 22:17

    This was the problem:

     beam.io.Write(beam.io.BigQuerySink
    

    It should be:

     beam.io.WriteToBigQuery
    

    The first work well while I was reading from a file, the second while I read from pub/sub

提交回复
热议问题