mirror of
https://github.com/ceph/ceph
synced 2025-01-20 18:21:57 +00:00
os/bluestore: adjust compression blob sizes down
These were way too big. 64KB is enough to get good compression, and 4MB is way too big. Signed-off-by: Sage Weil <sage@redhat.com>
This commit is contained in:
parent
a389a29e16
commit
f32b682f13
@ -973,8 +973,8 @@ OPTION(bluestore_min_alloc_size_ssd, OPT_U32, 4*1024)
|
||||
OPTION(bluestore_max_alloc_size, OPT_U32, 0)
|
||||
OPTION(bluestore_compression, OPT_STR, "none") // force|aggressive|passive|none
|
||||
OPTION(bluestore_compression_algorithm, OPT_STR, "snappy")
|
||||
OPTION(bluestore_compression_min_blob_size, OPT_U32, 256*1024)
|
||||
OPTION(bluestore_compression_max_blob_size, OPT_U32, 4*1024*1024)
|
||||
OPTION(bluestore_compression_min_blob_size, OPT_U32, 128*1024)
|
||||
OPTION(bluestore_compression_max_blob_size, OPT_U32, 512*1024)
|
||||
OPTION(bluestore_gc_max_blob_depth, OPT_U32, 3)
|
||||
OPTION(bluestore_gc_merge_data, OPT_BOOL, true)
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user