mirror of
https://github.com/ceph/ceph
synced 2025-04-04 15:36:24 +00:00
tests: Thrasher: handle "OSD has the store locked" gracefully
On slower machines (VPS, OVH) it takes time for the OSD to go down. Fixes: http://tracker.ceph.com/issues/19556 Signed-off-by: Nathan Cutler <ncutler@suse.com>
This commit is contained in:
parent
5624b19099
commit
a5b19d2d73
@ -257,12 +257,22 @@ class Thrasher:
|
|||||||
break
|
break
|
||||||
log.debug("ceph-objectstore-tool binary not present, trying again")
|
log.debug("ceph-objectstore-tool binary not present, trying again")
|
||||||
|
|
||||||
proc = exp_remote.run(args=cmd, wait=True,
|
# ceph-objectstore-tool might bogusly fail with "OSD has the store locked"
|
||||||
check_status=False, stdout=StringIO())
|
# see http://tracker.ceph.com/issues/19556
|
||||||
if proc.exitstatus:
|
with safe_while(sleep=15, tries=40, action="ceph-objectstore-tool --op list-pgs") as proceed:
|
||||||
raise Exception("ceph-objectstore-tool: "
|
while proceed():
|
||||||
"exp list-pgs failure with status {ret}".
|
proc = exp_remote.run(args=cmd, wait=True,
|
||||||
format(ret=proc.exitstatus))
|
check_status=False,
|
||||||
|
stdout=StringIO(), stderr=StringIO())
|
||||||
|
if proc.exitstatus == 0:
|
||||||
|
break
|
||||||
|
elif proc.exitstatus == 1 and proc.stderr == "OSD has the store locked":
|
||||||
|
continue
|
||||||
|
else:
|
||||||
|
raise Exception("ceph-objectstore-tool: "
|
||||||
|
"exp list-pgs failure with status {ret}".
|
||||||
|
format(ret=proc.exitstatus))
|
||||||
|
|
||||||
pgs = proc.stdout.getvalue().split('\n')[:-1]
|
pgs = proc.stdout.getvalue().split('\n')[:-1]
|
||||||
if len(pgs) == 0:
|
if len(pgs) == 0:
|
||||||
self.log("No PGs found for osd.{osd}".format(osd=exp_osd))
|
self.log("No PGs found for osd.{osd}".format(osd=exp_osd))
|
||||||
|
Loading…
Reference in New Issue
Block a user