...
/Introduction to Log-Structured File System
Introduction to Log-Structured File System
This lesson presents the need for a file system focused on improving write performance and introduces the LFS.
We'll cover the following...
In the early 90s, a group at Berkeley led by Professor John Ousterhout and graduate student Mendel Rosenblum developed a new file system known as the
Observations
Their motivation to do so was based on the following observations:
-
System memories are growing: As memory gets bigger, more data can be cached in memory. As more data is cached, disk traffic increasingly consists of writes, as reads are serviced by the cache. Thus, file system performance is largely determined by its write performance.
-
There is a large gap between random I/O performance and sequential I/O performance: ...