Check out the new USENIX Web site. next up previous
Next: Sequential Benchmark Results Up: GMS/Trapeze File Access Speed Previous: GMS/Trapeze File Access Speed

File Access Interfaces

Our highest bandwidths and lowest overheads are achieved using the file mapping mmap system call, rather than the traditional read/write interface. Differences among these interfaces have a negligible effect on delivered bandwidth at disk speeds, but the effect is substantial at gigabit-per-second network speeds. This is true even on modern platforms whose memory systems have sufficient bandwidth to serve the CPU and the I/O system simultaneously (e.g., Alpha Miata or Intel Pentium-II/440LX). The effect can be dramatic on platforms with lower memory system bandwidth (e.g., Alcor).

The experiments use three different file access schemes. The stream option uses read and write system calls. The mmap experiments use a single mmap system call to map the entire file into virtual memory, avoiding the copying inherent in the read and write interface. The memory-mapped block (MMB) experiments use a hybrid scheme that combines the benefits of the stream and whole-file mmap access policies. MMB is an an attractive interface for high-volume file access when performance is important and the uniform addressing of whole-file mmap is not required.

MMB uses the mmap system call in a block-oriented fashion, repeatedly mapping N regions of virtual memory of size B to different ranges of offsets in the file. Our MMB experiments use B=256K and N=2 (double buffering). Like whole-file mmap, MMB is a zero-copy file access scheme; it incurs slightly higher system call overhead than mmap, but our results show that this is insignificant with sufficiently low Nand sufficiently large B, and is overshadowed by other benefits. Like stream, MMB allows the application to explicitly specify its accesses to the kernel. This information can be exploited by the kernel to improve performance for applications that use MMB. Moreover, MMB is an asynchronous interface, allowing the application to specify accesses early in order to overlap file access with computation.

We have modified our Digital Unix kernels to detect MMB accesses and respond with the following policies:

We emphasize that with the exception of the new flag, these policies do not change the semantics of the standard mmap interface, but only its performance. We leave a detailed study of the MMB interface and its usage to future work.


next up previous
Next: Sequential Benchmark Results Up: GMS/Trapeze File Access Speed Previous: GMS/Trapeze File Access Speed
Darrell Anderson
1998-04-27