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/test/test_missing_unfound.sh | |
parent | Initial commit. (diff) | |
download | ceph-upstream/16.2.11+ds.tar.xz ceph-upstream/16.2.11+ds.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/test/test_missing_unfound.sh')
-rwxr-xr-x | src/test/test_missing_unfound.sh | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/test/test_missing_unfound.sh b/src/test/test_missing_unfound.sh new file mode 100755 index 000000000..d5db1e42d --- /dev/null +++ b/src/test/test_missing_unfound.sh @@ -0,0 +1,29 @@ +#!/bin/sh + +CEPH_NUM_OSD=3 ./vstart.sh -d -n -x -o 'osd recovery max active = 1' + +TEST_POOL=rbd + +./ceph -c ./ceph.conf osd pool set $TEST_POOL size 3 + +sleep 20 + +./init-ceph stop osd.1 +./ceph osd down 1 # faster + +for f in `seq 1 100` +do + ./rados -c ./ceph.conf -p $TEST_POOL put test_$f /etc/passwd +done + +# zap some objects on both replicas +#rm dev/osd[02]/current/*/test_40* + +# some on only one +rm dev/osd0/current/*/test_* +#rm dev/osd2/current/*/test_6* + +# ...and see how we fare! +./init-ceph start osd.1 + + |