1#!/bin/ksh 2# SPDX-License-Identifier: CDDL-1.0 3 4# 5# This file and its contents are supplied under the terms of the 6# Common Development and Distribution License ("CDDL"), version 1.0. 7# You may only use this file in accordance with the terms of version 8# 1.0 of the CDDL. 9# 10# A full copy of the text of the CDDL should have accompanied this 11# source. A copy of the CDDL is also available via the Internet at 12# http://www.illumos.org/license/CDDL. 13# 14 15# 16# Copyright (c) 2015, 2021 by Delphix. All rights reserved. 17# 18 19# 20# Description: 21# Trigger fio runs using the sequential_writes job file. The number of runs and 22# data collected is determined by the PERF_* variables. See do_fio_run for 23# details about these variables. 24# 25# Prior to each fio run the dataset is recreated, and fio writes new files 26# into an otherwise empty pool. 27# 28# Thread/Concurrency settings: 29# PERF_NTHREADS defines the number of files created in the test filesystem, 30# as well as the number of threads that will simultaneously drive IO to 31# those files. The settings chosen are from measurements in the 32# PerfAutoESX/ZFSPerfESX Environments, selected at concurrency levels that 33# are at peak throughput but lowest latency. Higher concurrency introduces 34# queue time latency and would reduce the impact of code-induced performance 35# regressions. 36# 37 38. $STF_SUITE/include/libtest.shlib 39. $STF_SUITE/tests/perf/perf.shlib 40 41command -v fio > /dev/null || log_unsupported "fio missing" 42 43function cleanup 44{ 45 # kill fio and iostat 46 pkill fio 47 pkill iostat 48 recreate_perf_pool 49} 50 51trap "log_fail \"Measure IO stats during random read load\"" SIGTERM 52log_onexit cleanup 53 54recreate_perf_pool 55populate_perf_filesystems 56 57# Aim to fill the pool to 50% capacity while accounting for a 3x compressratio. 58export TOTAL_SIZE=$(($(get_prop avail $PERFPOOL) * 3 / 2)) 59 60# Variables specific to this test for use by fio. 61export PERF_NTHREADS=${PERF_NTHREADS:-'16 32'} 62export PERF_NTHREADS_PER_FS=${PERF_NTHREADS_PER_FS:-'0'} 63export PERF_IOSIZES=${PERF_IOSIZES:-'8k 1m'} 64export PERF_SYNC_TYPES=${PERF_SYNC_TYPES:-'0 1'} 65 66# Set up the scripts and output files that will log performance data. 67lun_list=$(pool_to_lun_list $PERFPOOL) 68log_note "Collecting backend IO stats with lun list $lun_list" 69if is_linux; then 70 typeset perf_record_cmd="perf record -F 99 -a -g -q \ 71 -o /dev/stdout -- sleep ${PERF_RUNTIME}" 72 73 export collect_scripts=( 74 "zpool iostat -lpvyL $PERFPOOL 1" "zpool.iostat" 75 "vmstat -t 1" "vmstat" 76 "mpstat -P ALL 1" "mpstat" 77 "iostat -tdxyz 1" "iostat" 78 "$perf_record_cmd" "perf" 79 ) 80else 81 export collect_scripts=( 82 "$PERF_SCRIPTS/io.d $PERFPOOL $lun_list 1" "io" 83 "vmstat -T d 1" "vmstat" 84 "mpstat -T d 1" "mpstat" 85 "iostat -T d -xcnz 1" "iostat" 86 ) 87fi 88 89log_note "Sequential writes with settings: $(print_perf_settings)" 90do_fio_run sequential_writes.fio true false 91log_pass "Measure IO stats during sequential write load" 92