Take the EverQuest II server for instance. The (binary) data file that describes nearly everything except collision geometry runs about 460MB. Every zone server uses that same file and we run several zone servers on one physical machine. With memory-mapping, the OS uses 460MB of virtual memory (assuming the entire file is used) just once and all zone server instances can use that same virtual memory without having to read the file into each individual instance.
Like anything, there are drawbacks. Most modern operating systems use demand paging, so if you try and access a page of memory representing a part of the file that hasn't loaded yet, a page fault will be triggered and the OS will have to perform kernel-mode IO to load that page from the file. Depending on how much virtual memory your application has access to (and how spread out your accesses are), this could potentially trigger a very high number of page faults.
Another drawback is address space. A 32-bit application will only have access to less than 4GB of address space (Windows has a 2GB address space by default). If you map entire large files into memory, you are consuming this address space. This has become more and more important on the EQII servers. As I mentioned, our data file is 460MB. Since shortly after the game launched, this file has always been fully mapped into memory. That was fine back then as it was much smaller than it is today. Now, after launching our fifth expansion, the data file is now nearly one quarter of our allotted address space (and not getting any smaller).
Fortunately, the APIs for Linux (
mmap
) and Windows (MapViewOfFile
) allow an offset and a length to be specified. This opens the door to partial memory-mapped files. However, there are some caveats. The offset cannot be just any offset; it must be aligned. On Linux the offset must be a multiple of the page size (found by getpagesize
), but on Windows the offset must be a multiple of the "allocation granularity" (found by calling GetSystemInfo
). The length of the mapping usually does not need to be aligned, but if you're planning a generic partial mapping solution, it's probably best to use the same alignment. Another thing to consider is that mapping parts of files as you need them will spread them all over your address space; you cannot assume that page 1 and page 2 of a file will be placed next to each other in memory if you map them separately.Here are some of the design goals for my partial memory-mapping implementation:
- Phase sections out as they are no longer used (start-up data is only needed at start-up)
- Reduce thrashing (phasing out a section and then mapping it back in)
- Similar performance to the current full-file implementation
- Reduce memory usage!
- Ability to permanently map/unmap sections (i.e. sections that don't phase out)
- Ability to automatically re-size sections on demand
This nifty little piece of technology is currently running on our live game servers and doing very well. Instead of 460MB, we now keep a pool of about 20-30MB mapped from the file and generally enjoy a 0.1% or lower miss rate. Best of all, we still have all the benefits of memory-mapped files.
2 comments:
I'm not sure we can expect everyone to appreciate memory-mapped files when colleges are pumping out drones who only know Java and some HTML tags.
Hi Joshua
Could I have a copy of this piece of code ( multiple mapped files ) ?
Thanks in advance
Inacio Carozzi
Post a Comment