Bug 342336 - Issues with Memory
Summary: Issues with Memory
Status: RESOLVED FIXED
Alias: None
Product: krita
Classification: Applications
Component: General (show other bugs)
Version: git master (please specify the git hash!)
Platform: Other Microsoft Windows
: NOR normal
Target Milestone: ---
Assignee: Krita Bugs
URL:
Keywords:
: 345407 (view as bug list)
Depends on:
Blocks:
 
Reported: 2014-12-30 14:12 UTC by Paul Geraskin
Modified: 2019-01-31 15:56 UTC (History)
6 users (show)

See Also:
Latest Commit:
Version Fixed In:
Sentry Crash Report:


Attachments
leaks (519.36 KB, text/plain)
2015-03-18 08:12 UTC, Halla Rempt
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Paul Geraskin 2014-12-30 14:12:05 UTC
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
Comment 1 Paul Geraskin 2014-12-30 14:47:01 UTC
Also, it would be cool to clear history cache of the closed document.
All the history of the closed document .
Comment 2 Halla Rempt 2014-12-30 15:10:21 UTC
Do you mean the undo history?
Comment 3 Paul Geraskin 2014-12-30 15:13:47 UTC
@Boud yes undo history of the closed document.
Comment 4 Halla Rempt 2014-12-30 15:17:02 UTC
I'm pretty sure we clear that, though.
Comment 5 Paul Geraskin 2014-12-30 15:28:51 UTC
@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
Comment 6 Dmitry Kazakov 2015-01-05 14:00:18 UTC
The memory seems to be lost somewhere in openGL canvas implementation... We have a leak somewhere.

https://paste.kde.org/pmltcvlbd
Comment 7 Dmitry Kazakov 2015-01-05 14:00:42 UTC
Or fragmented memory again, which would be even worse
Comment 8 Dmitry Kazakov 2015-01-06 06:56:20 UTC
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
Comment 9 Paul Geraskin 2015-01-08 13:08:00 UTC
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.
Comment 10 Halla Rempt 2015-03-18 08:11:40 UTC
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.
Comment 11 Halla Rempt 2015-03-18 08:12:00 UTC
Created attachment 91615 [details]
leaks
Comment 12 Halla Rempt 2015-03-24 18:58:12 UTC
*** Bug 345407 has been marked as a duplicate of this bug. ***
Comment 13 Halla Rempt 2015-08-20 13:06:18 UTC
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.