Home > Article > Web Front-end > [Experience Summary] How to troubleshoot memory leaks in Node? Share ideas
How to troubleshoot memory leaks in Node? The following article will summarize the Node memory leak troubleshooting experience for everyone. I hope it will be helpful to everyone!
In the scenario of Nodejs
server-side development, Memory leak
is definitely the most troublesome problem;
But as long as the project continues to be developed and iterated, the problem of memory leak
is absolutely inevitable, it just happens sooner or later. Therefore, systematically mastering effective memory leak
troubleshooting methods is the most basic and core ability of a Nodejs
engineer.
The difficulty in dealing with memory leaks is how to find out among countless functions and functions exactly which function and function in which line and line causes the memory leak.
Unfortunately, there are currently no tools on the market that can easily locate memory leaks, so many engineers who encounter this problem for the first time will feel confused and don't know how to deal with it.
Here I will share my handling ideas based on a case of investigating Memory Leak
in 22 years.
2022 Q4
One day, the R&D user group reported that our R&D platform could not be accessed, and a large number of exceptions occurred in the background. The task is not completed.
The first reaction is that there may be a memory leak. Fortunately, the service is connected to monitoring (prometheus
grafana
). In the grafana
monitoring panel, it is found that the memory has been out of control since 10.00. There has been an apparent data leak. [Related tutorial recommendations: nodejs video tutorial]
##Instructions:
You can call the global method
- process memory
:
rss(Resident Set Size), the resident memory size of the process.
- heapTotal
: The total size of the V8 heap.
- heapUsed
: The size of the V8 heap used.
- external
: V8 off-heap memory usage.
process.memoryUsage()
in
Nodejsto obtain these data, among which
heapTotaland
heapUsedis the usage of V8 heap, which is where JavaScript objects in
Node.jsare stored. And
externalrepresents memory allocated in non-V8 heap, such as C objects.
rssis the total memory usage of the process. Generally, when looking at monitoring data, just focus on the
heapUsedindicator.
In fact, whether it is a global memory leak or a local memory leak, all you need to do is It is to narrow the scope of exclusion as much as possible.
Middleware and
components , this type of memory leak is also the easiest to troubleshoot.
2022 Q4 does not belong to this type, so I have to analyze it according to the idea of local leakage.
Process flow:
Middleware,
Component, or the use of other common logic)
In 2020, when I was working on an SSR application based onNuxt
, the stress test before going online found an application memory leak, which was determined to be global. After the unexpected leak, it took about 30 minutes to successfully locate the problem using the dichotomy method.
The reason for the leak at that time was that we were using
axioson the server side. Later, we unified
axiosand replaced all related ones with
node-fetchand it was solved. Since then, I have switched to
axios PDSTand I will never use
axiosin the
Nodeservice.
middleware or a certain
interface. In a certain
asynchronous task, due to such characteristics, it is also more difficult to troubleshoot. In this case,
heapdump will be done for analysis.
Here I mainly talk about my ideas in this case. I will put the detailed description of heapdump
in the next paragraph,
Heap Dump
: Heap dump , the following parts are all represented byheapdump
, and there are many tools and tutorials for doingheapdump
, such as: chrome, vscode, and the heapdump open source library. There are many online tutorials for the heapdump library I use, which I won’t go into here.
Local memory leak troubleshooting requires a certain amount of memory leak troubleshooting experience. Every time you encounter it, treat it as a test for yourself. After you accumulate more experience, you can troubleshoot memory leak problems later. It will get faster and faster.
This is very important. Knowing this can greatly narrow the scope of the investigation.
This situation often occurs. This iteration has three functions A, B, and C, and a memory leak occurs during the stress test or after going online. Then you can directly lock and small memory leaks will occur among these three new functions. In this case, there is no need to go to production to do heapdump
We can easily analyze and locate the memory leak point locally through some tools.
Due to some special circumstances in our Q4
of 2020, when we found a memory leak, it was difficult to determine when the memory leak first appeared. We can only roughly lock it at 1 within months. This month we have gone through another major version iteration. If we check these functions and interfaces one by one, the cost will be very high.
Therefore, more data need to be combined for further analysis
node
Add--expose-gc
, this parameter will inject the gc()
method globally to facilitate manual triggering of GC to obtain more accurate heap snapshot
dataheapdump
Some points that need special attention when collecting heap snapshot data!
- The Node service will be interrupted during
heapdump
. This time will be around 2 to 30 minutes depending on the size of the server memory at that time. Doingheapdump
in a production environment requires working with operation and maintenance to develop a reasonable strategy. I use two primary and secondarypod
here. When the primarypod
is stopped, business requests will be load balanced to the secondarypod
to ensure production. normal conduct of business. (This process must be a process closely coordinated with operation and maintenance. After all,heapdump
also needs to get theheap snapshot
file in the server through them)- The above is close Printing a snapshot at the critical point is just a vague description. If you have tried it, you will know that if you wait very close to the critical point before printing a memory snapshot, it will not print out. So you need to control yourself to get close to this degree.
- Do it at least 3 times
heapdump
(In fact, I did it 5 times to get the most detailed data)
You need your application service to access monitoring. My application here uses prometheus
grafana
for monitoring, mainly Monitor the following indicators of the service
QPS
(request visits per second), request status, and its access pathART
( Average interface response time) and its access dataNodeJs
VersionAction Handlers
(handle)Event Loop Lag
(Event lag)rss
,heapTotal
, heapUsed
, external
, heapAvailableDetail
##Onlyheapdump
data is not enough ,
heapdumpThe data is very obscure, and even with the support of visualization tools, it is difficult to accurately locate the problem. At this time, I combined some data from
grafanato look at it.
grafana monitoring interface, I can see that the memory has been rising and not coming down, but at the same time, I also noticed that the number of
handles in the service has also skyrocketed. It never falls off.
2. This is when I reviewed the new features in the month when the leak occurred and suspected that the memory leak might be caused by using the bull
message queue component. I first analyzed the relevant application code, but I couldn't see that there was something wrong with it that caused a memory leak.
Combined with the handle leak problem in 1, it seems that you need to manually release certain resources after using bull
. At this time, I am not sure about the specific reason.
3. Then the 5 times of heapdunmp
data were analyzed, and the data was imported into chrome
After comparing the 5 times of heap snapshots, it was found that after each queue creation, TCP , Socket, EventEmitter events are not released. At this point, it is basically certain that it is caused by the irregular use of bull
. In bull
, queues are usually not created frequently, and the system resources occupied by the queue are not automatically released. If necessary, they need to be released manually.
#4. After adjusting the code, the stress test was performed again and the problem was solved.
Tips: The
handle
in Nodejs is a pointer that points to the underlying system resources (such as files, network connections, etc.). Handles allow Node.js programs to access and manipulate these resources without interacting directly with the underlying system. The handle can be an integer or an object, depending on the handle type used by the Node.js library or module. CommonHandle
:
- ##fs.open()
Returned file handle
- net.createServer()
The returned network server handle
- dgram.createSocket()
The returned UDP socket handle
- child_process.spawn()
The returned child process handle
- crypto.createHash()
Returned hash handle
- zlib.createGzip()
Returned compression handle
heap snapshotdata for the first time, and so am I. After reading countless analysis techniques on the Internet and combining them with my own actual practice, I have summarized some more useful techniques. Some basic usage tutorials will not be discussed here. Here we mainly talk about how to view the picture after the data is imported into
chrome;
When looking at this view, you will generally first select Retained Size, and then observe the size and number of objects. Experienced engineers can quickly determine that the number of certain objects is abnormal. In this view, in addition to caring about some objects defined by yourself, Some objects prone to memory leaks also need attention, such as:
view , If the problem cannot be located, we usually use the Comparison
view. Through this view, we can compare the number of objects in the two heap snapshots and the changes in the memory occupied by the objects;
Through this information, we can judge the values of objects in the heap and memory changes after a period of time (certain operations). Through these values, we can find some abnormal objects. The name attributes or functions of these objects can narrow the scope of our memory leak investigation. Select two heap snapshots in the
view and compare between them. You can see which objects were added between two heap snapshots, which objects were reduced between two heap snapshots, and which objects changed in size. Comparison
Views also allow viewing relationships between objects, as well as object details such as type, size and reference count. With this information, you can understand which objects are causing the memory leak.
lru-cache
Storing too much will result in insufficient memory. It is recommended to use redis
instead of lru-cache
The service needs access monitoring to facilitate the first time determination of the problem type
Determine whether the memory leak is global or local
Use the dichotomy method to quickly troubleshoot and locate global memory leaks
Local memory leaks
Don’t be afraid when you encounter memory leak problems. Accumulate more experience in troubleshooting memory leak problems. The more experience you have in handling memory leak problems, the easier it will be to find them very quickly. After each solution, do a review and summary and look back again
Heap snapshot
The data is conducive to accumulating relevant experience faster
For more node-related knowledge, please visit: nodejs tutorial!
The above is the detailed content of [Experience Summary] How to troubleshoot memory leaks in Node? Share ideas. For more information, please follow other related articles on the PHP Chinese website!