Skip to content

Code repository for Performance Characterization of NVMe Flash Devices with Zoned Namespaces (ZNS) (IEEE Cluster'23)

License

Notifications You must be signed in to change notification settings

stonet-research/NVMeBenchmarks

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ZNS NVMeBenchmarks

This repository contains benchmarks and benchmark data for ZNS:

  • Throughput and latency benchmarks for NVMe ZNS devices that make use of the benchmark tool fio with ioengines SPDK and io_uring.
  • Benchmarks to trigger GC for traditional NVMe devices.
  • Benchmarks for ZNS state transitions, see zns_state_machine_perf.

Dependencies/installation

Experiments and plots can be run on seperate machines.

For running the benchmarks

The experiments are only tested on Ubuntu 20 with Linux 5.17. We do not guarantee functionality on other OS configurations. To setup the dependencies of our framework, please run ./setup_deps.sh. To use the tools it the dependencies in requirements.txt are not needed, the only requirement is Python >= 3.8. The requirement file is for the notebooks.

For plotting (as done in the paper)

pip install -r plot_requirements.txt

For interactive plotting

pip install -r plot_requirements_jupyter.txt
jupyter nbextension enable --py --sys-prefix widgetsnbextension 

Notable benchmarks

Directory structure

  • All tools are maintained in ./*.py for throughput/latency, ./bash_tools/*sh for I/O inteference, ./zns_state_machine_perf for ZNS states.
  • artifacts contains code to reproduce the results of IEEE Cluster 2023.
  • All benchmark data is maintained in data and organized in the following format data/engine/model_name/namespace_format/operation/concurrent_zones/queue_depth.json
  • All run fio jobs are maintained in jobs and organized in the following format jobs/engine/model_name/namespace_format/operation/concurrent_zones/queue_depth.fio
  • Generic/common jobs are stored in predefined_jobs
  • analysis contains Jupyter Notebooks for investigating/exploring the data
  • example_runs and example_plots contain examples of running tests and generating plots respectively
  • Utils for running Python benchmarks are maintained in bench_utils
  • Utils for plotting in Python are maintained in plot_utils
  • tools contains the tracing tool to generate heatmaps of ZNS activity for zones

About testing NVMe ZNS

ZNS devices require special attention. We note down the biggest issues here.

Preconditioning

There is no default peconditioning method for NVMe. Instead, we try to come close by first filling all zones multiple times (4x). As a result the device should always be close to filled.

Write queue depth

In ZNS we can not make use of writes with higher queue depth, unless we make use of a scheduler or the append operation. SPDK is the only engine that currently enables appends, but does not allow for a scheduler like mq-deadline. Therefore, Io_uring is run with the mq-deadline scheduler when we require a high queue depth, defined as the operation writemq in jobs/plots/data. SPDK is run with the append operation, which is also aptly defined as the append operatio.

Leaking active zones

Fio does not always ensure that all of it zones are finished or filled once the job finishes, therefore we do it manually. Between most write tests we finish zones to prevent leaking active zones in fio.

Storage engines opions

NVMeBenchmarks currently tests with two storage engines: SPDK and io_uring. Io_uring is run in polling mode (hipri), with a kernel thread (sqthread_poll), fixedbuffers and registerfiles to achieve optimal performance.

Artifact evaluation

This benchmarking tooling/data is used in IEEE Cluster 2023 to ensure the work is reproducible. To reproduce the results of the paper see artifact_evaluation and all of the raw data see data.

About

Code repository for Performance Characterization of NVMe Flash Devices with Zoned Namespaces (ZNS) (IEEE Cluster'23)

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Jupyter Notebook 65.6%
  • Python 10.7%
  • C 10.0%
  • Shell 6.4%
  • C++ 5.3%
  • Roff 1.2%
  • Other 0.8%