-
Notifications
You must be signed in to change notification settings - Fork 30.3k
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
HTTP2 server memory explodes and terminated #52952
Comments
@nodejs/http2 |
Can you provide steps to reproduce? We often need a reproducible example, e.g. some code that allows someone else to recreate your problem by just copying and pasting it. If it involves more than a couple of different file, create a new repository on GitHub and add a link to that. |
These were the commits in v20.13.0 that showed the problem 3bcd68337e] - http2: fix excessive CPU usage when using allowHTTP1=true (Eugene) #52713 |
@mcollina I will do a further narrowing down and try to get a minimal repro later, was expecting some hint so I can reach it easier (as I've already spent a whole day on this issue so have to deprioritize it for now). |
@vilicvane, we started using http2 for calling one of our third party vendors, we are calling ~150-200K request per hour. Since we moved those calls to http2 via got and http2-wrapper, we started seeing pod crashes/restarts every once in a while, and it seems to have the same pattern as described in this issue, a sudden spike in cpu and memory followed by a restart. |
Version
20.13.0 and later, including latest 22.x
Platform
Linux hostname 6.5.0-28-generic #29~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Thu Apr 4 14:39:20 UTC 2 x86_64 x86_64 x86_64 GNU/Linux
Subsystem
No response
What steps will reproduce the bug?
I may need some help to narrow down the problem as it happens sporadically.
Currently I only know that it happens after:
pushStream
to the client (and callback called).I have tested with versions 20.10.0, 20.11.0, 20.12.0 and 20.12.1 and there's no problem. But since 20.13.0 the issue appears.
How often does it reproduce? Is there a required condition?
No response
What is the expected behavior? Why is that the expected behavior?
No response
What do you see instead?
I tried to use
--inspect
and pause on hanging (also the memory usage increases rapidly to several gigabytes and then terminated by OS I think) but no luck.And tried
--prof
there's part of that looks suspicious:I am not a security guy but at first I thought it's something related to HTTP2 rapid reset attack and spent a whole day debugging towards that. At the end of the day I decided to downgrade Node.js and found out the older version just works.
Additional information
Also the HTTP2 server is on internet but generally only used by myself. Though I do saw a Russian IP connecting it periodically and that's also why I thought it was an attack.
But it also happens with only my own clients connected.
The text was updated successfully, but these errors were encountered: