-
Notifications
You must be signed in to change notification settings - Fork 4.9k
fetch investigation #23433
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
fetch investigation #23433
Changes from 5 commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
c4d4695
test
cirospaciari de84549
test
cirospaciari 57d34d6
[autofix.ci] apply automated fixes
autofix-ci[bot] d4cdc4f
opsie
cirospaciari 17088e2
ok
cirospaciari 4f6551b
dont over report
cirospaciari 0d8bb27
Update HTTPThread.zig
Jarred-Sumner b962a28
Revert "dont over report"
Jarred-Sumner 35551f8
Revert "ok"
Jarred-Sumner File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
Temporary workaround wastes memory until accounting is fixed.
The TODO acknowledges ongoing investigation of
owned_and_donememory issues. The currenttemporary_and_doneapproach keepsscheduled_response_bufferallocated untilclearData()deinits it (line 297), even though the stream has already received (and likely copied) the data. This wastes memory for the duration of the fetch lifecycle.The past review comment identified the root cause: when using
owned_and_done, the memory accounting got confused—likely because ownership was transferred but the buffer was later deinit'ed, causing double-deduction in the memory reporter.To properly re-enable
owned_and_done:memory_reporter.discard()is NOT called when ownership is transferred viamoveFromListscheduled_response_bufferis reset/cleared immediately after the move so it won't be deinit'ed later with already-freed memory🏁 Script executed:
Length of output: 2960
Do not re-enable owned_and_done yet — discard/deinit calls still exist and will double-account or touch moved buffers.
memory_reporter.discard(scheduled_response_buffer.allocatedSlice()) and scheduled_response_buffer deinit/reset are still called in multiple paths (e.g. src/bun.js/webcore/fetch.zig around ~297, ~369, ~476-486, ~882-889, ~930-940, ~1371-1376). Re-enabling bun.ByteList.moveFromList without changes will double-count or access/mutate a moved buffer.
Fix before enabling owned_and_done:
🤖 Prompt for AI Agents