Conversation
whowes
force-pushed
the
whowes/resumable-upload-chunk-retry
branch
from
September 17, 2026 22:08
809615f to
d186a68
Compare
Contributor
There was a problem hiding this comment.
Code Review
This pull request introduces chunk-level retry capabilities for resumable uploads. It adds ChunkAttemptCallable to handle individual chunk transmission attempts, integrates it with ScheduledRetryingExecutor and RetryAlgorithm inside ResumableUploadChunkCoordinator, and adds comprehensive unit tests. A critical issue was identified in ChunkAttemptCallableTest.java where a missing import for org.mockito.ArgumentCaptor will cause compilation failures.
Comment on lines
+38
to
+40
| import static org.mockito.Mockito.when; | ||
|
|
||
| import com.google.api.core.ApiFuture; |
Contributor
There was a problem hiding this comment.
whowes
added this pull request to stack #14429
September 17, 2026 22:16
whowes
force-pushed
the
whowes/resumable-upload-chunk-retry
branch
from
September 18, 2026 02:23
d186a68 to
cbbeb54
Compare
whowes
force-pushed
the
whowes/resumable-upload-chunk-retry
branch
2 times, most recently
from
September 18, 2026 03:21
7c209f2 to
ce8a9f5
Compare
whowes
force-pushed
the
whowes/resumable-upload-chunk-retry
branch
from
September 18, 2026 15:04
ce8a9f5 to
896cd2f
Compare
Wraps chunk uploads in a retrying executor to retry transient network and server errors using exponential backoff. Retries individual chunks without restarting the entire upload session.
whowes
force-pushed
the
whowes/resumable-upload-chunk-retry
branch
from
September 19, 2026 01:36
896cd2f to
41d94b6
Compare
|
|
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 join this conversation on GitHub.
Already have an account?
Sign in to comment
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.





Wraps chunk uploads in a retrying executor to retry transient network and server errors using exponential backoff. Retries individual chunks without restarting the entire upload session.