mirror of
https://github.com/ceph/ceph
synced 2025-01-02 00:52:22 +00:00
1713c4852c
This is v2 of the rbd/nvmeof test: It deploys 1 gateway and 1 initiator. Then does basic verification on nvme commands and runs fio. This commit creates: 1. qa/tasks/nvmeof.py: adds a new 'Nvmeof' task which deploys the gateway and shares config with the initiator hosts. Sharing config was previously done by 'nvmeof_gateway_cfg' task in qa/tasks/cephadm.py (that task is removed in this commit). 2. qa/workunits/rbd/nvmeof_basic_tests.sh: Runs nvme commands (discovery, connect, connect-all, disconnect-all, and list-subsys) and does basic verification of the output. 3. qa/workunits/rbd/nvmeof_fio_test.sh: Runs fio command. Also runs iostat in parallel if IOSTAT_INTERVAL variable is set. This variable configures the delay between each iostat print. nvmeof-cli upgrade from v0.0.6 to v0.0.7 introduced major changes to all nvmeof commands. This commit changes v0.0.6 commands to v0.0.7 in qa/workunits/rbd/nvmeof_initiator.sh Signed-off-by: Vallari Agrawal <val.agl002@gmail.com>
37 lines
800 B
Bash
Executable File
37 lines
800 B
Bash
Executable File
#!/bin/bash -ex
|
|
|
|
sudo yum -y install fio
|
|
sudo yum -y install sysstat
|
|
|
|
fio_file=$(mktemp -t nvmeof-fio-XXXX)
|
|
drives_list=$(sudo nvme list --output-format=json | jq -r '.Devices | .[] | select(.ModelNumber == "SPDK bdev Controller") | .DevicePath')
|
|
|
|
RUNTIME=${RUNTIME:-600}
|
|
# IOSTAT_INTERVAL=10
|
|
|
|
|
|
cat >> $fio_file <<EOF
|
|
[nvmeof-fio-test]
|
|
ioengine=${IO_ENGINE:-sync}
|
|
bsrange=${BS_RANGE:-4k-64k}
|
|
numjobs=${NUM_OF_JOBS:-1}
|
|
size=${SIZE:-1G}
|
|
time_based=1
|
|
runtime=$RUNTIME
|
|
rw=${RW:-randrw}
|
|
filename=$(echo "$drives_list" | tr '\n' ':' | sed 's/:$//')
|
|
verify=md5
|
|
verify_fatal=1
|
|
EOF
|
|
|
|
fio --showcmd $fio_file
|
|
sudo fio $fio_file &
|
|
|
|
if [ -n "$IOSTAT_INTERVAL" ]; then
|
|
iostat_count=$(( RUNTIME / IOSTAT_INTERVAL ))
|
|
iostat -d $IOSTAT_INTERVAL $iostat_count -h
|
|
fi
|
|
wait
|
|
|
|
echo "[nvmeof] fio test successful!"
|