René's URL Explorer Experiment


Title: drain event is unreliable when using cork/uncork with ServerResponse · Issue #60432 · nodejs/node · GitHub

Open Graph Title: drain event is unreliable when using cork/uncork with ServerResponse · Issue #60432 · nodejs/node

X Title: drain event is unreliable when using cork/uncork with ServerResponse · Issue #60432 · nodejs/node

Description: Version v24.10.0 Platform Darwin blah.local 24.6.0 Darwin Kernel Version 24.6.0: Mon Aug 11 21:15:09 PDT 2025; root:xnu-11417.140.69.701.11~1/RELEASE_ARM64_T6041 arm64 Subsystem No response What steps will reproduce the bug? This code sn...

Open Graph Description: Version v24.10.0 Platform Darwin blah.local 24.6.0 Darwin Kernel Version 24.6.0: Mon Aug 11 21:15:09 PDT 2025; root:xnu-11417.140.69.701.11~1/RELEASE_ARM64_T6041 arm64 Subsystem No response What st...

X Description: Version v24.10.0 Platform Darwin blah.local 24.6.0 Darwin Kernel Version 24.6.0: Mon Aug 11 21:15:09 PDT 2025; root:xnu-11417.140.69.701.11~1/RELEASE_ARM64_T6041 arm64 Subsystem No response What st...

Opengraph URL: https://github.com/nodejs/node/issues/60432

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"drain event is unreliable when using cork/uncork with ServerResponse","articleBody":"### Version\n\nv24.10.0\n\n### Platform\n\n```text\nDarwin blah.local 24.6.0 Darwin Kernel Version 24.6.0: Mon Aug 11 21:15:09 PDT 2025; root:xnu-11417.140.69.701.11~1/RELEASE_ARM64_T6041 arm64\n```\n\n### Subsystem\n\n_No response_\n\n### What steps will reproduce the bug?\n\nThis code snippet will occasionally hang while waiting for the second `drain` event on MacOS, and will reliably hang while waiting for the first `drain` event on Linux:\n\n```js\nconst { createServer } = require('node:http');\n\nfunction drainUncorked(target) {\n\treturn new Promise((resolve) =\u003e {\n\t\tconsole.log('drain required:', target.writableNeedDrain);\n\t\ttarget.once('drain', () =\u003e {\n\t\t\tconsole.log('drain complete');\n\t\t\ttarget.cork();\n\t\t\tresolve();\n\t\t});\n\t\ttarget.uncork();\n\t});\n}\n\nconst s = createServer(async (req, res) =\u003e {\n\tconsole.log('request');\n\tres.cork();\n\tconsole.log('1');\n\tif (!res.write('1'.repeat(100))) await drainUncorked(res);\n\tconsole.log('2');\n\tif (!res.write('2'.repeat(1000000))) await drainUncorked(res);\n\tconsole.log('3');\n\tif (!res.write('3'.repeat(100))) await drainUncorked(res);\n\tconsole.log('4');\n\tif (!res.write('4'.repeat(1000000))) await drainUncorked(res);\n\tconsole.log('5');\n\tres.uncork();\n\tres.end();\n\tconsole.log('done');\n});\n\ns.listen(8080, 'localhost', async () =\u003e {\n\tconsole.log('listening');\n\n\tconst res = await fetch('http://localhost:8080');\n\tawait res.text();\n\ts.close();\n});\n```\n\n### How often does it reproduce? Is there a required condition?\n\nThis reproduces intermittently on v24.10.0 on MacOS (tested: 3 failures in 30 attempts; ~10% failure rate), and reliably on v22.20.0 on Linux (specifically a Raspberry Pi running `Linux pi5 6.12.47+rpt-rpi-v8 #1 SMP PREEMPT Debian 1:6.12.47-1+rpt1~bookworm (2025-09-16) aarch64 GNU/Linux`)\n\n### What is the expected behavior? Why is that the expected behavior?\n\nWhen `writableNeedDrain` is `true` (and equivalently if `.write` returns `false`), there should always be a `drain` event emitted once the stream has been consumed. This should apply regardless of whether the `cork` feature is being used (as long as the stream is uncorked once it needs to drain), and any listener registered while `writableNeedDrain` is `true` should be guaranteed to receive this drain event.\n\n### What do you see instead?\n\non macOS, the code above frequently hangs at this point:\n\n\u003e ```\n\u003e listening\n\u003e request\n\u003e 1\n\u003e 2\n\u003e drain required: true\n\u003e drain complete\n\u003e 3\n\u003e 4\n\u003e drain required: true\n\u003e ```\n\nBy using `curl -vvv localhost:8080` instead of the `fetch` example code, I can see that the response content _is_ being drained successfully (i.e. the correct number of '4's are downloaded), so the `drain` event ought to be fired.\n\nTesting by adding additional delays surprisingly makes this _more_ likely to fail. For example, this adapted version of `drainUncorked` which waits for an event loop between each command fails every time on the second drain on macOS:\n\n```js\nfunction drainUncorked(target) {\n\treturn new Promise((resolve) =\u003e {\n\t\tconsole.log('drain required:', target.writableNeedDrain);\n\t\ttarget.once('drain', async () =\u003e {\n\t\t\tconsole.log('drain complete');\n\t\t\tawait new Promise((resolve) =\u003e setTimeout(resolve, 0));\n\t\t\ttarget.cork();\n\t\t\tawait new Promise((resolve) =\u003e setTimeout(resolve, 0));\n\t\t\tresolve();\n\t\t});\n\t\ttarget.uncork();\n\t});\n}\n```\n\n### Additional information\n\nWithout `cork`/`uncork`, the code always succeeds. I have also tested this on a raw socket and confirmed the `drain` event fires correctly there; this code succeeds every time:\n\n```sh\n# run netcat in the background as a destination for the socket\nnc -l 8080\n```\n\n```js\nconst { Socket } = require('node:net');\n\nfunction drainUncorked(target) {\n\treturn new Promise((resolve) =\u003e {\n\t\tconsole.log('drain required:', target.writableNeedDrain);\n\t\ttarget.once('drain', () =\u003e {\n\t\t\tconsole.log('drain complete');\n\t\t\ttarget.cork();\n\t\t\tresolve();\n\t\t});\n\t\ttarget.uncork();\n\t});\n}\n\n(async () =\u003e {\n\tconst s = new Socket();\n\ts.connect(8080, 'localhost');\n\ts.cork();\n\tconsole.log('1');\n\tif (!s.write('1'.repeat(100))) await drainUncorked(s);\n\tconsole.log('2');\n\tif (!s.write('2'.repeat(1000000))) await drainUncorked(s);\n\tconsole.log('3');\n\tif (!s.write('3'.repeat(100))) await drainUncorked(s);\n\tconsole.log('4');\n\tif (!s.write('4'.repeat(1000000))) await drainUncorked(s);\n\tconsole.log('5');\n\ts.uncork();\n\ts.end();\n})();\n```\n\nSince this is unique to ServerResponse, I _suspect_ it is related to the chunk merging behaviour from https://github.com/nodejs/node/pull/50167 (and chunk merging is why I want to use `cork` in the first place)","author":{"url":"https://github.com/davidje13","@type":"Person","name":"davidje13"},"datePublished":"2025-10-27T13:11:18.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":4},"url":"https://github.com/60432/node/issues/60432"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:ffffe661-3527-7b90-a43f-b3042f20fa63
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idB634:31CFDC:AAEFCD:EA0AF5:6A4D50ED
html-safe-nonceb9978d53922f46825429b10c67451d152a7ffa0786d37f715eec321ffa750788
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJCNjM0OjMxQ0ZEQzpBQUVGQ0Q6RUEwQUY1OjZBNEQ1MEVEIiwidmlzaXRvcl9pZCI6IjQwMTY0NjYwNzkxMTkxMzQ5NTciLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmacc4f5dc33bc7077caf1f483ed79b0a368e4c9f870e51d08d3457630669629cdc8
hovercard-subject-tagissue:3556721047
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/nodejs/node/60432/issue_layout
twitter:imagehttps://opengraph.githubassets.com/75bb7b07ec5115fd8a6c12b69abe28f87b4292c8f25627f8154a4c18b734ef06/nodejs/node/issues/60432
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/75bb7b07ec5115fd8a6c12b69abe28f87b4292c8f25627f8154a4c18b734ef06/nodejs/node/issues/60432
og:image:altVersion v24.10.0 Platform Darwin blah.local 24.6.0 Darwin Kernel Version 24.6.0: Mon Aug 11 21:15:09 PDT 2025; root:xnu-11417.140.69.701.11~1/RELEASE_ARM64_T6041 arm64 Subsystem No response What st...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamedavidje13
hostnamegithub.com
expected-hostnamegithub.com
None92571a8944142227b7e19cd10918b1ddd06e5066c1ad5bc7e4769cf6140a87e6
turbo-cache-controlno-preview
go-importgithub.com/nodejs/node git https://github.com/nodejs/node.git
octolytics-dimension-user_id9950313
octolytics-dimension-user_loginnodejs
octolytics-dimension-repository_id27193779
octolytics-dimension-repository_nwonodejs/node
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id27193779
octolytics-dimension-repository_network_root_nwonodejs/node
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release56fc8347865a14e2ec811533d68f929cf4e0ec19
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/nodejs/node/issues/60432#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fnodejs%2Fnode%2Fissues%2F60432
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fnodejs%2Fnode%2Fissues%2F60432
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=nodejs%2Fnode
Reloadhttps://github.com/nodejs/node/issues/60432
Reloadhttps://github.com/nodejs/node/issues/60432
Reloadhttps://github.com/nodejs/node/issues/60432
Please reload this pagehttps://github.com/nodejs/node/issues/60432
nodejs https://github.com/nodejs
nodehttps://github.com/nodejs/node
Please reload this pagehttps://github.com/nodejs/node/issues/60432
Notifications https://github.com/login?return_to=%2Fnodejs%2Fnode
Fork 36k https://github.com/login?return_to=%2Fnodejs%2Fnode
Star 118k https://github.com/login?return_to=%2Fnodejs%2Fnode
Code https://github.com/nodejs/node
Issues 1.4k https://github.com/nodejs/node/issues
Pull requests 958 https://github.com/nodejs/node/pulls
Actions https://github.com/nodejs/node/actions
Projects https://github.com/nodejs/node/projects
Security and quality 0 https://github.com/nodejs/node/security
Insights https://github.com/nodejs/node/pulse
Code https://github.com/nodejs/node
Issues https://github.com/nodejs/node/issues
Pull requests https://github.com/nodejs/node/pulls
Actions https://github.com/nodejs/node/actions
Projects https://github.com/nodejs/node/projects
Security and quality https://github.com/nodejs/node/security
Insights https://github.com/nodejs/node/pulse
#64038https://github.com/nodejs/node/pull/64038
drain event is unreliable when using cork/uncork with ServerResponsehttps://github.com/nodejs/node/issues/60432#top
#64038https://github.com/nodejs/node/pull/64038
https://github.com/davidje13
davidje13https://github.com/davidje13
on Oct 27, 2025https://github.com/nodejs/node/issues/60432#issue-3556721047
#50167https://github.com/nodejs/node/pull/50167
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.