Implement chunked file transfer protocol for improved file handling#278
Open
llogen wants to merge 2 commits into
Open
Implement chunked file transfer protocol for improved file handling#278llogen wants to merge 2 commits into
llogen wants to merge 2 commits into
Conversation
da4870b to
683e6f3
Compare
8662a36 to
f2d262c
Compare
f2d262c to
225cdeb
Compare
d1a5840 to
c32ba5a
Compare
5d93a68 to
0f14b5e
Compare
3a012ca to
87fb73a
Compare
This change replaces the simple full-file transfer mechanism with a robust chunked protocol that supports: - Concurrent uploads/downloads with unique transfer IDs - 1MB chunk streaming to support large files - Transfer state management with acknowledgments - Round-robin scheduling for fair resource usage during concurrent transfers Signed-off-by: llogen <christoph.lange@blindspot.software>
Signed-off-by: llogen <christoph.lange@blindspot.software>
87fb73a to
a70443c
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.
Replaces the one-shot full-file transfer with a robust chunked protocol.
All stream sends are serialized (connect forbids concurrent
Send), andin-flight transfers are torn down on disconnect so shutdown can't hang.