4 # This file and its contents are supplied under the terms of the
5 # Common Development and Distribution License ("CDDL"), version 1.0.
6 # You may only use this file in accordance with the terms of version
9 # A full copy of the text of the CDDL should have accompanied this
10 # source. A copy of the CDDL is also available via the Internet at
11 # http://www.illumos.org/license/CDDL.
15 # Copyright (c) 2015, 2016 by Delphix. All rights reserved.
20 # Trigger fio runs using the sequential_writes job file. The number of runs and
21 # data collected is determined by the PERF_* variables. See do_fio_run for
22 # details about these variables.
24 # Prior to each fio run the dataset is recreated, and fio writes new files
25 # into an otherwise empty pool.
28 .
$STF_SUITE/include
/libtest.shlib
29 .
$STF_SUITE/tests
/perf
/perf.shlib
31 log_assert
"Measure IO stats during sequential write load"
36 log_must zfs destroy
$TESTFS
39 export TESTFS
=$PERFPOOL/testfs
41 log_must zfs create
$PERF_FS_OPTS $TESTFS
43 # Aim to fill the pool to 50% capacity while accounting for a 3x compressratio.
44 export TOTAL_SIZE
=$
(($
(get_prop avail
$TESTFS) * 3 / 2))
46 # Variables for use by fio.
47 if [[ -n $PERF_REGRESSION_WEEKLY ]]; then
48 export PERF_RUNTIME
=${PERF_RUNTIME:-$PERF_RUNTIME_WEEKLY}
49 export PERF_RUNTYPE
=${PERF_RUNTYPE:-'weekly'}
50 export PERF_NTHREADS
=${PERF_NTHREADS:-'8 16'}
51 export PERF_SYNC_TYPES
=${PERF_SYNC_TYPES:-'0 1'}
52 export PERF_IOSIZES
=${PERF_IOSIZES:-'8k 128k 1m'}
53 elif [[ -n $PERF_REGRESSION_NIGHTLY ]]; then
54 export PERF_RUNTIME
=${PERF_RUNTIME:-$PERF_RUNTIME_NIGHTLY}
55 export PERF_RUNTYPE
=${PERF_RUNTYPE:-'nightly'}
56 export PERF_NTHREADS
=${PERF_NTHREADS:-'64 128'}
57 export PERF_SYNC_TYPES
=${PERF_SYNC_TYPES:-'1'}
58 export PERF_IOSIZES
=${PERF_IOSIZES:-'8k 128k 1m'}
61 # Set up the scripts and output files that will log performance data.
62 lun_list
=$
(pool_to_lun_list
$PERFPOOL)
63 log_note
"Collecting backend IO stats with lun list $lun_list"
64 export collect_scripts
=("dtrace -s $PERF_SCRIPTS/io.d $PERFPOOL $lun_list 1"
65 "io" "vmstat 1" "vmstat" "mpstat 1" "mpstat" "iostat -xcnz 1" "iostat"
66 "dtrace -s $PERF_SCRIPTS/profile.d" "profile" "kstat zfs:0 1" "kstat")
68 log_note
"Sequential writes with $PERF_RUNTYPE settings"
69 do_fio_run sequential_writes.fio true false
70 log_pass
"Measure IO stats during sequential write load"