Skip to content

Commit c0ca0eb

Browse files
committed
qa/suites/nvmeof/thrash: Add "is unavailable" to log-ignorelist
This commit also: - Remove --rbd_iostat from thrasher fio - Log iteration details before printing stats in nvmeof_tharsher Signed-off-by: Vallari Agrawal <[email protected]>
1 parent f670916 commit c0ca0eb

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

qa/suites/nvmeof/thrash/thrashers/nvmeof_mon_thrash.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ overrides:
1111
- NVMEOF_SINGLE_GATEWAY
1212
- NVMEOF_GATEWAY_DOWN
1313
- are in unavailable state
14+
- is unavailable
1415
- is in error state
1516
- failed cephadm daemon
1617

qa/suites/nvmeof/thrash/thrashers/nvmeof_thrash.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ overrides:
66
- NVMEOF_SINGLE_GATEWAY
77
- NVMEOF_GATEWAY_DOWN
88
- are in unavailable state
9+
- is unavailable
910
- is in error state
1011
- failed cephadm daemon
1112

qa/suites/nvmeof/thrash/workloads/fio.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ tasks:
44
timeout: 30m
55
clients:
66
client.0:
7-
- nvmeof/fio_test.sh --rbd_iostat
7+
- nvmeof/fio_test.sh
88
env:
99
RBD_POOL: mypool
1010
IOSTAT_INTERVAL: '10'

qa/tasks/nvmeof.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,7 @@ def do_thrash(self):
469469

470470
self.log(f'waiting for {revive_delay} secs before reviving')
471471
time.sleep(revive_delay) # blocking wait
472-
self.log('done waiting before reviving')
472+
self.log(f'done waiting before reviving - iteration #{len(summary)}: {iteration_summary}')
473473

474474
self.do_checks()
475475
self.switch_task()
@@ -488,7 +488,7 @@ def do_thrash(self):
488488
if thrash_delay > 0.0:
489489
self.log(f'waiting for {thrash_delay} secs before thrashing')
490490
time.sleep(thrash_delay) # blocking
491-
self.log('done waiting before thrashing')
491+
self.log('done waiting before thrashing - everything should be up now')
492492

493493
self.do_checks()
494494
self.switch_task()

0 commit comments

Comments
 (0)