From 516b0db87e97573a056d26fa87205153b26a4867 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Fri, 21 Oct 2016 15:47:21 -0400 Subject: [PATCH] os/bluestore: default to bluestore_sync_submit_transaction=true 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 4f1a588bc39a..4b1fa42d3cb6 100644 --- a/src/common/config_opts.h +++ b/src/common/config_opts.h @@ -1011,7 +1011,7 @@ OPTION(bluestore_rocksdb_options, OPT_STR, "compression=kNoCompression,max_write OPTION(bluestore_fsck_on_mount, OPT_BOOL, false) OPTION(bluestore_fsck_on_umount, OPT_BOOL, false) OPTION(bluestore_fsck_on_mkfs, OPT_BOOL, true) -OPTION(bluestore_sync_submit_transaction, OPT_BOOL, false) // submit kv txn in queueing thread (not kv_sync_thread) +OPTION(bluestore_sync_submit_transaction, OPT_BOOL, true) // submit kv txn in queueing thread (not kv_sync_thread) OPTION(bluestore_sync_wal_apply, OPT_BOOL, true) // perform initial wal work synchronously (possibly in combination with aio so we only *queue* ios) OPTION(bluestore_wal_threads, OPT_INT, 4) OPTION(bluestore_wal_thread_timeout, OPT_INT, 30) -- 2.47.3