diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 18:45:59 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 18:45:59 +0000 |
commit | 19fcec84d8d7d21e796c7624e521b60d28ee21ed (patch) | |
tree | 42d26aa27d1e3f7c0b8bd3fd14e7d7082f5008dc /src/crush/sample.txt | |
parent | Initial commit. (diff) | |
download | ceph-upstream.tar.xz ceph-upstream.zip |
Adding upstream version 16.2.11+ds.upstream/16.2.11+dsupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/crush/sample.txt')
-rw-r--r-- | src/crush/sample.txt | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/src/crush/sample.txt b/src/crush/sample.txt new file mode 100644 index 000000000..f7e0ac396 --- /dev/null +++ b/src/crush/sample.txt @@ -0,0 +1,47 @@ + +# devices +device 1 osd001 +device 2 osd002 +device 3 osd003 down # same as offload 1.0 +device 4 osd004 offload 0 # 0.0 -> normal, 1.0 -> failed +device 5 osd005 offload 0.1 +device 6 osd006 offload 0.1 + +# hierarchy +type 0 osd # 'device' is actually the default for 0 +type 2 cab +type 3 row +type 10 pool + +cab root { + id -1 # optional + alg tree # required + item osd001 + item osd002 weight 600 pos 1 + item osd003 weight 600 pos 0 + item osd004 weight 600 pos 3 + item osd005 weight 600 pos 4 +} + +# rules +rule normal { + # these are required. + pool 0 + type replicated + min_size 1 + max_size 4 + # need 1 or more of these. + step take root + step choose firstn 0 type osd + step emit +} + +rule { + pool 1 + type erasure + min_size 3 + max_size 6 + step take root + step choose indep 0 type osd + step emit +} |