Add a FIXME to test_interrupted_rebalance

rm-left-on-dead
Vitaliy Filippov 2022-06-05 00:06:53 +03:00
parent 404e43dd2d
commit be4087d9d2
2 changed files with 5 additions and 4 deletions

View File

@ -5,7 +5,7 @@ PG_COUNT=16
. `dirname $0`/run_3osds.sh
NOBJ=$((128*8/PG_DATA_SIZE))
NOBJ=$(((128*8+PG_DATA_SIZE-1)/PG_DATA_SIZE))
LD_PRELOAD="build/src/libfio_vitastor.so" \
fio -thread -name=test -ioengine=build/src/libfio_vitastor.so -bs=4M -direct=1 -iodepth=1 -fsync=1 -rw=write \

View File

@ -34,9 +34,10 @@ try_reweight 5 1
wait_finish_rebalance 60
# Check that PGs never had degraded objects !
if grep has_degraded ./testdata/mon.log; then
format_error "Some copies of objects were lost during interrupted rebalancings"
fi
# FIXME: In fact, the test doesn't guarantee it because PGs aren't always peered only with full prior OSD sets :-(
#if grep has_degraded ./testdata/mon.log; then
# format_error "Some copies of objects were lost during interrupted rebalancings"
#fi
# Check that no objects are lost !
nobj=`$ETCDCTL get --prefix '/vitastor/pg/stats' --print-value-only | jq -s '[ .[].object_count ] | reduce .[] as $num (0; .+$num)'`