Code Monkey home page Code Monkey logo

fio_configs's Introduction

fio_configs

Some fio config files for testing

fio is a tool used to test system i/o capacity. See https://fio.readthedocs.io/en/latest/ for more information.

Usage

Pre-populate a file, perhaps mounted on an attached disk.

fio --section=populate populate.cfg

Run the suite of tests.

fio --output=fio.log fio.cfg

Example of running just one test.

fio --section=write-latency --output=fio_write_latency.log fio.cfg

Generate graphs.

fio_generate_plots "Your Title Here"

Alternatively, look for values exceeding a certain level. This example shows the count of write latency entries over 10ms.

cat 4k-write-lat-latency.results_lat.1.log | awk -F',' '$2>10000000 {print ;}' | wc -l

Note: The fio version installed from at least the Centos 7 packages is quite old. Here are some example steps to installing the latest fio version.

yum install screen git gcc-c++ svn texinfo-tex flex zip libgcc.i686 glibc-devel.i686 zlib-devel

screen
svn co svn://gcc.gnu.org/svn/gcc/tags/gcc_9_2_0_release/
cd gcc_9_2_0_release/
./contrib/download_prerequisites
cd ..
mkdir gcc_9_2_0_release-build
cd gcc_9_2_0_release-build/

../gcc_9_2_0_release/configure && make -j 16 && sudo make install && echo "finished"

git clone git://git.kernel.dk/fio.git
cd fio
./configure
make
sudo make install
fio -version

fio_configs's People

Contributors

dataindataout avatar hirnidrin avatar

Watchers

 avatar  avatar

Forkers

hirnidrin

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.