From 36dd54989323cb01914ff341689c8561061128dd Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Mon, 3 Apr 2017 16:53:33 -0400 Subject: [PATCH] os/bluestore: bluestore_deferred_batch_ops = 32 (not 8) A bit more batching. Signed-off-by: Sage Weil --- src/common/config_opts.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/config_opts.h b/src/common/config_opts.h index 4c07b5b5040..7891e8faa9d 100644 --- a/src/common/config_opts.h +++ b/src/common/config_opts.h @@ -1111,7 +1111,7 @@ OPTION(bluestore_throttle_cost_per_io_ssd, OPT_U64, 4000) OPTION(bluestore_throttle_cost_per_io, OPT_U64, 0) OPTION(bluestore_deferred_max_ops, OPT_U64, 512) OPTION(bluestore_deferred_max_bytes, OPT_U64, 128*1024*1024) -OPTION(bluestore_deferred_batch_ops, OPT_U64, 8) +OPTION(bluestore_deferred_batch_ops, OPT_U64, 32) OPTION(bluestore_nid_prealloc, OPT_INT, 1024) OPTION(bluestore_blobid_prealloc, OPT_U64, 10240) OPTION(bluestore_clone_cow, OPT_BOOL, true) // do copy-on-write for clones -- 2.47.3