fix: stream multipart upload in UploadArtifact to avoid unbounded mem…#372
Open
abhaygoudannavar wants to merge 1 commit into
Open
fix: stream multipart upload in UploadArtifact to avoid unbounded mem…#372abhaygoudannavar wants to merge 1 commit into
abhaygoudannavar wants to merge 1 commit into
Conversation
…ory allocation Replace bytes.Buffer with io.Pipe() in UploadArtifact so multipart form data is streamed directly from disk to the HTTP request. This keeps memory usage constant regardless of artifact file size, preventing OOM kills on constrained CI/CD runners. Also replaces panic() calls with proper error returns in the upload path. Fixes microcks#324 Signed-off-by: abhaygoudannavar <abhaysgoudnvr@gmail.com>
Author
|
@Harsh4902 i worked on #324 any changes is needed in the pr? |
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.
Description
bytes.Bufferwithio.Pipe()streaming inUploadArtifact(pkg/connectors/microcks_client.go). Multipart form data is now written in a background goroutine and streamed directly from disk to the HTTP request, keeping memory usage constant regardless of artifact file size.panic()calls with properfmt.Errorferror returns in the upload path, matching the style of recent fixes (e.g.,f9f282c).TestUploadArtifactStreamsWithoutBufferingtest (pkg/connectors/microcks_client_test.go) covering file content integrity, filename,mainArtifactfield, and HTTP response handling.Test results:
$ go test ./pkg/connectors/... ok github.com/microcks/microcks-cli/pkg/connectors 0.022s
Related issue(s)
Fixes #324