HyLog: a high performance approach to managing disk layout

  • Authors:
  • Wenguang Wang;Yanping Zhao;Rick Bunt

  • Affiliations:
  • Department of Computer Science, University of Saskatchewan, Saskatoon, SK, Canada;Department of Computer Science, University of Saskatchewan, Saskatoon, SK, Canada;Department of Computer Science, University of Saskatchewan, Saskatoon, SK, Canada

  • Venue:
  • FAST'04 Proceedings of the 3rd USENIX conference on File and storage technologies
  • Year:
  • 2004

Quantified Score

Hi-index 0.01

Visualization

Abstract

Our objective is to improve disk I/O performance in multi-disk systems supporting multiple concurrent users, such as file servers, database servers, and email servers. In such systems, many disk reads are absorbed by large in-memory buffers, and so disk writes comprise a large portion of the disk I/O traffic. LFS (Log-structured File System) has the potential to achieve superior write performance by accumulating small writes into large blocks and writing them to new places, rather than overwriting on top of their old copies (called Overwrite). Although it is commonly believed that the high segment cleaning overhead of LFS makes it a poor choice for workloads with random updates, in this paper we find that because of the fast improvement of disk technologies, LFS significantly outperforms Overwrite in a wide range of system configurations and workloads (including the random update workload) under modern and future disks. LFS performs worse than Overwrite, however, when the disk space utilization is very high due to the high cleaning cost. In this paper, we propose a new approach, the Hybrid Log-structured (Hy-Log) disk layout, to overcome this problem. Hy-Log uses a log-structured approach for hot pages to achieve high write performance, and Overwrite for cold pages to reduce the cleaning cost. We compare the performance of HyLog to that of Overwrite, LFS and WOLF (the latest improvement on LFS) under various system configurations and workloads. Our results show that, in most cases, Hylog performs comparably to the best of the other three approaches.