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
.
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
.
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.