Bug 255858 - memory leak (?) while thumbnailing very large files!
Summary: memory leak (?) while thumbnailing very large files!
Status: RESOLVED FIXED
Alias: None
Product: digikam
Classification: Applications
Component: Thumbs-Image (show other bugs)
Version: 1.5.0
Platform: Compiled Sources Linux
: NOR crash
Target Milestone: ---
Assignee: Digikam Developers
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-11-02 09:15 UTC by krzysztof pijarski
Modified: 2012-06-27 10:29 UTC (History)
1 user (show)

See Also:
Latest Commit:
Version Fixed In: 2.0.0


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description krzysztof pijarski 2010-11-02 09:15:30 UTC
Version:           1.5.0 (using KDE 4.5.1) 
OS:                Linux

When I open a folder with very large files (>600 Mb), and digikam starts producing the thumbnails, the program eats up all memory resources in no time, forcing everything else to swap and thus rendering the system unusable. Ultimately, the thumbnails are generated but it takes forever, and, as I said, the system is totally unusable. I am no programmer but I think there is something wrong with the thumbnail generation routine. Thanks!

Reproducible: Always

Steps to Reproduce:
Put a large file in a folder (>600 Mb; mine are actually 800 Mb & 1 Gb) and go to that folder for the program to thumbnail them.

Actual Results:  
Digikam eats all memory resources, rendering the system unusable.

Expected Results:  
Digikam should manage the available memory efficiently, not causing everything else to hang, and choke on the data itself (as I said above, the process takes forever)

The same happens in current svn
Comment 1 caulier.gilles 2010-11-02 10:18:47 UTC
Can you run digiKam under valgrind and post the console trace here.

The command line to use is this one :

valgrind --tool=memcheck --leak-check=full --error-limit=no digikam

Gilles Caulier
Comment 2 Marcel Wiesweg 2010-11-02 10:24:26 UTC
As we dont support tiles, the only solution would be to refuse thumbnailing such a large image. Assuming the file is compressed and it's not a JPG of PGF, you will need a multiple of the file size in memory to load the image.
Comment 3 krzysztof pijarski 2010-11-02 11:02:02 UTC
ok, so there is the answer, thanks. it is not a memory leak then. why did you decide against tiles? the files in question are indeed compressed tif's so thumbnailing one of those needs multiple Gb of memory. I think that in such situations it is critical to disable thumbnailing then, although this is something that is hard to come at - what about somebody who has 1 Gb of RAM (I have 4), and has files, of, say 250 Mb? This person will be in trouble as I am.

So if you do not plan to use tiles, would there be a possibility to use the embedded thumbnail (that GIMP generates, for example?). I haven't tried in a long time, but digikam has always had problems with embedding previews in tif files.
Comment 4 caulier.gilles 2010-11-24 09:13:37 UTC
digiKam 1.6.0 is out:

http://www.digikam.org/drupal/node/550

Please update and check if this entry still valid.

Thanks in advance

Gilles Caulier
Comment 5 krzysztof pijarski 2010-11-27 10:47:56 UTC
Gilles,

I tried the svn version yesterday and nothing changed - I threw the biggest files I have at it (two 1Gb 16bpp files) and it took 20+ minutes to render one thumbnail, with the system totally unusable; digikam itself took up to 2.8 Gb of memory, and the whole process took all my swap space (4 Gb) and all my RAM (4 Gb)...

Thanks!

krzysztof
Comment 6 Marcel Wiesweg 2011-01-18 16:57:20 UTC
Proposal:
There is a class KMemoryInfo which we can use to provide information about system memory (Linux and Windows atm):
http://reviewboard.kde.org/r/2536/
It was not taken into kdelibs, so we will need to copy the source.

With this code we could check before loading a huge file if enough memory is available (and btw, also adjust our cache size which has become small for megapixel images of today cameras).

Gilles?
Comment 7 Marcel Wiesweg 2011-01-26 21:36:05 UTC
SVN commit 1217348 by mwiesweg:

Check available memory before attempting large allocations.

BUG: 255858



 M  +2 -1      NEWS  
 M  +35 -0     libs/dimg/loaders/dimgloader.cpp  
 M  +5 -3      libs/dimg/loaders/dimgloader.h  


WebSVN link: http://websvn.kde.org/?view=rev&revision=1217348
Comment 8 Marcel Wiesweg 2011-01-26 21:36:44 UTC
SVN commit 1217349 by mwiesweg:

Missing commit part

CCBUG: 255858


 M  +3 -7      dimg.cpp  
 M  +0 -1      imagehistory/dimagehistory.cpp  


WebSVN link: http://websvn.kde.org/?view=rev&revision=1217349