# I/O Riot ## Overview I/O Riot is an I/O benchmarking tool for Linux based operating systems which captures I/O operations on a (possibly production) server in order to replay the exact same I/O operations on a load test machine. I/O Riot is operated in 5 steps: 1. Capture: Record all I/O operations over a given period of time to a capture log. 2. Initialize: Copy the log to a load test machine and initialize the load test environment. 3. Replay: Drop all OS caches and replay all I/O operations. 4. Analyze: Look at the OS and hardware stats (throughput, I/O ops, load average) from the run phase and draw conclusions. The aim is to identify possible I/O bottlenecks. 5. Repeat: Repeat steps 2-4 multiple times but adjust OS and hardware settings in order to improve I/O performance. Examples of OS and hardware settings and adjustments: * Change of system parameters (file system mount options, file system caching, file system type, file system creation flags). * Replay the I/O at different speed(s). * Replay the I/O with modified pattern(s) (e.g. remove reads from the replay journal). * Replay the I/O on different types of hardware. The file system fragmentation (depending on the file system type and utilisation) might affect I/O performance as well. Therefore, replaying the I/O will not give the exact same result as on a production system. But it provides a pretty good way to determine I/O bottlenecks. As a rule of thumb file system fragmentation will not be an issue, unless the file system begins to fill up. Modern file systems (such as Ext4) will slowly start to suffer from fragmentation and slow down then. ## Benefits In contrast to traditional I/O benchmarking tools, I/O Riot reproduces real production I/O, and does not rely on a pre-defined set of I/O operations. Also, I/O Riot only requires a server machine for capturing and another server machine for replaying. A traditional load test environment would usually be a distributed system which can consist of many components and machines. Such a distributed system can become quite complex which makes it difficult to isolate possible I/O bottlenecks. For example in order to trigger I/O events a client application would usually have to call a remote server application. The remote server application itself would query a database and the database would trigger the actual I/O operations in Linux. Furthermore, it is not easy to switch forth and back between hardware and OS settings. For example without a backup and restore procedure a database would most likely be corrupt after reformatting the data partitions with a different file system type. The benefits of I/O Riot are: * It is easy to determine whether a new hardware type is suitable for an already existing application. * It is easy to change OS and hardware for performance tests and optimizations. * Findings can be applied to production machines in order to optimize OS configuration and to save hardware costs. * Benchmarks are based on production I/O patterns and not on artificial I/O patterns. * Log files can be modified to see whether a change in the application behavior would improve I/O performance (without actually touching the application code) * Log files could be generated synthetically in order to find out how a new application would perform (even if there isn't any code for the new application yet) * It identifies possible flaws in the applications (e.g. Java programs which produce I/O operations on the server machines). Findings can be reported to the corresponding developers so that changes can be introduced to improve the applications I/O performance. * It captures I/O in Linux Kernel space (very efficient, no system slowdowns even under heavy I/O load) * It replays I/O via a tool developed in C with as little overhead as possible. # Send in patches Patches of any kind (bug fixes, new features...) are welcome! I/O Riot is new software and not everything might be perfect yet. Also, I/O Riot is used for a very specific use case at Mimecast. It may need tuning or extension for your use case. It will grow and mature over time. This is also potentially a great tool just for analysing (not replaying) the I/O, therefore it would be a great opportunity to add more features related to that (e.g. more stats, filters, etc.). Future work will also include file hole support and I/O support for memory mapped files. # Getting started I/O Riot consists of a set of SystemTap kernel modules (capturing I/O) and the tool ``ioriot`` (replaying I/O). Usually you want to capture I/O from a production machine and want to replay it on a separate load testing machine. ## System requirements I/O Riot has been tested on * CentOS 7.4 64Bit (latest version, all packages up to date, booted into the installed Kernel) * SystemTap (from the default CentOS repository) * GCC C-Compiler (from the default CentOS repository) Before proceeding please ensure that the latest CentOS 7 kernel is installed and running on all machines involved. It should also be ensured that the capture machine and the load test machine have the same mount points mounted. This is to ensure that I/O is being replayed on the corresponding data drives on the load test machine. ## Compiling and installing ioriot I/O Riot has to be installed on all machines involved. To install I/O Riot perform the following steps: ```sh sudo yum install gcc systemtap yum-utils kernel-devel-$(uname -r) sudo debuginfo-install kernel-$(uname -r) make && sudo make install export PATH=$PATH:/opt/ioriot/bin ``` This will install the ``ioriot`` utility to ``/opt/ioriot/bin/`` and the SystemTap kernel modules to ``/opt/ioriot/systemtap/``. Run ``ioriot -h`` to print out a brief help. However, best practise is not to install any compilers on a production machine. You can either compile I/O Riot from scratch on all machines involved like shown above or only compile it on a build machine and distribute the ``/opt/ioriot`` directory to the remaining machines. In the latter case you will also need to install the ``systemtap-runtime`` package as an additional dependency. In case you decided to deinstall I/O Riot you can do so by running ```sh sudo ioriot -P # purges all test files created by ioriot sudo make uninstall ``` # Operating I/O Riot ## 1. Capture The following steps are required to capture all I/O operation of the entire (Linux) system to the file ``io.capture``. For efficiency and security it is only capturing the meta data (amount of bytes written and read) and not the actual data itself. It is also capturing the system time in microseconds and the process IDs (PIDs) and thread IDs (TIDs) used as well as all relevant options and flags of the corresponding I/O syscalls. It will stop capturing automatically after 60 minutes: * 1) Stop all applications on the machine. Otherwise the kernel module won't recognize any already opened file handles. Stopping the applications before starting with the capture is essential for tracing the flags in how the files were opened. All I/O operations on unknown file handles will be ignored otherwise. * 2) Run: ```sh sudo ioriot -c ~/io.capture ``` * 3) Start all applications again. * 4) To stop capturing I/O type Ctrl+C. Alternatively one hour for the Kernel module to auto exit. To capture only I/O caused by Java process run: ```sh sudo ioriot -c ~/io.capture -m javaioriot.ko ``` To capture the I/O of a specific process run the following respectively: ```sh sudo ioriot -c ~/io.capture -m targetedioriot.ko -p PID ``` The resulting capture log looks like this and can be multiple GB in size: ```sh #|capture_version=2| t=1511381122062;:,i=7764:8093;:,o=open;:,d=162;:,p=///usr/local/mimecast/someapp/somesubdir/vd11-9:1;:,f=0;:,m=438;:, t=1511381122062;:,i=7764:8093;:,o=fstat;:,d=162;:,s=0;:, t=1511381122062;:,i=7764:8093;:,o=read;:,d=162;:,b=12;:, t=1511381122062;:,i=7764:8093;:,o=fstat;:,d=162;:,s=0;:, t=1511381122062;:,i=7764:8093;:,o=lseek;:,d=162;:,O=0;:,W=1;:,b=12;:, t=1511381122062;:,i=7764:8093;:,o=read;:,d=162;:,b=0;:, t=1511381122062;:,i=7764:8093;:,o=close;:,d=162;:,s=0;:, t=1511381122062;:,i=7764:8093;:,o=open;:,d=162;:,p=///usr/local/mimecast/someapp/somesubdir/vd11-8:1;:,f=0;:,m=438;:, t=1511381122062;:,i=7764:8093;:,o=fstat;:,d=162;:,s=0;:, t=1511381122062;:,i=7764:8093;:,o=read;:,d=162;:,b=12;:, t=1511381122062;:,i=7764:8093;:,o=fstat;:,d=162;:,s=0;:, t=1511381122062;:,i=7764:8093;:,o=lseek;:,d=162;:,O=0;:,W=1;:,b=12;:, t=1511381122062;:,i=7764:8093;:,o=read;:,d=162;:,b=0;:, t=1511381122062;:,i=7764:8093;:,o=close;:,d=162;:,s=0;:, t=1511381122062;:,i=7764:8093;:,o=open;:,d=162;:,p=///usr/local/mimecast/someapp/somesubdir/vd11-9:0;:,f=0;:,m=438;:, t=1511381122062;:,i=7764:8093;:,o=fstat;:,d=162;:,s=0;:, t=1511381122062;:,i=7764:8093;:,o=read;:,d=162;:,b=12;:, t=1511381122062;:,i=7764:8093;:,o=fstat;:,d=162;:,s=0;:, t=1511381122062;:,i=7764:8093;:,o=lseek;:,d=162;:,O=0;:,W=1;:,b=12;:, t=1511381122062;:,i=7764:8093;:,o=read;:,d=162;:,b=0;:, t=1511381122062;:,i=7764:8093;:,o=close;:,d=162;:,s=0;:, t=1511381122063;:,i=7764:8093;:,o=open;:,d=162;:,p=///usr/local/mimecast/someapp/somesubdir/vd11-7:1;:,f=0;:,m=438;:, t=1511381122063;:,i=7764:8093;:,o=fstat;:,d=162;:,s=0;:, t=1511381122063;:,i=7764:8093;:,o=read;:,d=162;:,b=12;:, t=1511381122063;:,i=7764:8093;:,o=fstat;:,d=162;:,s=0;:, t=1511381122063;:,i=7764:8093;:,o=lseek;:,d=162;:,O=0;:,W=1;:,b=12;:, t=1511381122063;:,i=7764:8093;:,o=read;:,d=162;:,b=0;:, t=1511381122063;:,i=7764:8093;:,o=close;:,d=162;:,s=0;:, t=1511381122063;:,i=7764:8093;:,o=open;:,d=162;:,p=///usr/local/mimecast/someapp/somesubdir/vd11-8:0;:,f=0;:,m=438;:, t=1511381122063;:,i=7764:8093;:,o=fstat;:,d=162;:,s=0;:, t=1511381122063;:,i=7764:8093;:,o=read;:,d=162;:,b=12;:, t=1511381122063;:,i=7764:8093;:,o=fstat;:,d=162;:,s=0;:, t=1511381122063;:,i=7764:8093;:,o=lseek;:,d=162;:,O=0;:,W=1;:,b=12;:, t=1511381122063;:,i=7764:8093;:,o=read;:,d=162;:,b=0;:, t=1511381122063;:,i=7764:8093;:,o=close;:,d=162;:,s=0;:, t=1511381122063;:,i=7764:8093;:,o=open;:,d=162;:,p=///usr/local/mimecast/someapp/somesubdir/vd11-6:1;:,f=0;:,m=438;:, t=1511381122063;:,i=7764:8093;:,o=fstat;:,d=162;:,s=0;:, t=1511381122063;:,i=7764:8093;:,o=read;:,d=162;:,b=12;:, t=1511381122063;:,i=7764:8093;:,o=fstat;:,d=162;:,s=0;:, t=1511381122063;:,i=7764:8093;:,o=lseek;:,d=162;:,O=0;:,W=1;:,b=12;:, ``` ### Using a RAMdisk (optional) It is beneficial to write ``io.capture`` to a RAMdisk so that we are not interfering so much with the system I/O: ```sh sudo mkdir -p /mnt/ramdisk sudo mount -t tmpfs -o size=32g tmpfs /mnt/ramdisk ``` Make sure that there is enough system memory available for such a RAMdisk and all the processes running on the machine. Eventually, RAM will be taken away from the Linux caches which potentially could decrease system I/O performance. Run the following command to capture to the RAMdisk respectively: ```sh sudo ioriot -c /mnt/ramdisk/io.capture ``` ## 2. Initialize ### 2.1 Pre-process the capture log / generate a replay log After producing ``io.capture`` it must be pre-processed. The resulting replay log introduces the following changes (for improving replay performance and make the parsing easier): * Time stamps begin from 0 * Use of internal opcodes rather than strings (e.g. ``30`` instead of ``open``) for faster parsing. * All operations on unknown file handles are _removed_. * All incomplete or corrupt lines from the capture file are ignored. There may be corrupt lines in the capture file because SystemTap may skips a very few probe points if it decides that capturing I/O is causing too much overhead. * Rewrite of all file paths. ``ioriot`` adds ``/.ioriot/NAME`` to all file paths for each file system mount point. To generate the the replay log ``io.replay`` from the capture log ``io.capture`` run: ```sh ioriot -c io.capture -r io.replay -n NAME -u USER ``` In which NAME is a freely chosen name and USER must be a valid system user. It is the system user under which the replay test will run. This command also creates all required top level directories such as ``/.ioriot/NAME/``, ``/mnt/.ioriot/NAME/`` in all mounted file systems. These are the directories where the replay test will read/write files from/to. These directories will belong to user USER. ``ioriot`` will filter out many operations, especially all operations on pseudo file systems (e.g. sysfs, procfs), as it does not make a lot of sense to replay I/O on these file systems. Also, I/O operations on unknown file handles will be filtered out as well. This can happen when we start capturing the I/O *after* an application already opened a file. As a result we won't see how the application opened that file. The best practise is to stop all applications on the machine first, start capturing the I/O, and start all applications again. This may be improved in future releases of I/O Riot. The resulting replay log will look like this: At the first line there is a meta header. It contains information about the test configuration. The meta header is followed by all the I/O operations. At the end of the file is the INIT section. It lists all files (also their sizes) and directories required to be present before replaying the I/O. ```sh #|num_timelines=509591|num_mapped_pids=19189|num_mapped_fds=4292067|num_lines=55040114|replay_version=1|user=ioriotuser|name=test0|init_offset=2578735248| 23|1|1|0|0|30|11|/usr/local/mimecast/.ioriot/test0/someapp/somesubdir/vd11-9:1|438|0|open@31| 23|1|1|0|0|0|11|0|fstat@32| 23|1|1|0|0|10|11|12|read@33| 23|1|1|0|0|0|11|0|fstat@34| 23|1|1|0|0|72|11|0|1|12|lseek@35| 23|1|1|0|0|10|11|0|read@36| 23|1|1|0|0|50|11|0|close@37| 23|2|1|0|0|30|12|/usr/local/mimecast/.ioriot/test0/someapp/somesubdir/vd11-8:1|438|0|open@38| 23|2|1|0|0|0|12|0|fstat@39| 23|2|1|0|0|10|12|12|read@40| 23|2|1|0|0|0|12|0|fstat@41| 23|2|1|0|0|72|12|0|1|12|lseek@42| 23|2|1|0|0|10|12|0|read@43| 23|2|1|0|0|50|12|0|close@44| 23|3|1|0|0|30|13|/usr/local/mimecast/.ioriot/test0/someapp/somesubdir/vd11-9:0|438|0|open@45| 23|3|1|0|0|0|13|0|fstat@46| 23|3|1|0|0|10|13|12|read@47| 23|3|1|0|0|0|13|0|fstat@48| 23|3|1|0|0|72|13|0|1|12|lseek@49| 23|3|1|0|0|10|13|0|read@50| 23|3|1|0|0|50|13|0|close@51| 23|4|1|0|0|30|14|/usr/local/mimecast/.ioriot/test0/someapp/somesubdir/vd11-7:1|438|0|open@52| 23|4|1|0|0|0|14|0|fstat@53| 23|4|1|0|0|10|14|12|read@54| 23|4|1|0|0|0|14|0|fstat@55| 23|4|1|0|0|72|14|0|1|12|lseek@56| 23|4|1|0|0|10|14|0|read@57| 23|4|1|0|0|50|14|0|close@58| 23|5|1|0|0|30|15|/usr/local/mimecast/.ioriot/test0/someapp/somesubdir/vd11-8:0|438|0|open@59| 23|5|1|0|0|0|15|0|fstat@60| 23|5|1|0|0|10|15|12|read@61| 23|5|1|0|0|0|15|0|fstat@62| 23|5|1|0|0|72|15|0|1|12|lseek@63| 23|5|1|0|0|10|15|0|read@64| 23|5|1|0|0|50|15|0|close@65| 23|6|1|0|0|30|16|/usr/local/mimecast/.ioriot/test0/someapp/somesubdir/vd11-6:1|438|0|open@66| 23|6|1|0|0|0|16|0|fstat@67| 23|6|1|0|0|10|16|12|read@68| 23|6|1|0|0|0|16|0|fstat@69| . . . #INIT 0|1|688|/mnt/15/.ioriot/test0/bmnt/2/20171101/b/8/b_dv01_11_vd11-11_a|@55290437 0|1|2592|/mnt/15/.ioriot/test0/bmnt/2/20171101/b/3/b_dv01_11_vd11-11_b|@33907067 0|1|768|/mnt/14/.ioriot/test0/bmnt/2/20171101/b/d/b_dv01_11_vd11-11_c|@64247527 0|1|1440|/mnt/15/.ioriot/test0/bmnt/2/20171101/b/0/b_dv01_11_vd11-11_d|@2014896 0|1|960|/mnt/15/.ioriot/test0/bmnt/2/20171101/b/9/b_dv01_11_vd11-11_e|@17724079 0|1|928|/mnt/15/.ioriot/test0/bmnt/2/20171101/b/1/b_dv01_11_vd11-11_f|@4534389 0|1|1712|/mnt/14/.ioriot/test0/bmnt/2/20171101/b/5/b_dv01_11_vd11-11_g|@2738458 0|1|784|/mnt/14/.ioriot/test0/bmnt/2/20171101/b/b/b_dv01_11_vd11-11_h|@21136612 0|1|624|/mnt/14/.ioriot/test0/bmnt/2/20171101/b/6/b_dv01_11_vd11-11_i|@24683427 0|1|672|/mnt/14/.ioriot/test0/bmnt/2/20171101/b/9/b_dv01_11_vd11-11_j|@12584061 0|1|336|/mnt/15/.ioriot/test0/bmnt/2/20171101/b/5/b_dv01_11_vd11-11_k|@7737434 0|1|12|/mnt/06/.ioriot/test0/bmnt/tmp/b|@42498106 . . . ``` ### 2.2 Initialize the replay test It is very likely that the replay test wants to access already existing files. Therefore it has to be ensured that all of these exist already before starting the test. To create all files and directories required by the test run the following command: ```sh sudo ioriot -i io.replay ``` For that ``ioriot`` makes use of the INIT section in ``io.replay``. ## 3. Replay To replay the log run: ```sh sudo ioriot -r io.replay ``` It is beneficial to read ``io.replay`` from RAMdisk so that we are not interfering so much with the system I/O. *Init and replay in one go* It is posisble to initialise the test and run the test with one single command, just replace option `-r` with `-R`: ```sh sudo ioriot -R io.replay ``` *Speed factor* By default `ioriot` tries to replay all I/O operations as fast as it can. To replay the I/O at a different speed it is possible to configure the speed factor by using the `-s` command line option. The following pseudo code demonstrates how the speed factor affects the replay speed. Here `current_time` represents the current time while replaying the I/O, `time_in_log` represents the time as logged in `io.replay` and `time_ahead` indicates whether the replay is too quick or not. ```code if (speed_factor != 0) { time_ahead = time_in_log / speed_factor - current_time if (time_ahead > 0) { sleep(time_ahead) } } ``` A speed factor of `0` is interpreted as "replay as fast as possible". A speed factor of `1` can be used to replay everything in original speed (same speed as on the original host where the I/O was captured). A speed factor of `2` would double the speed and a speed factor of `0.5` would half the speed. In order to replay the I/O in original speed the factor of `1` can be used as follows: ```sh sudo ioriot -R io.replay -s 1 ``` ## 4. Analyse Look at various operating system statistics during the test. Useful commands are for example ``iostat -x 1``, ``dstat --disk`` and ``sudo iotop -o``. Best would be to collect all I/O statistics of all drives to a time series database with graphing capabilities such as Collectd/Graphite/Whisper. ## 5. Repeat It is important to understand the I/O statistics observed. It is possible to repeat the same test any time again. Each time with different settings applied. ## Cleanup To purge all temporally data files of all tests run ```sh sudo ioriot -P ``` Note: It's not required to cleanup any test data manually when you intend to re-run a test or run a new test. During initialization (``-i`` or ``-R`` switch) ``ioriot`` will automatically move all old data to ``.ioriot/.trash/`` sub-folders. The data will be ignored there. However, once you intend to completely delete all test files and directories (e.g. you run out of disk space or want to deinstall ``ioriot`` you should purge them with ``-P`` as shown above. ## Supported file systems Currently I/O Riot supports replaying I/O on ``ext2``, ``ext3``, ``ext4`` and ``xfs``. However, it should be straightforward add additional file systems. ## Supported syscalls Currently, these file I/O related syscalls are supported (as of CentOS 7): ```code open openat lseek llseek fcntl creat write writev unlink unlinkat rename renameat renameat2 read readv readahead - Initial support only readdir readlink readlinkat fdatasync fsync sync_file_range - Initial support only sync syncfs close getdents mkdir rmdir mkdirat stat statfs - Initial support only statfs64 - Initial support only fstatfs - Initial support only fstatfs64 - Initial support only lstat fstat fstatat chmod fchmodat fchmod chown chown16 lchown lchown16 fchown fchown16 fchownat mmap2 - Initial support only mremap - Initial support only munmap - Initial support only msync - Initial support only exit_group - To detect process termination (closing all open file handles) ``` ## Source code documentation The documentation of the source code can be generated via the Doxygen Framework. To install doxygen run ``sudo yum install doxygen`` and to generate the documentation run ``make doxygen`` in the top level source directory. Once done, the resulting documentation can be found in the ``docs/html`` subfolder of the project. It is worthwhile to start from ``ioriot/src/main.c`` and read your way through. Functions are generally documented in the header files. Exceptions are static functions which don't have any separate declarations.