Hi, i found 2 issues with memory. 1) if i put all layers into a LayerGroup - much memory will be taken and Krita will Hang for some time. Here is my video test: http://youtu.be/rqCakd1riBg 2) If i close an image - cache will not be cleared form RAM. Here is my video test: http://youtu.be/yupVuZzw7i8 Here is test file: https://dl.dropboxusercontent.com/u/26887202/Krita/test_merged.kra
Also, it would be cool to clear history cache of the closed document. All the history of the closed document .
Do you mean the undo history?
@Boud yes undo history of the closed document.
I'm pretty sure we clear that, though.
@Boud it seems cache does not clear after closing the document. I did a simple test. I created a new document - i got 2.5Gb of memory Then i painted and created new layers - i got 2.7Gb of memory. After closing the document - i still get 2.7Gb of memory. Here is my video test http://youtu.be/_5TAAv7_las
The memory seems to be lost somewhere in openGL canvas implementation... We have a leak somewhere. https://paste.kde.org/pmltcvlbd
Or fragmented memory again, which would be even worse
Git commit b519932e99079f37f72b97c665de7efade6227dd by Dmitry Kazakov. Committed on 06/01/2015 at 06:47. Pushed by dkazakov into branch 'calligra/2.9'. Add compressing of the update requests queue in KisCanvas2 In some rare circumstances (when there are too many updates pending) the Qt's queue of sigCanvasCacheUpdated() might be overloaded with events. In worst case such queue might occupy up to 900MiB in RAM in chunks of 256x256px. That might shatter not-too-high-end systems, because such memory request is done almost instantly in multithreaded way. So now we have a special compressor object that ensures the update requests are not repeated. It also solves a few performance problems because now we can upload up to 80% (in special cases only, real numbers much lower) less memory into GPU memory. M +1 -0 krita/ui/CMakeLists.txt M +45 -32 krita/ui/canvas/kis_canvas2.cpp M +2 -2 krita/ui/canvas/kis_canvas2.h A +58 -0 krita/ui/canvas/kis_canvas_updates_compressor.cpp [License: GPL (v2+)] A +42 -0 krita/ui/canvas/kis_canvas_updates_compressor.h [License: GPL (v2+)] M +1 -1 krita/ui/canvas/kis_image_pyramid.cpp M +3 -3 krita/ui/canvas/kis_prescaled_projection.cpp M +13 -0 krita/ui/canvas/kis_update_info.cpp M +10 -1 krita/ui/canvas/kis_update_info.h M +2 -0 krita/ui/opengl/kis_opengl_image_textures.cpp http://commits.kde.org/calligra/b519932e99079f37f72b97c665de7efade6227dd
First issue is fixed! Thanks a lot. the only thing is left is Cache Clearing and CacheHistory Clearing after the image was closed. It still takes a lot of memory when image was closed.
There's another thing I forgot to mention yesterday, and that's to do with us mmapping disk space into our address space for our cache. Krita by default uses, iirc, max half your RAM. So, if you've got 32 GB, krita will use 16 GB. If you load more image data into Krita, we'll start creating swap files. The size of those files gets added to the memory size krita seems to occupy, which is why Krita can use more memory than you've got. If you close those images, we don't unmap the swap files, we keep them around. So at the point where this happens, krita's apparent memory consumption never goes below a certain amount. But that doesn't mean Krita is leaking memory either. Not that Krita doesn't leak memory, but that's something you won't see from top. See the attached memcheck log for some real leaks.
Created attachment 91615 [details] leaks
*** Bug 345407 has been marked as a duplicate of this bug. ***
I fixed a lot of smaller memory leaks, closing this bug now. If we have specific memory leaks, we should create new bugs, but not keep a vague meta-bug open all the time.