tamannakakkar93 opened a new pull request, #34249:
URL: https://github.com/apache/beam/pull/34249

   When calling BigQuery's tables.get method, today, we are retrieving FULL 
details (which is the default). However, this is expensive and is resulting in 
customers hitting Quota issues. BigQuery engineering team is open to relaxing 
this Quota if we retrieve using "BASIC" enum.
   
   https://cloud.google.com/bigquery/docs/reference/rest/v2/tables/get
   
   
[beam/sdks/python/apache_beam/io/gcp/bigquery.py](https://github.com/apache/beam/blob/9a1e7bf4cd399177e5de7fe28bad741cade452a5/sdks/python/apache_beam/io/gcp/bigquery.py#L902-L903)
   
   Lines 902 to 903 in 
[9a1e7bf](https://github.com/apache/beam/commit/9a1e7bf4cd399177e5de7fe28bad741cade452a5)
   
    table = bq.get_table( 
        table_ref.projectId, table_ref.datasetId, table_ref.tableId) 
   
[beam/sdks/python/apache_beam/io/gcp/bigquery_tools.py](https://github.com/apache/beam/blob/9a1e7bf4cd399177e5de7fe28bad741cade452a5/sdks/python/apache_beam/io/gcp/bigquery_tools.py#L565)
   
   Line 565 in 
[9a1e7bf](https://github.com/apache/beam/commit/9a1e7bf4cd399177e5de7fe28bad741cade452a5)
   
    response = self.client.tables.Get(request)


-- 
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: github-unsubscr...@beam.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to