Skip to content

coreweave/ioperftest

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

This repo holds the FIO test scripts.

Running these scripts enables replication of the testing described in the CoreWeave Storage IO performance Blog. Refer to the blog for more information.

The tests are designed to be run under Slurm.

To run the tests.

Edit the Slurm settings in the top of the fio-tests.slurm file. Some directives in particular are worth setting for your environment.

This defines how many nodes will be used in the test.

#SBATCH --nodes=8

This defines how many tasks per node. Logically it makes sense to match the number of GPUs per node.

#SBATCH --ntasks-per-node=8

This ensures no other jobs will run on those same nodes whilst the test is ongoing.

#SBATCH --exclusive

This is the partition the tests will be sent to.

#SBATCH -p h200

A little further down the script, 2 paths are defined. MNTPATH defines a temporary location where the container image is stored. TMPPATH is the path that will be tested. Revise these to fit your environment.

MNTPATH=/mnt/perftest
TMPPATH=$MNTPATH/fiotests

Note the filesystem is not cleaned up after testing. So please manually remove the test folder when testing is complete.

Submit the job with the command

sbatch fio-tests.slurm

To collect the results

When the test has finished, you can collect the results by running the python script. No special setup or libraries are needed.

python3 fio-results.py name-of-slurm-log

About

This repo holds the Public IO test scripts

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published