]> git.proxmox.com Git - ceph.git/blob - ceph/src/test/crush/crush-classes.sh
update sources to v12.1.1
[ceph.git] / ceph / src / test / crush / crush-classes.sh
1 #!/bin/bash
2 #
3 # Copyright (C) 2017 Red Hat <contact@redhat.com>
4 #
5 # Author: Loic Dachary <loic@dachary.org>
6 #
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU Library Public License as published by
9 # the Free Software Foundation; either version 2, or (at your option)
10 # any later version.
11 #
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU Library Public License for more details.
16 #
17
18 source $(dirname $0)/../detect-build-env-vars.sh
19 source $CEPH_ROOT/qa/workunits/ceph-helpers.sh
20
21 function run() {
22 local dir=$1
23 shift
24
25 export CEPH_MON="127.0.0.1:7130" # git grep '\<7130\>' : there must be only one
26 export CEPH_ARGS
27 CEPH_ARGS+="--fsid=$(uuidgen) --auth-supported=none "
28 CEPH_ARGS+="--mon-host=$CEPH_MON "
29 #
30 # Disable auto-class, so we can inject device class manually below
31 #
32 CEPH_ARGS+="--osd-class-update-on-start=false "
33
34 local funcs=${@:-$(set | sed -n -e 's/^\(TEST_[0-9a-z_]*\) .*/\1/p')}
35 for func in $funcs ; do
36 setup $dir || return 1
37 $func $dir || return 1
38 teardown $dir || return 1
39 done
40 }
41
42 function add_something() {
43 local dir=$1
44 local obj=${2:-SOMETHING}
45
46 local payload=ABCDEF
47 echo $payload > $dir/ORIGINAL
48 rados --pool rbd put $obj $dir/ORIGINAL || return 1
49 }
50
51 function get_osds_up() {
52 local poolname=$1
53 local objectname=$2
54
55 local osds=$(ceph --format xml osd map $poolname $objectname 2>/dev/null | \
56 $XMLSTARLET sel -t -m "//up/osd" -v . -o ' ')
57 # get rid of the trailing space
58 echo $osds
59 }
60
61 function TEST_classes() {
62 local dir=$1
63
64 run_mon $dir a || return 1
65 run_osd $dir 0 || return 1
66 run_osd $dir 1 || return 1
67 run_osd $dir 2 || return 1
68
69 test "$(get_osds_up rbd SOMETHING)" == "1 2 0" || return 1
70 add_something $dir SOMETHING || return 1
71
72 #
73 # osd.0 has class ssd and the rule is modified
74 # to only take ssd devices.
75 #
76 ceph osd getcrushmap > $dir/map || return 1
77 crushtool -d $dir/map -o $dir/map.txt || return 1
78 ${SED} -i \
79 -e '/device 0 osd.0/s/$/ class ssd/' \
80 -e '/step take default/s/$/ class ssd/' \
81 $dir/map.txt || return 1
82 crushtool -c $dir/map.txt -o $dir/map-new || return 1
83 ceph osd setcrushmap -i $dir/map-new || return 1
84
85 #
86 # There can only be one mapping since there only is
87 # one device with ssd class.
88 #
89 ok=false
90 for delay in 2 4 8 16 32 64 128 256 ; do
91 if test "$(get_osds_up rbd SOMETHING_ELSE)" == "0" ; then
92 ok=true
93 break
94 fi
95 sleep $delay
96 ceph osd dump # for debugging purposes
97 ceph pg dump # for debugging purposes
98 done
99 $ok || return 1
100 #
101 # Writing keeps working because the pool is min_size 1 by
102 # default.
103 #
104 add_something $dir SOMETHING_ELSE || return 1
105
106 #
107 # Sanity check that the rule indeed has ssd
108 # generated bucket with a name including ~ssd.
109 #
110 ceph osd crush dump | grep -q '~ssd' || return 1
111 }
112
113 function TEST_set_device_class() {
114 local dir=$1
115
116 TEST_classes $dir || return 1
117
118 ceph osd crush set-device-class ssd osd.0 || return 1
119 ceph osd crush class ls-osd ssd | grep 0 || return 1
120 ceph osd crush set-device-class ssd osd.1 || return 1
121 ceph osd crush class ls-osd ssd | grep 1 || return 1
122 ceph osd crush set-device-class ssd 0 1 || return 1 # should be idempotent
123
124 ok=false
125 for delay in 2 4 8 16 32 64 128 256 ; do
126 if test "$(get_osds_up rbd SOMETHING_ELSE)" == "0 1" ; then
127 ok=true
128 break
129 fi
130 sleep $delay
131 ceph osd crush dump
132 ceph osd dump # for debugging purposes
133 ceph pg dump # for debugging purposes
134 done
135 $ok || return 1
136 }
137
138 function TEST_mon_classes() {
139 local dir=$1
140
141 run_mon $dir a || return 1
142 ceph osd crush class create CLASS || return 1
143 ceph osd crush class create CLASS || return 1 # idempotent
144 ceph osd crush class ls | grep CLASS || return 1
145 ceph osd crush class rename CLASS TEMP || return 1
146 ceph osd crush class ls | grep TEMP || return 1
147 ceph osd crush class rename TEMP CLASS || return 1
148 ceph osd crush class ls | grep CLASS || return 1
149 ceph osd crush class rm CLASS || return 1
150 expect_failure $dir ENOENT ceph osd crush class rm CLASS || return 1
151 }
152
153 main crush-classes "$@"
154
155 # Local Variables:
156 # compile-command: "cd ../../../build ; ln -sf ../src/ceph-disk/ceph_disk/main.py bin/ceph-disk && make -j4 && ../src/test/crush/crush-classes.sh"
157 # End: