Flapping test. Why?
Test / buildenv (push) Successful in 10s Details
Test / build (push) Successful in 2m39s Details
Test / test_cas (push) Successful in 9s Details
Test / make_test (push) Successful in 36s Details
Test / test_change_pg_size (push) Successful in 10s Details
Test / test_change_pg_count (push) Successful in 46s Details
Test / test_create_nomaxid (push) Successful in 8s Details
Test / test_change_pg_count_ec (push) Successful in 49s Details
Test / test_etcd_fail (push) Successful in 55s Details
Test / test_interrupted_rebalance_imm (push) Successful in 1m36s Details
Test / test_add_osd (push) Successful in 3m24s Details
Test / test_failure_domain (push) Successful in 9s Details
Test / test_interrupted_rebalance_ec_imm (push) Successful in 1m18s Details
Test / test_snapshot (push) Successful in 25s Details
Test / test_minsize_1 (push) Successful in 12s Details
Test / test_snapshot_ec (push) Successful in 22s Details
Test / test_rm (push) Successful in 12s Details
Test / test_interrupted_rebalance_ec (push) Successful in 3m3s Details
Test / test_move_reappear (push) Failing after 50s Details
Test / test_snapshot_down (push) Successful in 28s Details
Test / test_snapshot_down_ec (push) Successful in 24s Details
Test / test_snapshot_chain (push) Successful in 1m36s Details
Test / test_splitbrain (push) Successful in 15s Details
Test / test_snapshot_chain_ec (push) Failing after 3m30s Details
Test / test_rebalance_verify_imm (push) Successful in 3m20s Details
Test / test_interrupted_rebalance (push) Failing after 10m7s Details
Test / test_rebalance_verify (push) Failing after 6m19s Details
Test / test_rebalance_verify_ec (push) Failing after 4m11s Details
Test / test_write_no_same (push) Successful in 14s Details
Test / test_write (push) Failing after 3m7s Details
Test / test_heal_csum_32k_dmj (push) Has been cancelled Details
Test / test_heal_csum_32k_dj (push) Has been cancelled Details
Test / test_heal_csum_32k (push) Has been cancelled Details
Test / test_heal_csum_4k_dmj (push) Has been cancelled Details
Test / test_heal_csum_4k_dj (push) Has been cancelled Details
Test / test_heal_csum_4k (push) Has been cancelled Details
Test / test_scrub (push) Has been cancelled Details
Test / test_scrub_zero_osd_2 (push) Has been cancelled Details
Test / test_scrub_xor (push) Has been cancelled Details
Test / test_scrub_pg_size_3 (push) Has been cancelled Details
Test / test_scrub_pg_size_6_pg_minsize_4_osd_count_6_ec (push) Has been cancelled Details
Test / test_scrub_ec (push) Has been cancelled Details
Test / test_rebalance_verify_ec_imm (push) Has been cancelled Details
Test / test_heal_pg_size_2 (push) Has been cancelled Details
Test / test_write_xor (push) Has been cancelled Details
Test / test_heal_ec (push) Has been cancelled Details

Vitaliy Filippov 2023-12-30 14:54:17 +03:00
parent 5e55ac6105
commit 7b14e024ab
2 changed files with 2 additions and 1 deletions

View File

@ -283,6 +283,7 @@ void osd_t::parse_config(bool init)
this->tfd->clear_timer(autosync_timer_id);
autosync_timer_id = this->tfd->set_timer(autosync_interval*1000, true, [this](int timer_id)
{
printf("autosync!\n");
autosync();
});
}

View File

@ -7,7 +7,7 @@ OSD_COUNT=5
OSD_ARGS="$OSD_ARGS"
for i in $(seq 1 $OSD_COUNT); do
dd if=/dev/zero of=./testdata/test_osd$i.bin bs=1024 count=1 seek=$((OSD_SIZE*1024-1))
build/src/vitastor-osd --osd_num $i --bind_address 127.0.0.1 --etcd_stats_interval 5 $OSD_ARGS --etcd_address $ETCD_URL $(build/src/vitastor-disk simple-offsets --format options ./testdata/test_osd$i.bin 2>/dev/null) >>./testdata/osd$i.log 2>&1 &
build/src/vitastor-osd --log_level 10 --osd_num $i --bind_address 127.0.0.1 --etcd_stats_interval 5 $OSD_ARGS --etcd_address $ETCD_URL $(build/src/vitastor-disk simple-offsets --format options ./testdata/test_osd$i.bin 2>/dev/null) >>./testdata/osd$i.log 2>&1 &
eval OSD${i}_PID=$!
done