-
Notifications
You must be signed in to change notification settings - Fork 4.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BigQuery destination runs into 404 error in STANDARD
mode (reproduce the error)
#19998
Comments
Related OC issue: https://github.com/airbytehq/oncall/issues/1134 |
Notes from grooming: it is not yet clear what is causing this. Dataset location could be it, but need to confirm. |
STANDARD
modeSTANDARD
mode (reproduce the error)
I finally managed to reproduce this issue. Basically, it's related to #20561 and #21030 In our case, we check the connection against the provided config (i.e. provided schema), but then we set the "Mirror Source Structure". So basically we will try to write data to the schema that we haven't checked. So steps to reproduce this particular issue:
Actual result: |
OnCall issues https://github.com/airbytehq/oncall/issues/1134, https://github.com/airbytehq/oncall/issues/1271
A connection configured to use
STANDARD
loading method passedCHECK
but failed with an error that indicates that dataset either does not exist or is not located in the specified region:the other strange behavior that I noticed in this case is that the connector successfully created a table before attempting to load data. Looking at the destination code, one suspicion I have is that the connector should specify dataset location when creating the table in
STANDARD
mode.The text was updated successfully, but these errors were encountered: