tvalentyn commented on issue #26334:
URL: https://github.com/apache/beam/issues/26334#issuecomment-1611692176
that sounds strange. mock_load_job seems to be a method of bigquery client -
do we understand why this method is not called anymore?
If you run the following pipeline (taken from the test):
```
_ = (
p
| beam.Create([{
'columnA': 'value1'
}])
| WriteToBigQuery(
table='project:dataset.table',
schema={
'fields': [{
'name': 'columnA', 'type': 'STRING', 'mode': 'NULLABLE'
}]
},
create_disposition='CREATE_NEVER',
custom_gcs_temp_location="gs://temp_location",
method='FILE_LOADS'))
```
is bigquery_v2_client.BigqueryV2.JobsService.Insert still called ? You can
insert an assertion failure inside
bigquery_v2_client.BigqueryV2.JobsService.Insert to verify.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]