Tagged Questions
mmap is a POSIX-compliant Unix system call that maps files or devices into memory.
29
votes
15answers
10k views
mmap() vs. reading blocks
I'm working on a program that will be processing files that could potentially be 100GB or more in size. The files contain sets of variable length records. I've got a first implementation up and ...
28
votes
4answers
11k views
When should I use mmap for file access?
POSIX environments provide at least two ways of accessing files. There's the standard system calls open(), read(), write(), and friends, but there's also the option of using mmap() to map the file ...
23
votes
3answers
307 views
Speeding up file I/O: mmap() vs. read()
My apologies if this has been covered elsewhere and my search has not found it.
Mmap-vs-reading-blocks
is a similar problem to what I am working and provided a good starting point on this problem, ...
17
votes
7answers
4k views
Why doesn't Python's mmap work with large files?
I am writing a module that amongst other things allows bitwise read access to files. The files can potentially be large (hundreds of GB) so I wrote a simple class that lets me treat the file like a ...
16
votes
2answers
334 views
Mmap() an entire large file
I am trying to "mmap" a binary file (~ 8Gb) using the following code (test.c).
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <sys/mman.h>
#include ...
12
votes
3answers
619 views
how to memory map a huge matrix?
Suppose you got a huge (40+ GB) feature value (floating-point) matrix, rows are different features and columns are the samples/images.
The table is precomputed column-wise.
Then it is completely ...
11
votes
4answers
897 views
How to share data between python processes without writing to disk
Helllo,
I would like to share small amounts of data (< 1K) between python and processes. The data is physical pc/104 IO data which changes rapidly and often (24x7x365). There will be a single ...
11
votes
4answers
4k views
Linux MMAP internals
I have several questions regarding the mmap implementation in Linux systems which don't seem to be very much documented:
When mapping a file to memory using mmap, how would you handle prefetching the ...
10
votes
2answers
130 views
how can I detect whether a specific page is mapped in memory?
I would like to detect whether or not a specific page has already been mapped in memory. The goal here is to be able to perform this check before calling mmap with a fixed memory address. The ...
10
votes
1answer
230 views
Platform independent memory mapped [file] IO
I've spent some time investigating memory mapped IO for an application I'm working on. I have some very large (TB scale) files, and I want to map segments from them into memory, for both reading and ...
10
votes
4answers
613 views
In a 64 bit process, will my mmap / malloc request ever be denied?
The address space for 64 bit addressing is absolutely huge. I have a program that will mmap several chunks of memory, each of the order of 100 - 500 MB. I will inevitably be remapping a few times, ...
10
votes
5answers
2k views
Will malloc implementations return free-ed memory back to the system?
I have a long-living application with frequent memory allocation-deallocation. Will any malloc implementation return freed memory back to the system?
What is, in this respect, the behavior of:
...
8
votes
4answers
214 views
What is the difference between writing to a file and a mapped memory?
I have the following questions related to handling files and mapping them (mmap):
1) We know that if we create a file, and write to that file, then either ways we are writing to the memory. Then why ...
8
votes
1answer
278 views
vmsplice() and TCP
In the original vmsplice() implementation, it was suggested that if you had a user-land buffer 2x the maximum number of pages that could fit in a pipe, a successful vmsplice() on the second half of ...
7
votes
3answers
164 views
mmap and csv files
I am trying to understand how to use the package mmap
to access large csv files. More precisely, I'd like to
Create a mmap object from a csv file with mmap.csv();
Save the file created by ...
7
votes
3answers
255 views
Why does fopen/fgets use both mmap and read system calls to access the data?
I have a small example program which simply fopens a file and uses fgets to read it. Using strace, I notice that the first call to fgets runs a mmap system call, and then read system calls are used to ...
7
votes
5answers
323 views
Can the dirtiness of pages of a mmap be found from userspace?
Can dirtiness of pages of a (non-shared) mmap be accessed from userspace under linux 2.6.30+? Platform-specific hacks and kludges welcome.
Ideally, I'm looking for an array of bits, one per page ...
7
votes
1answer
426 views
Java map / nio / NFS issue causing a VM fault: “a fault occurred in a recent unsafe memory access operation in compiled Java code”
I have written a parser class for a particular binary format (nfdump if anyone is interested) which uses java.nio's MappedByteBuffer to read through files of a few GB each. The binary format is just ...
7
votes
8answers
1k views
mmap problem, allocates huge amounts of memory
I got some huge files I need to parse, and people have been recommending mmap because this should avoid having to allocate the entire file in-memory.
But looking at 'top' it does look like I'm ...
7
votes
4answers
6k views
malloc vs mmap in C
I built two programs, one using malloc and other one using mmap. The execution time using mmap is much less than using malloc.
I know for example that when you're using mmap you avoid read/writes ...
7
votes
12answers
1k views
What is the fastest way to read 10 GB file from the disk?
We need to read and count different types of messages/run
some statistics on a 10 GB text file, e.g a FIX engine
log. We use Linux, 32-bit, 4 CPUs, Intel, coding in Perl but
the language doesn't ...
7
votes
8answers
3k views
Linux/perl mmap performance
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 ...
7
votes
3answers
12k views
How to share APC cache between several PHP processes when running under FastCGI?
I'm currently running several copies of PHP/FastCGI, with APC enabled (under Apache+mod_fastcgi, if that matters). Can I share cache between the processes? How can I check if it's shared already? ...
6
votes
1answer
100 views
mmap with /dev/zero
Say I allocate a big memory (40MB) with mmap using /dev/zero as follows.
fd = open("/dev/zero", O_RDWR);
a = mmap (0, 4096e4, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_FILE, fd, 0);
What I ...
6
votes
3answers
114 views
What is a good way to test the use of msync on recent Linux kernels?
I am using msync in my application on Linux 2.6 to ensure consistency in the event of a crash. I need to thoroughly test my usage of msync but the implementation seems to be flushing all the relevant ...
6
votes
2answers
396 views
Do mmap/mprotect-readonly zero pages count towards committed memory?
I want to keep virtual address space reserved in my process for memory that was previously used but is not presently needed. I'm interested in the situation where the host kernel is Linux and it's ...
6
votes
1answer
851 views
mmap(2) vs mmap(3)
Does anyone know what the difference between mmap(2) and mmap(3) is? Man section 3 is described as "This chapter describes all library functions excluding the library functions described in chapter ...
5
votes
2answers
89 views
Optimizing massive writes to disk
I have a C app (VStudio 2010, win7 64bit) running on a machine with dual xeon chips, meaning 12 physical and 24 logical cores, and 192 gig of ram.
EDIT: THE OS is win7 (ie, Windows 7, 64 bit).
The ...
5
votes
4answers
339 views
python mmap.error: Too many open files. What's wrong?
I'm reading a bunch of netcdf files using the pupynere interface (linux). The following code results in an mmap error:
import numpy as np
import os, glob
from pupynere import NetCDFFile as nc
alts = ...
5
votes
4answers
452 views
Is there really no mremap in Darwin?
I'm trying to find out how to remap memory-mapped files on a Mac (when I want to expand the available space).
I see our friends in the Linux world have mremap but I can find no such function in the ...
5
votes
3answers
626 views
system call to map memory to a file descriptor (inverse mmap)?
I want to be able to map memory to a file descriptor so I can use some existing functions that need a file descriptor. Here's essentially what I'm looking for:
void do_operation1(int fd);
char ...
4
votes
2answers
133 views
mmap() and locking files
Consider the following snippet (error handling missing on purpose):
void* foo(const char *path, off_t size) {
int fd;
void *ret;
fd = open(path, O_RDWR);
lockf(fd, F_LOCK, 0);
...
4
votes
4answers
209 views
mmap and munmap behaviour
The Open Group standard says that munmap should be called with a page aligned address, but there doesn't seem to be any requirement that mmap should be returning a page aligned address. Is this ...
4
votes
1answer
623 views
Python mmap 'Permission denied' on Linux
I have a really large file I'm trying to open with mmap and its giving me permission denied. I've tried different flags and modes to the os.open but its just not working for me.
What am I doing ...
4
votes
3answers
532 views
communicating between processes with shared-memory results zero-copy?
I am writing a network daemon, on Linux with kernel 2.6, which has
one producer process and N of consumer processes, which does not make any change on the data, and does not create any response back ...
4
votes
3answers
468 views
Specify the Java memory allocation pool address
With the -Xms and -Xmx Options, it is possible to set the initial and maximum size of the memory allocation pool. Using strace/truss on Linux and AIX I found out, the JVM internally uses the (k)mmap ...
4
votes
5answers
344 views
How to have a checkpoint file using mmap which is only synced to disk manually
I need the fastest way to periodically sync file with memory.
What I think I would like is to have an mmap'd file, which is only sync'd to disk manually. I'm not sure how to prevent any automatic ...
4
votes
4answers
1k views
Why does mmap() fail with ENOMEM on a 1TB sparse file?
I've been working with large sparse files on openSUSE 11.2 x86_64. When I try to mmap() a 1TB sparse file, it fails with ENOMEM. I would have thought that the 64 bit address space would be adequate to ...
4
votes
4answers
1k views
Is it possible to store pointers in shared memory without using offsets?
When using shared memory, each process may mmap the shared region into a different area of its respective address space. This means that when storing pointers within the shared region, you need to ...
4
votes
1answer
148 views
Why is remap_file_pages() failing in this example?
The following C code illustrates a problem I'm seeing on Linux 2.6.30.5-43.fc11.x86_64:
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/mman.h>
#include <fcntl.h>
...
4
votes
4answers
1k views
Python File Slurp w/ endian conversion
It was recently asked how to do a file slurp in python, and the accepted answer suggested something like:
with open('x.txt') as x: f = x.read()
How would I go about doing this to read the file in ...
4
votes
4answers
4k views
Shmem vs tmpfs vs mmap
Does someone know how well the following 3 compare in terms of speed:
shared memory
tmpfs (/dev/shm)
mmap (/dev/shm)
Thanks!
4
votes
6answers
2k views
How big can a memory-mapped file be?
What limits the size of a memory-mapped file? I know it can't be bigger than the largest continuous chunk of unallocated address space, and that there should be enough free disk space. But are there ...
4
votes
6answers
2k views
Examining mmaped addresses using GDB
I'm using the driver I posted at http://stackoverflow.com/questions/647783/direct-memory-access-in-linux/ to mmap some physical ram into a userspace address. However, I can't use GDB to look at any of ...
3
votes
3answers
71 views
Is mmap deterministic if ASLR is disabled?
If Address Space Layout Randomization (ASLR) is disabled, would we have a deterministic mmap? By deterministic, I mean that If I run the same application again and again with the same inputs, will I ...
3
votes
1answer
84 views
Fast resize of a mmap file
I need a copy-free re-size of a very large mmap file while still allowing concurrent access to reader threads.
The simple way is to use two MAP_SHARED mappings (grow the file, then create a second ...
3
votes
3answers
95 views
How to read lines from mmap file in python?
Is seems that the mmap interface only supports readline().
If I try to iterate over the object I get character instead of complete lines.
What would be the "pythonic" method of reading a mmap'ed ...
3
votes
0answers
61 views
mmap() to share an std::map
I want to share an std::map< long, MyStruct > between two processes. Is it possible to share an std::map using mmap()?
If so, I'm assuming that I'll be able to increase/decrease the shared memory ...
3
votes
1answer
114 views
Is it possible to memory map a compressed file?
We have large files with zlib-compressed binary data that we would like to memory map.
Is it even possible to memory map such a compressed binary file and access those bytes in an effective manner?
...
3
votes
3answers
78 views
Setting a fmemopen ed file descriptor to be the standard input for a child process
I have an fmemopen file descriptor(pointing to a buffer in the parent) in Linux and I would like to be able to, in C, set this file descriptor as the standard input for a child process(for whom I do ...