aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/zpool-config/zpool-raidz.sh
blob: 4f022666f2006c80b16036f0d63f6e274dc592f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#!/bin/bash
#
# Zpool Raid-Z Configuration
#
# This script is used to simplify testing with the /dev/disk/zpool/[A-Z][1-n]
# devices.  It assumes that you have already populated /dev/disk/zpool/ by
# creating an /etc/zfs/zdev.conf file based on your system design.  You may
# use the zpool_layout command or manually create your own config file.
#
# You can then use either the zpool-create.sh or the zpios.sh test script to
# test various Raid-Z configurations by adjusting the following tunables.
# For example if you wanted to create and test a single 4-disk Raid-Z2
# configuration using disks [A-D]1 with dedicated ZIL and L2ARC devices
# you could run the following.
#
# ZIL="log A2" L2ARC="cache B2" RANKS=1 CHANNELS=4 LEVEL=2 \
# zpool-create.sh -c zpool-raidz
#
# zpool status tank
#   pool: tank
#  state: ONLINE
#  scan: none requested
# config:
# 
# 	NAME        STATE     READ WRITE CKSUM
# 	tank        ONLINE       0     0     0
# 	  raidz2-0  ONLINE       0     0     0
# 	    A1      ONLINE       0     0     0
# 	    B1      ONLINE       0     0     0
# 	    C1      ONLINE       0     0     0
# 	    D1      ONLINE       0     0     0
# 	logs
# 	  A2        ONLINE       0     0     0
# 	cache
# 	  B2        ONLINE       0     0     0
#  
# errors: No known data errors
# 

# Number of interior vdevs to create using the following rank ids.
RANKS=${RANKS:-1}
RANK_LIST=( 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 )

# Number of devices per vdev using the following channel ids.
CHANNELS=${CHANNELS:-8}
CHANNEL_LIST=( A B C D E F G H I J K L M N O P Q R S T U V W X Y Z )

# Raid-Z Level: 1, 2, or 3.
LEVEL=${LEVEL:-2}

# Create a ZIL vdev as follows.
ZIL=${ZIL:-}

# Create an L2ARC vdev as follows.
L2ARC=${L2ARC:-}


raidz_setup() {
        local RANKS=$1
        local CHANNELS=$2

        RAIDZS=()
        for (( i=0; i<${RANKS}; i++ )); do
                RANK=${RANK_LIST[$i]}
                RAIDZ=("raidz${LEVEL}")

                for (( j=0, k=1; j<${CHANNELS}; j++, k++ )); do
                        RAIDZ[$k]="${CHANNEL_LIST[$j]}${RANK}"
                done

                RAIDZS[$i]="${RAIDZ[*]}"
        done

        return 0
}

zpool_create() {
        raidz_setup ${RANKS} ${CHANNELS}

	ZPOOL_DEVICES="${RAIDZS[*]} ${ZIL} ${L2ARC}"
        msg ${ZPOOL} create ${FORCE_FLAG} ${ZPOOL_NAME} ${ZPOOL_DEVICES}
        ${ZPOOL} create ${FORCE_FLAG} ${ZPOOL_NAME} ${ZPOOL_DEVICES} || exit 1
}

zpool_destroy() {
        msg ${ZPOOL} destroy ${ZPOOL_NAME}
        ${ZPOOL} destroy ${ZPOOL_NAME}
}