-
Notifications
You must be signed in to change notification settings - Fork 61
Open
Labels
api: bigtableIssues related to the googleapis/python-bigtable API.Issues related to the googleapis/python-bigtable API.priority: p3Desirable enhancement or fix. May not be included in next release.Desirable enhancement or fix. May not be included in next release.type: feature request‘Nice-to-have’ improvement, new feature or different behavior or design.‘Nice-to-have’ improvement, new feature or different behavior or design.
Milestone
Description
From go/bigtable_legacy_deprecation:
Old API
- The Table class exposed a read_row and read_rows method
read_row simply calls read_rows under the hood, with a single row_key argument- Read_rows creates and returns PartialRowsData instance, which can be iterated to return PartialRowData (no s) instances for each row in the query
- The row merging logic is all contained within PartialRowsData, using internal _RowMerger and _ReadRowsRequestManager instances
Replacement
- We can replace the PartialRowsData class with a new subclass, that instead delegates row merging logic to the _ReadRowsOperation class provided by the new data client
Metadata
Metadata
Assignees
Labels
api: bigtableIssues related to the googleapis/python-bigtable API.Issues related to the googleapis/python-bigtable API.priority: p3Desirable enhancement or fix. May not be included in next release.Desirable enhancement or fix. May not be included in next release.type: feature request‘Nice-to-have’ improvement, new feature or different behavior or design.‘Nice-to-have’ improvement, new feature or different behavior or design.