ayberk commented on code in PR #21879:
URL: https://github.com/apache/beam/pull/21879#discussion_r897460941
##########
sdks/java/io/google-cloud-platform/src/main/java/org/apache/beam/sdk/io/gcp/bigquery/BigQueryServicesImpl.java:
##########
@@ -628,6 +628,8 @@ Table getTable(
client
.tables()
.get(ref.getProjectId(), ref.getDatasetId(), ref.getTableId())
+ // avoid retrieving the STORAGE_STATS from the table (which is
the default option)
+ .set("view", "BASIC")
Review Comment:
This would be breaking change for anyone using the extra metadata coming
from STORAGE_STATS. We should add a new flag/option instead and include a
warning about our plan to change the default mode.
--
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]