BigQuery : Bulk update Table using DML queries

101 Views Asked by At

I'm using query API from com.google.cloud.bigquery.BigQuery to perform update operations Ref.

Is there a way to perform bulk update to BigQuery Table similar to insertAll or writeJsonStream.

1

There are 1 best solutions below

0
On

You may try and consider as a workaround wherein you will use a for loop to loop into your query() until all your needed update have been successfully executed.