blob: c71c9ce8d2aed0a0bc0c55c43a481149b807f182 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
"""
Thrash -- Simulate random osd failures.
"""
import contextlib
import logging
import gevent
import time
import random
log = logging.getLogger(__name__)
@contextlib.contextmanager
def task(ctx, config):
"""
"Thrash" snap creation and removal on the listed pools
Example:
thrash_pool_snaps:
pools: [.rgw.buckets, .rgw.buckets.index]
max_snaps: 10
min_snaps: 5
period: 10
"""
stopping = False
def do_thrash():
pools = config.get('pools', [])
max_snaps = config.get('max_snaps', 10)
min_snaps = config.get('min_snaps', 5)
period = config.get('period', 30)
snaps = []
manager = ctx.managers['ceph']
def remove_snap():
assert len(snaps) > 0
snap = random.choice(snaps)
log.info("Removing snap %s" % (snap,))
for pool in pools:
manager.remove_pool_snap(pool, str(snap))
snaps.remove(snap)
def add_snap(snap):
log.info("Adding snap %s" % (snap,))
for pool in pools:
manager.add_pool_snap(pool, str(snap))
snaps.append(snap)
index = 0
while not stopping:
index += 1
time.sleep(period)
if len(snaps) <= min_snaps:
add_snap(index)
elif len(snaps) >= max_snaps:
remove_snap()
else:
random.choice([lambda: add_snap(index), remove_snap])()
log.info("Stopping")
thread = gevent.spawn(do_thrash)
yield
stopping = True
thread.join()
|