Skip to content
This repository was archived by the owner on Apr 1, 2026. It is now read-only.

Latest commit

 

History

History
18 lines (14 loc) · 1.59 KB

File metadata and controls

18 lines (14 loc) · 1.59 KB

3.0.0 Migration Guide

The v3.0.0 release of google-cloud-bigtable deprecates the previous google.cloud.bigtable.Client class in favor of distinct clients for the two API surfaces, supporting both sync and async calls:

  • Data API:
    • google.cloud.bigtable.data.BigtableDataClient
    • google.cloud.bigtable.data.BigtableDataClientAsync
  • Admin API:
    • google.cloud.bigtable.admin.BigtableInstanceAdminAsyncClient
    • google.cloud.bigtable.admin.BigtableInstanceAdminClient
    • google.cloud.bigtable.admin.BigtableTableAdminClient
    • google.cloud.bigtable.admin.BigtableTableAdminAsyncClient

The deprecated client will remain available as an alternative API surface, which internally delegates calls to the respective new clients. For most users, existing code will continue to work as before. But there may be some breaking changes associated with this update, which are detailed in this document.

If you experience technical issues or have questions, please file an issue.

Breaking Changes