Replies: 1 comment
-
I've reopened #2528. Ideally next time provide all information at once. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi!
My Java application has a maximum heap size of 1g, but the Linux top command shows that RES continues to grow until the container crashes (the maximum memory allocated by the container is 4g). Through Asynchronous Profiler analysis, it was found that the out of heap memory leakage problem occurs in the GDK.gdk_pixbuf_stave_tobufferv method.Upon analyzing the save method in NativeImageLoader, it was discovered that the memory pointed to by the buffer pointer had not been released. I don't think bufferptr and buffer[0] point to the same memory area. In the end, we solved the problem of out of heap memory leakage by adding OS. g.free(buffer[0])
Thank you very much!

Beta Was this translation helpful? Give feedback.
All reactions