Running First Test

Login to the ZebClient File System in Agent0

Login to the ZebClient management node:

ssh -i  <Key-pair-name> zebclient@<Management Node Public IP Address>

and then jump to the agent0

ssh agent0

Running the FIO Test

Run the FIO test by using the following commands:

Create a folder named "fiotest":

mkdir /fs/fiotest

Run the following FIO command to test the write performance of ZebClient

fio --ioengine=libaio --name=fiotest.dat --direct=1 --directory=/fs/fiotest/ --bs=64k --iodepth=256 --readwrite=write --size=4G --numjobs=12

Run the following FIO command to test the read performance of ZebClient

fio --ioengine=libaio --name=fiotest.dat --direct=1 --directory=/fs/fiotest/ --bs=64k --iodepth=256 --readwrite=read --size=4G --numjobs=12

Once FIO test is completed, you can view the speed in the output result.

Last updated