-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
Feature Request: Add support for 'Allow Large Results' to BigQuery connector #10474
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
I've made in improvement to the The improvement is to add an argument Note: A destination table is required to enable large results in BigQuery. Google BigQuery documentation for |
Agree with @parthea1 - the reason we didn't add it originally was because we didn't want to support creating tables. Also, we were concerned about how to do this in an intuitive way for users who aren't very familiar with BigQuery. When reading results you are also writing them... I'm not particuarly interested in implementing this feature, but I agree it would be nice to have. |
@jreback Can this be closed, or do you expect a PR for this? See my related PR here: #11209 Issue #13531 is also a duplicate of this. Setting allowLargeResults requires a destination table so you are effectively saving the result to a gbq table. If we decide to support this it would be trivial to save the results to a destination table without setting allowLargeResults. |
moved issue to googleapis/python-bigquery-pandas#15 |
gbq.py currently returns an error if the result of a query is what Google considers to be 'Large'. The google api allows jobs to be sent with a flag to allow large results. It would be very beneficial to provide this as an option in the BigQuery connector.
The text was updated successfully, but these errors were encountered: