blob: 06266656a98f16c6b741748f95db30addf97a442 (
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
|
# example configuration file for ceph-filestore.fio
[global]
debug filestore = 0/0
debug journal = 0/0
# spread objects over 8 collections
osd pool default pg num = 8
# increasing shards can help when scaling number of collections
osd op num shards = 5
filestore fd cache size = 32
[osd]
osd objectstore = filestore
# use directory= option from fio job file
osd data = ${fio_dir}
# journal inside fio_dir
osd journal = ${fio_dir}/journal
osd journal size = 500
journal force aio = 1
# log outside fio_dir
log file = ${fio_dir}.log
|