BlockChain/[paper] Storage

[논문 세미나] WiscKey: Separating Keys from Values in SSD-conscious Storage

동현 유 2025. 3. 6. 16:20

Title:

WiscKey: Separating Keys from Values in SSD-conscious Storage

 

Authors:

Lanyue Lu, Thanumalayan Sankaranarayana Pillai, Andrea C. Arpaci-Dusseau, and Remzi H. Arpaci-Dusseau.

 

Journal/Conference:

USENIX FAST '16

 

Source: https://www.usenix.org/conference/fast16/technical-sessions/presentation/lu

 

Abstract:

We present WiscKey, a persistent LSM-tree-based key-value store with a performance-oriented data layout that separates keys from values to minimize I/O amplification. The design of WiscKey is highly SSD optimized, leveraging both the sequential and random performance characteristics of the device. We demonstrate the advantages of WiscKey with both microbenchmarks and YCSB workloads. Microbenchmark results show that WiscKey is 2.5x–111x faster than LevelDB for loading a database and 1.6x–14x faster for random lookups. WiscKey is faster than both LevelDB and RocksDB in all six YCSB workloads.

 

Presentation material:

2024-07-10 WiscKey, Separating Keys from Values in SSD-conscious Storage.pdf
1.81MB


Introduction

Background

WiscKey

 

Evaluation