blob: ecb1035b6390a29e9b9c2bec703587eb68d49a4f (
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
|
overrides:
ceph:
log-ignorelist:
- \(MON_DOWN\)
- \(MGR_DOWN\)
- slow request
- Not found or unloadable
- evicting unresponsive client
meta:
- desc: install ceph/nautilus latest
tasks:
- install:
branch: nautilus
exclude_packages:
- ceph-mgr-cephadm
- cephadm
- print: "**** done install nautilus"
- ceph:
- print: "**** done ceph"
# create a hit set test pool that will generate hit sets prior to octopus
- exec:
mon.a:
- sudo ceph osd pool create test-hit-set-base 32
- sudo ceph osd pool create test-hit-set-cache 32
- sudo ceph osd tier add test-hit-set-base test-hit-set-cache
- sudo ceph osd pool set test-hit-set-cache hit_set_type bloom
- sudo ceph osd pool set test-hit-set-cache hit_set_count 32
- sudo ceph osd pool set test-hit-set-cache hit_set_period 15
- rados -p test-hit-set-cache bench 30 write -b 1
|