You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 30, 2022. It is now read-only.
I'm reading from a BigQuery Authorized View like this: beam.io.Read(beam.io.BigQuerySource(query = "SELECT col1 FROM proj2.dataset2.auth_view1", use_standard_sql=True))
I get the following error:
Error: Message: Access Denied: Dataset proj1:dataset1: The user [email protected] does not have bigquery.datasets.get permission for dataset proj1:dataset1.
proj1:dataset1 has the base table for the view auth_view1 and the service account has access to the authorized view.
According to this issue in DataflowJavaSDK, dataflow seems to be directly executing some metadata query against the underlying table.
Is there a resolution for this issue?
The text was updated successfully, but these errors were encountered:
To follow up on @pselden 's ping, this occurred during a TFX pipeline run. I am to understand that the BigQueryExampleGen component does a query against the ostensible query result for purposes of collecting metadata/typing.
Is it possible that this pathway somehow strips away or replaces the target table (which is a view) with the underlying table?
I'm reading from a BigQuery Authorized View like this:
beam.io.Read(beam.io.BigQuerySource(query = "SELECT col1 FROM proj2.dataset2.auth_view1", use_standard_sql=True))
I get the following error:
proj1:dataset1 has the base table for the view auth_view1 and the service account has access to the authorized view.
According to this issue in DataflowJavaSDK, dataflow seems to be directly executing some metadata query against the underlying table.
Is there a resolution for this issue?
The text was updated successfully, but these errors were encountered: