diff options
author | Esmaeil Mirvakili <smirvaki@ucsc.edu> | 2022-02-01 11:18:51 +0100 |
---|---|---|
committer | esmaeil-mirvakili <smirvaki@ucsc.edu> | 2022-03-22 15:22:12 +0100 |
commit | b4268f5e1a4c38dfc022dd9333adeb03dc68e65f (patch) | |
tree | d44b4674670cb4adc35cc8c1c93ee8e4bbca0144 /qa/objectstore_debug | |
parent | Merge pull request #45420 from mgfritch/cephadm-infer-image-pull (diff) | |
download | ceph-b4268f5e1a4c38dfc022dd9333adeb03dc68e65f.tar.xz ceph-b4268f5e1a4c38dfc022dd9333adeb03dc68e65f.zip |
os/bluestore: SlowFastCoDel added to the BlueStore
Signed-off-by: Esmaeil Mirvakili <smirvaki@ucsc.edu>
Diffstat (limited to 'qa/objectstore_debug')
-rw-r--r-- | qa/objectstore_debug/bluestore-codel.yaml | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/qa/objectstore_debug/bluestore-codel.yaml b/qa/objectstore_debug/bluestore-codel.yaml new file mode 100644 index 00000000000..40f6fc084e1 --- /dev/null +++ b/qa/objectstore_debug/bluestore-codel.yaml @@ -0,0 +1,45 @@ +overrides: + thrashosds: + bdev_inject_crash: 2 + bdev_inject_crash_probability: .5 + ceph: + fs: xfs + conf: + osd: + osd objectstore: bluestore + bluestore block size: 96636764160 + debug bluestore: 20 + debug bluefs: 20 + debug rocksdb: 10 + bluestore fsck on mount: true + bluestore allocator: bitmap + # lower the full ratios since we can fill up a 100gb osd so quickly + mon osd full ratio: .9 + mon osd backfillfull_ratio: .85 + mon osd nearfull ratio: .8 + osd failsafe full ratio: .95 + # this doesn't work with failures bc the log writes are not atomic across the two backends + # bluestore bluefs env mirror: true + bdev enable discard: true + bdev async discard: true + bluestore codel: true + ceph-deploy: + fs: xfs + bluestore: yes + conf: + osd: + osd objectstore: bluestore + bluestore block size: 96636764160 + debug bluestore: 20 + debug bluefs: 20 + debug rocksdb: 10 + bluestore fsck on mount: true + # lower the full ratios since we can fill up a 100gb osd so quickly + mon osd full ratio: .9 + mon osd backfillfull_ratio: .85 + mon osd nearfull ratio: .8 + osd failsafe full ratio: .95 + bdev enable discard: true + bdev async discard: true + bluestore codel: true + |