Chris Johnston
Chris Johnston

Reputation: 361

Apache beam BigQuery view

In GCP BigQuery, you can create a view of a table. Documentation here: https://cloud.google.com/bigquery/docs/views.

I would like to know whether it is possible to create a view in BigQuery via Apache Beam, it is not in the documenation https://beam.apache.org/documentation/io/built-in/google-bigquery/ if so.

Upvotes: 0

Views: 246

Answers (1)

chamikara
chamikara

Reputation: 2024

You cannot create a BQ View using Apache Beam. But you can read data represented by a View using a Query.

Upvotes: 0

Related Questions