]> git.proxmox.com Git - mirror_zfs-debian.git/blob - tests/zfs-tests/tests/perf/regression/random_writes.ksh
New upstream version 0.7.2
[mirror_zfs-debian.git] / tests / zfs-tests / tests / perf / regression / random_writes.ksh
1 #!/bin/ksh
2
3 #
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
7 # 1.0 of the CDDL.
8 #
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.
12 #
13
14 #
15 # Copyright (c) 2015, 2016 by Delphix. All rights reserved.
16 #
17
18 #
19 # Description:
20 # Trigger fio runs using the random_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.
23 #
24 # Prior to each fio run the dataset is recreated, and fio writes new files
25 # into an otherwise empty pool.
26 #
27
28 . $STF_SUITE/include/libtest.shlib
29 . $STF_SUITE/tests/perf/perf.shlib
30
31 function cleanup
32 {
33 # kill fio and iostat
34 pkill ${fio##*/}
35 pkill ${iostat##*/}
36 log_must_busy zfs destroy $TESTFS
37 log_must_busy zpool destroy $PERFPOOL
38 }
39
40 trap "log_fail \"Measure IO stats during random read load\"" SIGTERM
41
42 log_assert "Measure IO stats during random write load"
43 log_onexit cleanup
44
45 export TESTFS=$PERFPOOL/testfs
46 recreate_perfpool
47 log_must zfs create $PERF_FS_OPTS $TESTFS
48
49 # Aim to fill the pool to 50% capacity while accounting for a 3x compressratio.
50 export TOTAL_SIZE=$(($(get_prop avail $TESTFS) * 3 / 2))
51
52 # Variables for use by fio.
53 if [[ -n $PERF_REGRESSION_WEEKLY ]]; then
54 export PERF_RUNTIME=${PERF_RUNTIME:-$PERF_RUNTIME_WEEKLY}
55 export PERF_RUNTYPE=${PERF_RUNTYPE:-'weekly'}
56 export PERF_NTHREADS=${PERF_NTHREADS:-'8 16 64'}
57 export PERF_SYNC_TYPES=${PERF_SYNC_TYPES:-'0 1'}
58 export PERF_IOSIZES=${PERF_IOSIZES:-'8k'}
59 elif [[ -n $PERF_REGRESSION_NIGHTLY ]]; then
60 export PERF_RUNTIME=${PERF_RUNTIME:-$PERF_RUNTIME_NIGHTLY}
61 export PERF_RUNTYPE=${PERF_RUNTYPE:-'nightly'}
62 export PERF_NTHREADS=${PERF_NTHREADS:-'64 128'}
63 export PERF_SYNC_TYPES=${PERF_SYNC_TYPES:-'1'}
64 export PERF_IOSIZES=${PERF_IOSIZES:-'8k'}
65 fi
66
67 # Set up the scripts and output files that will log performance data.
68 lun_list=$(pool_to_lun_list $PERFPOOL)
69 log_note "Collecting backend IO stats with lun list $lun_list"
70 if is_linux; then
71 export collect_scripts=("zpool iostat -lpvyL $PERFPOOL 1" "zpool.iostat"
72 "vmstat 1" "vmstat" "mpstat -P ALL 1" "mpstat" "iostat -dxyz 1"
73 "iostat")
74 else
75 export collect_scripts=("$PERF_SCRIPTS/io.d $PERFPOOL $lun_list 1" "io"
76 "vmstat 1" "vmstat" "mpstat 1" "mpstat" "iostat -xcnz 1" "iostat")
77 fi
78
79 log_note "Random writes with $PERF_RUNTYPE settings"
80 do_fio_run random_writes.fio true false
81 log_pass "Measure IO stats during random write load"