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
Domain: github.com
{"@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-controller | voltron_issues_fragments |
| route-action | issue_layout |
| fetch-nonce | v2:ffffe661-3527-7b90-a43f-b3042f20fa63 |
| current-catalog-service-hash | 81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114 |
| request-id | B634:31CFDC:AAEFCD:EA0AF5:6A4D50ED |
| html-safe-nonce | b9978d53922f46825429b10c67451d152a7ffa0786d37f715eec321ffa750788 |
| visitor-payload | eyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJCNjM0OjMxQ0ZEQzpBQUVGQ0Q6RUEwQUY1OjZBNEQ1MEVEIiwidmlzaXRvcl9pZCI6IjQwMTY0NjYwNzkxMTkxMzQ5NTciLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ== |
| visitor-hmac | c4f5dc33bc7077caf1f483ed79b0a368e4c9f870e51d08d3457630669629cdc8 |
| hovercard-subject-tag | issue:3556721047 |
| github-keyboard-shortcuts | repository,issues,copilot |
| google-site-verification | Apib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I |
| octolytics-url | https://collector.github.com/github/collect |
| analytics-location | / |
| fb:app_id | 1401488693436528 |
| apple-itunes-app | app-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/nodejs/node/60432/issue_layout |
| twitter:image | https://opengraph.githubassets.com/75bb7b07ec5115fd8a6c12b69abe28f87b4292c8f25627f8154a4c18b734ef06/nodejs/node/issues/60432 |
| twitter:card | summary_large_image |
| og:image | https://opengraph.githubassets.com/75bb7b07ec5115fd8a6c12b69abe28f87b4292c8f25627f8154a4c18b734ef06/nodejs/node/issues/60432 |
| og:image:alt | 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... |
| og:image:width | 1200 |
| og:image:height | 600 |
| og:site_name | GitHub |
| og:type | object |
| og:author:username | davidje13 |
| hostname | github.com |
| expected-hostname | github.com |
| None | 92571a8944142227b7e19cd10918b1ddd06e5066c1ad5bc7e4769cf6140a87e6 |
| turbo-cache-control | no-preview |
| go-import | github.com/nodejs/node git https://github.com/nodejs/node.git |
| octolytics-dimension-user_id | 9950313 |
| octolytics-dimension-user_login | nodejs |
| octolytics-dimension-repository_id | 27193779 |
| octolytics-dimension-repository_nwo | nodejs/node |
| octolytics-dimension-repository_public | true |
| octolytics-dimension-repository_is_fork | false |
| octolytics-dimension-repository_network_root_id | 27193779 |
| octolytics-dimension-repository_network_root_nwo | nodejs/node |
| turbo-body-classes | logged-out env-production page-responsive |
| disable-turbo | false |
| browser-stats-url | https://api.github.com/_private/browser/stats |
| browser-errors-url | https://api.github.com/_private/browser/errors |
| release | 56fc8347865a14e2ec811533d68f929cf4e0ec19 |
| ui-target | full |
| theme-color | #1e2327 |
| color-scheme | light dark |
Links:
Viewport: width=device-width