Abacn commented on issue #26673: URL: https://github.com/apache/beam/issues/26673#issuecomment-1560082398
The cause is the member MutationsBatcher.rows changed its name to MutationsBatcher._rows in https://github.com/googleapis/python-bigtable/pull/722 , so https://github.com/apache/beam/blob/7539ab3580ef0d1ba3d79283962fe953e3a1a0cd/sdks/python/apache_beam/io/gcp/bigtableio.py#L68 is always false. In detail, Beam extends the client `MutationsBatcher` as a `_MutationsBatcher`, which overwrites its member `rows`. In newer version, this member is renamed as private (`_rows`) so iiuc current design would no longer work. Python BigtableIO is broken in google-cloud-bigtable>=2.18.0 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
