Skip to content

Reexamining Direct Cache Access to Optimize I/O Intensive Applications for Multi-hundred-gigabit Networks

License

Notifications You must be signed in to change notification settings

aliireza/ddio-bench

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

52 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ddio-bench: Understanding Intel Data Direct I/O Technology

This repository contains information/source code to perform the experiments done in DDIO paper published at ATC'20.

Experiments

This repositoy mainly focuses on the experiments performed in Section 4 and 5 of DDIO paper.

The experiments are located at experiments/. Every folder has a Makefile and README.md that can be used to run the experiment.

For more information, please check README.

Note that you have to setup your testbed based on our guidelines before running any experiment.

Tuning DDIO

You can use DDIOTune element in Fastclick to enable/disable/tune DDIO. If you want to tune DDIO in a different context, you can use the following guidelines.

  • Tuning: Our experiments show that changing the values of IIO LLC WAYS register, located at 0xC8B, could improve the performance of DDIO. The default value of this register in our testbed is 0x600, which has 2 set bits. You can read the current value and write new values to this register via msr-tools, as follows:
sudo apt-get install msr-tools
sudo modprobe msr
sudo rdmsr 0xc8b
sudo wrmsr 0xc8b 0x7f0
  • Disabling/Enabling DDIO: DDIO is enabled by default on Intel Xeon processors. DDIO can be disabled globally (i.e., by setting the Disable_All_Allocating_Flows bit in iiomiscctrl register) or per-root PCIe port (i.e., setting bit NoSnoopOpWrEn and unsetting bit Use_Allocating_Flow_Wr in perfctrlsts_0 register). You can find more information about these registers in the second volume of your processor's datasheet. For instance, you can check Haswell and Cascade Lake datasheets.

change-ddio.c is a simple C program to change the state of DDIO for a PCIe port. To use change-ddio, run the following commands:

sudo apt-get install libpci-dev
gcc change-ddio.c -o change-ddio -lpci
sudo ./change-ddio

You need to define the proper value for nic_bus and ddio_state in the code. For example, if you have a NIC that is mounted on 03:00.0, you should change nic_bus to 0x03. ddio_state=0 will disable the DDIO for the PCIe root responsible for that specific NIC.

You can find the PCIe BDF (Bus Device Function) of your NIC via lspci, e.g., try lspci -vvv | grep Mellanox if you have a Mellanox card.

You can also check the implementation of DDIOTune element in Fastclick.

Dynamic Burst Size Reduction

We have investigated the impact of dynamically reducing the number of RX descriptors in case of congestion in the TX path. Our implementation can be found at DMAdynamic branch of Fastclick.

If you want to try it, you have to compile Fastclick with --enable_dynamic_rxburst flag.

Citing our paper

If you use ddio-bench in any context, please cite our paper:

@inproceedings {farshin-ddio,
author = {Farshin, Alireza and Roozbeh, Amir and {Maguire Jr.}, Gerald Q. and Kosti\'{c}, Dejan},
title = {{Reexamining Direct Cache Access to Optimize I/O Intensive Applications for Multi-hundred-gigabit Networks}},
booktitle = {2020 {USENIX} Annual Technical Conference ({USENIX} {ATC} 20)},
year = {2020},
isbn = {978-1-939133-14-4},
pages = {673--689},
url = {https://www.usenix.org/conference/atc20/presentation/farshin},
publisher = {{USENIX} Association},
month = jul,
}

Getting Help

If you have any questions regarding our code or the paper, you can contact Alireza Farshin (farshin at kth.se) and/or Amir Roozbeh (amirrsk at kth.se).

About

Reexamining Direct Cache Access to Optimize I/O Intensive Applications for Multi-hundred-gigabit Networks

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published