{{ message }}
This repository was archived by the owner on Mar 31, 2026. It is now read-only.
feat: make flush size to be configurable#1677
Merged
Merged
Conversation
…torage into bidi_writes_checksum
Contributor
Contributor
There was a problem hiding this comment.
Code Review
This pull request introduces a configurable flush size for the AsyncAppendableObjectWriter, which is a valuable enhancement. The implementation correctly introduces writer_options to pass the configuration and adds necessary validation logic. The system tests for the new functionality are also a great addition. My review includes a few suggestions to improve the code further, primarily by adding unit tests for the new validation logic to ensure its correctness and prevent regressions, along with some minor code cleanup and improvements to the validation code itself.
Collaborator
Author
|
/gcbrun(df42160) |
suni72
reviewed
Dec 18, 2025
…rage into configurable_flush_interval
Collaborator
Author
|
/gcbrun(8f3c2be) |
suni72
previously approved these changes
Dec 19, 2025
…igurable_flush_interval
Collaborator
Author
suni72
approved these changes
Dec 19, 2025
vchudnov-g
added a commit
that referenced
this pull request
Jan 13, 2026
PR created by the Librarian CLI to initialize a release. Merging this PR will auto trigger a release. Librarian Version: v0.7.0 Language Image: us-central1-docker.pkg.dev/cloud-sdk-librarian-prod/images-prod/python-librarian-generator@sha256:8e2c32496077054105bd06c54a59d6a6694287bc053588e24debe6da6920ad91 <details><summary>google-cloud-storage: 3.8.0</summary> ## [3.8.0](v3.7.0...v3.8.0) (2026-01-13) ### Features * expose persisted size in mrd (#1671) ([0e2961b](0e2961be)) * implement "append_from_file" (#1686) ([1333c95](1333c956)) * compute chunk wise checksum for bidi_writes (#1675) ([139390c](139390cb)) * flush the last chunk in append method (#1699) ([89bfe7a](89bfe7a5)) * add write resumption strategy (#1663) ([a57ea0e](a57ea0ec)) * add bidi stream retry manager. (#1632) ([d90f0ee](d90f0ee0)) * make flush size configurable (#1677) ([f7095fa](f7095faf)) ### Bug Fixes * no state lookup while opening bidi-write stream ([2d5a7b1](2d5a7b16)) * no state lookup while opening bidi-write stream (#1636) ([2d5a7b1](2d5a7b16)) * close write object stream always (#1661) ([4a609a4](4a609a4b)) * add system test for opening with read_handle (#1672) ([6dc711d](6dc711da)) </details> --------- Co-authored-by: Victor Chudnovsky <vchudnov@google.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

feat: make flush size to be configurable