| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [View Raw Code] [Original HTTPS Page] |
Some of the previously optional dependencies are now required in 3.x versions of the library, namely google-cloud-bigquery-storage (minimum version 2.0.0) and pyarrow (minimum version 3.0.0).
The behavior of some of the package "extras" has thus also changed:
The pandas extra now requires the db-types package.
The bqstorage extra has been preserved for comaptibility reasons, but it is now a no-op and should be omitted when installing the BigQuery client library.
Before:
$ pip install google-cloud-bigquery[bqstorage]
After:
$ pip install google-cloud-bigquery
The bignumeric_type extra has been removed, as BIGNUMERIC type is now automatically supported. That extra should thus not be used.
Before:
$ pip install google-cloud-bigquery[bignumeric_type]
After:
$ pip install google-cloud-bigquery
The library is now type-annotated and declares itself as such. If you use a static type checker such as mypy, you might start getting errors in places where google-cloud-bigquery package is used.
It is recommended to update your code and/or type annotations to fix these errors, but if this is not feasible in the short term, you can temporarily ignore type annotations in google-cloud-bigquery, for example by using a special # type: ignore comment:
from google.cloud import bigquery # type: ignoreBut again, this is only recommended as a possible short-term workaround if immediately fixing the type check errors in your project is not feasible.
The auto-generated parts of the library has been removed, and proto-based types formerly found in google.cloud.bigquery_v2 have been replaced by the new implementation (but see the section below).
For example, the standard SQL data types should new be imported from a new location:
Before:
from google.cloud.bigquery_v2 import StandardSqlDataType
from google.cloud.bigquery_v2.types import StandardSqlField
from google.cloud.bigquery_v2.types.standard_sql import StandardSqlStructTypeAfter:
from google.cloud.bigquery import StandardSqlDataType
from google.cloud.bigquery.standard_sql import StandardSqlField
from google.cloud.bigquery.standard_sql import StandardSqlStructTypeThe TypeKind enum defining all possible SQL types for schema fields has been renamed and is not nested anymore under StandardSqlDataType:
Before:
from google.cloud.bigquery_v2 import StandardSqlDataType
if field_type == StandardSqlDataType.TypeKind.STRING:
...After:
from google.cloud.bigquery import StandardSqlTypeNames
if field_type == StandardSqlTypeNames.STRING:
...The Client.create_job method no longer removes the destination table from a query job's configuration. Destination table for the query can thus be explicitly defined by the user.
The default dtypes returned by the to_dataframe method have changed.
In the absence of schema information, pandas columns with naive datetime64[ns] values, i.e. without timezone information, are recognized and loaded using the DATETIME type. On the other hand, for columns with timezone-aware datetime64[ns, UTC] values, the TIMESTAMP type is continued to be used.
The types of several Model properties have been changed.
For compatibility reasons, the legacy proto-based types still exists as static code and can be imported:
from google.cloud.bigquery_v2 import Model # a sublcass of proto.MessageMind, however, that importing them will issue a warning, because aside from being importable, these types are not maintained anymore. They may differ both from the types in google.cloud.bigquery, and from the types supported on the backend.
If you maintain a library or system that needs to support both google-cloud-bigquery version 2.x and 3.x, it is recommended that you detect when version 2.x is in use and convert properties that use the legacy protocol buffer types, such as Model.training_runs, into the types used in 3.x.
Call the to_dict method on the protocol buffers objects to get a JSON-compatible dictionary.
from google.cloud.bigquery_v2 import Model
training_run: Model.TrainingRun = ...
training_run_dict = training_run.to_dict()The 2.0 release of the google-cloud-bigquery client drops support for Python versions below 3.6. The client surface itself has not changed, but the 1.x series will not be receiving any more feature updates or bug fixes. You are thus encouraged to upgrade to the 2.x series.
If you experience issues or have questions, please file an issue.
WARNING: Breaking change
The 2.0.0 release requires Python 3.6+.
The 2.0.0 release requires BigQuery Storage >= 2.0.0, which dropped support for v1beta1 and v1beta2 versions of the BigQuery Storage API. If you want to use a BigQuery Storage client, it must be the one supporting the v1 API version.
WARNING: Breaking change
Generated GAPIC enum types have been moved under types. Import paths need to be adjusted.
Before:
from google.cloud.bigquery_v2.gapic import enums
distance_type = enums.Model.DistanceType.COSINEAfter:
from google.cloud.bigquery_v2 import types
distance_type = types.Model.DistanceType.COSINE| Back | FazBrowse Home | New Git URL |