-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Memory leak with 4.1.0 5.1.0 and 5.4.0 #1510
Comments
hi @cjbj, can you have a look at this issue |
will take a look at this. Thx. |
Hi @pvenkatraman were you able to simulate this ? |
Hi, any news for this issue? We are having the same problem with our project. |
Working on this, will update. Thx |
Here is some info from ODPI during memory allocation:
We are having the same memory behaviour as @devpratishthan (rss not releasing) |
News about this fix? |
I saw email from @pvenkatraman last night that he was still debugging. Has anyone checked whether this is a Node.js garbage collection "thing"? @FacundoCerezo @LaeraFelipe what are your testcases? |
Hi @cjbj , One input from our side, when fetchRows is set to 1, the continuous memory increase has come down. But still we could see sudden spikes post the run. |
Did you have a testcase that invokes parallel calls on the pool without using a Promise? Does it reproduce for you with webapp.js? |
In Our actual use case we use this library using a wrapper from loopback. Our application is hosted where the requests may land parallely. That is the reason we have opted for connection pool and yes they will run parallely queries on the same table. Here I have written a dummy application to simulate the same. And that is the reason I have used for loops and promises to acheive this parallel processing and to remove any overhead of the other application code. |
Hi, I don't have a test case to share yet. I'll try to make one soon. We've already made v8 memory analysis but it doesn't look like it's a heap problem. Instead, we suspect it's happening within node-oracle native bindings/native library (we can check that using We didn't find any change whether we used promises or not. In the meantime, we found a correlation with #1194 and we replaced getRows() with a getRow() loop as a workaround within our code (as mentioned in #1194 (comment)), running on node 16. This was enough to prevent the memory leak from happening but sounds like unexpected behavior worth checking. |
Working on this, will update soon. Thx |
Hi few comments:
With these changes I notice the rss being stable for some iterations before getting bumped up. Let me know your observations. Thanks |
Any updates from anyone experiencing this? |
I dont know if this is any help I have a server/pod I just called a lot with 4 queries streaming 55k/20 ish columns rows to client Update: pushed it a little more, but looks like RSS did go down a little |
Hi, we tried @pvenkatraman changes. There were few syntax issues. we fixed it but getting the following exception
Error: DPI-1010: not connected This is coming after changing the following lines If we use the one suggested by you i.e await result.rows.FIELD219.destroy(); |
@devpratishthan can you upload your modified script, I can take a look. result.rows[row].FIELD219.destroy () -> destroy () can only be called on LOB columns. And you will have to know which columns are CLOB columns in your case by name as your OUTPUT type is OBJECT. You can add a check for null before calling destroy to avoid "cannot read properties of undefined" DPI-1010 - at that context the connection is not established. If you can provide me the script I can take a look |
Hi, The changes I have made is const result = await connection.execute(sql, binds, options);
And next is Modified checkMemory Func. |
This is the console log result.. So all are having a lob |
Looking at the sample, will respond. Thx |
hi @pvenkatraman any update on this ?? |
@devpratishthan still working on this, no update yet. |
Hi @pvenkatraman @cjbj any update on this ?? |
Ran the sample again and again. On Windows/Linux also. rss: 61890560, heapTotal: 17879040, heapUsed: 11086400, external: 453952 The RSS memory seem to be stabilizing after some time and is not increasing exponentially. |
Hi @pvenkatraman that increase is not acceptable right? If it keep increasing it can reach OOM right? |
@revoorunischal Can you let us know what is the 'increase' you are talking about? From @pvenkatraman's comment on Oct 19, 2022, |
Hi @sharadraju I retested the sample attached on the first comment with versions 4.1.0,5.4.0 and 5.5.0 in all 3 even now the rss memory keeps increasing and never comes down. I ran the code for 15 mins+ |
Are you still using Node v18.1.0? The latest release is v18.13.0 and there are a number of memory leaks corrected in the releases between v18.1.0 and v18.13.0! I just tried your code with v18.12.1 and I don't see any memory leak. Please upgrade your version of Node and try again, please! |
FYI, I had to modify your example to change the bind value to the value ['1234'], as that was what was inserted in the table using your script
That value differed only slightly over the course of the run. Interestingly, I tried it with v18.1.0 as well and didn't notice any significant differences -- so perhaps something else is contributing to this? Please double check everything and repost your example if needed. Thanks! |
Hi . |
@revoorunischal since we can't reproduce the problem with the current testcase, perhaps you can create another testcase (including info about running it)? |
@cjbj if you can schedule a call we can run and show the issue which is coming. |
The memory profile with node-oracledb 6.0 will have changed, not only because of the refactoring to use less C code in general, but because the Thin mode doesn't use internal worker threads (so more is done in the main Node.js thread if you use this mode - which might mean you need to re-jig deployments and handle your own scale-out instead of simply increasing UV_THREADPOOL_SIZE and bumping up pooMin). See if this issue can be reproduced with the new version. |
@revoorunischal @devpratishthan Are you still seeing the memory leaks with node-oracledb 6.3 version? |
I will close this issue as I have not seen a response/activity on this for some time. Please re-open this issue, if you are still facing it. |
What versions are you using?
We tried using 4.1.0,5.1.0 and 5.4.0 and all had the memory leak.
platform linux
version v18.1.0
arch x64
version string 5.4.0
oracleclient 19.8.0.0.0
oracle DB: 19.0.0.0.ru-2021-10.rur-2021-10.r1
Is it an error or a hang or a crash?
It crashes after a while with OOM
What error(s) or behavior you are seeing?
When we use a connection pool(max 30 min 10) and if we are fetching records from a table which has more than 250+ columns where few are clobs. The memory keeps on increasing and this memory increase is in RSS. This memory never comes down and the app crashes with OOM after a certain time. We were initially using the loopback 3 framework with oracle client, but we were able to simulate the same using the default connectionPool code given in your sample files (https://github.com/oracle/node-oracledb/blob/main/examples/connectionpool.js)
Include a runnable Node.js script that shows the problem.
oracleLeak.zip
This has insert script and create table scripts. Please run them first and then modify sample.js for DB connection.
We tested this with min pool as 10, max pool as 30 and UV_THREADPOOL_SIZE as 30
The text was updated successfully, but these errors were encountered: