Linux/perl mmap performance - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T13:59:37Zhttp://stackoverflow.com/feeds/question/1052765http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1052765/linux-perl-mmap-performance5Linux/perl mmap performanceMarius Kjeldahl2009-06-27T12:37:08Z2009-06-29T21:57:25Z
<p>I'm trying to optimize handling of large datasets using mmap. A dataset is in the gigabyte range. The idea was to mmap the whole file into memory, allowing multiple processes to work on the dataset concurrently (read-only). It isn't working as expected though.</p>
<p>As a simple test I simply mmap the file (using perl's Sys::Mmap module, using the "mmap" sub which I believe maps directly to the underlying C function) and have the process sleep. When doing this, the code spends more than a minute before it returns from the mmap call, despite this test doing nothing - not even a read - from the mmap'ed file.</p>
<p>Guessing, I though maybe linux required the whole file to be read when first mmap'ed, so after the file had been mapped in the first process (while it was sleeping), I invoked a simple test in another process which tried to read the first few megabytes of the file.</p>
<p>Suprisingly, it seems the second process also spends a lot of time before returning from the mmap call, about the same time as mmap'ing the file the first time.</p>
<p>I've made sure that MAP_SHARED is being used and that the process that mapped the file the first time is still active (that it has not terminated, and that the mmap hasn't been unmapped).</p>
<p>I expected a mmapped file would allow me to give multiple worker processes effective random access to the large file, but if every mmap call requires reading the whole file first, it's a bit harder. I haven't tested using long-running processes to see if access is fast after the first delay, but I expected using MAP_SHARED and another separate process would be sufficient.</p>
<p>My theory was that mmap would return more or less immediately, and that linux would load the blocks more or less on-demand, but the behaviour I am seeing is the opposite, indicating it requires reading through the whole file on each call to mmap.</p>
<p>Any idea what I'm doing wrong, or if I've completely misunderstood how mmap is supposed to work?</p>
http://stackoverflow.com/questions/1052765/linux-perl-mmap-performance/1052839#10528390Answer by Rhythmic Fistman for Linux/perl mmap performanceRhythmic Fistman2009-06-27T13:38:32Z2009-06-27T13:38:32Z<p>That does sound surprising. Why not try a pure C version?</p>
<p>Or try your code on a different OS/perl version.</p>
http://stackoverflow.com/questions/1052765/linux-perl-mmap-performance/1052846#10528467Answer by Chas. Owens for Linux/perl mmap performanceChas. Owens2009-06-27T13:43:22Z2009-06-27T14:04:13Z<p>If you have a relatively recent version of Perl, you shouldn't be using Sys::Mmap. You should be using PerlIO's <a href="http://perldoc.perl.org/PerlIO.html#:mmap" rel="nofollow">mmap</a> layer.</p>
<p>Can you post the code you are using?</p>
http://stackoverflow.com/questions/1052765/linux-perl-mmap-performance/1052980#10529806Answer by Marius Kjeldahl for Linux/perl mmap performanceMarius Kjeldahl2009-06-27T15:02:13Z2009-06-27T15:02:13Z<p>Ok, found the problem. As suspected, neither linux or perl were to blame. To open and access the file I do something like this:</p>
<pre><code>#!/usr/bin/perl
# Create 1 GB file if you do not have one:
# dd if=/dev/urandom of=test.bin bs=1048576 count=1000
use strict; use warnings;
use Sys::Mmap;
open (my $fh, "<test.bin")
|| die "open: $!";
my $t = time;
print STDERR "mmapping.. ";
mmap (my $mh, 0, PROT_READ, MAP_SHARED, $fh)
|| die "mmap: $!";
my $str = unpack ("A1024", substr ($mh, 0, 1024));
print STDERR " ", time-$t, " seconds\nsleeping..";
sleep (60*60);
</code></pre>
<p>If you test that code, there are no delays like those I found in my original code, and after creating the minimal sample (always do that, right!) the reason suddenly became obvious.</p>
<p>The error was that I in my code treated the <code>$mh</code> scalar as a handle, something which is light weight and can be moved around easily (read: pass by value). Turns out, it's actually a GB long string, definitively not something you want to move around without creating an explicit reference (perl lingua for a "pointer"/handle value). So if you need to store in in a hash or similar, make sure you store <code>\$mh</code>, and deref it when you need to use it like <code>${$hash->{mh}}</code>, typically as the first parameter in a substr or similar.</p>
http://stackoverflow.com/questions/1052765/linux-perl-mmap-performance/1055066#10550662Answer by knweiss for Linux/perl mmap performanceknweiss2009-06-28T14:58:28Z2009-06-28T14:58:28Z<p>On 32-bit systems the address space for <code>mmap()</code>s is rather limited (and varies from OS to OS). Be aware of that if you're using multi-gigabyte files and your are only testing on a 64-bit system. <em>(I would have preferred to write this in a comment but I don't have enough reputation points yet)</em></p>
http://stackoverflow.com/questions/1052765/linux-perl-mmap-performance/1055606#10556060Answer by Hynek -Pichi- Vychodil for Linux/perl mmap performanceHynek -Pichi- Vychodil2009-06-28T19:56:27Z2009-06-28T19:56:27Z<p>See <a href="http://www.tbray.org/ongoing/When/200x/2007/10/30/WF-Results" rel="nofollow">Wide Finder</a> for perl performance with mmap. But there is one big pitfall. If your dataset will be on classical HD and you will read from multiple processes, you can easily fall in random access and your IO will fall down to unacceptable values (20~40 times).</p>
http://stackoverflow.com/questions/1052765/linux-perl-mmap-performance/1056004#10560041Answer by servicesmtk for Linux/perl mmap performanceservicesmtk2009-06-28T23:10:35Z2009-06-28T23:10:35Z<p>one thing that can help performance is the use of 'madvise(2)'. probably most easily
done via Inline::C. 'madvise' lets you tell the kernel what your access pattern will be like (e.g. sequential, random, etc).</p>
http://stackoverflow.com/questions/1052765/linux-perl-mmap-performance/1057690#10576900Answer by Marius Kjeldahl for Linux/perl mmap performanceMarius Kjeldahl2009-06-29T10:52:18Z2009-06-29T10:52:18Z<p>Ok, here's another update. Using Sys::Mmap or PerlIO's ":mmap" attribute both works fine in perl, but only up to 2 GB files (the magic 32 bit limit). Once the file is more than 2 GB, the following problems appear:</p>
<p>Using Sys::Mmap and substr for accessing the file, it seems that substr only accepts a 32 bit int for the position parameter, even on systems where perl supports 64 bit. There's at least one bug posted about it:</p>
<p><a href="http://rt.perl.org/rt3//Public/Bug/Display.html?id=62646" rel="nofollow">#62646: Maximum string length with substr</a></p>
<p>Using <code>open(my $fh, "<:mmap", "bigfile.bin")</code>, once the file is larger than 2 GB, it seems perl will either hang/or insist on reading the whole file on the first read (not sure which, I never ran it long enough to see if it completed), leading to dead slow performance.</p>
<p>I haven't found any workaround to either of these, and I'm currently stuck with slow file (non mmap'ed) operations for working on these files. Unless I find a workaround I may have to implement the processing in C or another higher level language that supports mmap'ing huge files better.</p>
http://stackoverflow.com/questions/1052765/linux-perl-mmap-performance/1060778#10607780Answer by Leon Timmermans for Linux/perl mmap performanceLeon Timmermans2009-06-29T21:57:25Z2009-06-29T21:57:25Z<p>If I may plug my own module: I'd advice using <a href="http://search.cpan.org/perldoc?File::Map" rel="nofollow">File::Map</a> instead of <a href="http://search.cpan.org/perldoc?Sys::Mmap" rel="nofollow">Sys::Mmap</a>. It's much easier to use, and is less crash-prone than Sys::Mmap.</p>