ENH: make use_bqstorage_api True by default #293
Labels
api: bigquery
Issues related to the googleapis/python-bigquery-pandas API.
type: feature request
‘Nice-to-have’ improvement, new feature or different behavior or design.
It’ll give people the best experience if the fast method is also the default method. Since this requires an additional API to be enabled, it’s technically a breaking change. Similar to how we handled the switch to standard SQL in #195, I propose we complete this work in two phases:
use_bqstorage_api
to the global context object with a value ofFalse
. It is overridable by settingpandas_gbq.context.use_bqstorage_api = True
. If the default value ofuse_bqstorage_api=None
is passed intoread_gbq
, it uses the default value from the global context.pandas.read_gbq
also sends downNone
foruse_bqstorage_api
if not supplied.)True
. (Possibly after the BigQuery Storage API goes GA, though maybe sooner.)The text was updated successfully, but these errors were encountered: