Log-structured file system: Difference between revisions

Content deleted Content added
Added link to LogFS (Flash file system) - should a new page be created with links to all log structured file system related pages when a user searches for logfs ?
No edit summary
Line 32:
== Disadvantages ==
 
* The design rationale for log-structured file systems assumes that most reads will be optimized away by ever-enlarging memory caches. This assumption isdoes not truealways for all workloadshold:
** onOn magnetic media (wheremedia—where seeks are relatively expensive) theexpensive—the log structure may actually make reads much slower, since it [[fragmentation (computer)#External_fragmentation|fragments]] files that conventional file systems normally keep contiguous with in-place writes. Mechanical seek limitations do not apply to flash memory.
** On flash memory—where seek times are usually negligible—the log structure may not confer a worthwhile performance gain because write fragmentation has much less of an impact on write throughput.
 
== References ==