liferoad commented on PR #28064:
URL: https://github.com/apache/beam/pull/28064#issuecomment-1684223410
Tested this locally from another GCP project:
```
import apache_beam as beam
with beam.Pipeline() as p:
# Read the table rows into a PCollection.
rows = (
p
| "read"
>> beam.io.ReadFromBigQuery(
table="apache-beam-testing.samples.weather_stations",
method="DIRECT_READ"
)
| beam.Map(print)
)
```
I was able to access the table and got all the rows.
--
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]