From: Sage Weil Date: Thu, 24 Jan 2013 06:16:50 +0000 (-0800) Subject: Revert "filestore: disable extra committing queue allowance" X-Git-Tag: v0.57~121 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=5f9ab930fc9e6828100ce2fb9e354b04064ced39;p=ceph.git Revert "filestore: disable extra committing queue allowance" This reverts commit 44dca5c8c5058acf9bc391303dc77893793ce0be. The allowance is not only added for btrfs as of commit e639254a0c5f8e3528fa8f2b2b451296653556bc, which makes us happy for both non-btrfs (lower latency) and btrfs (better small io throughput, no big stall during commit). Signed-off-by: Sage Weil --- diff --git a/src/common/config_opts.h b/src/common/config_opts.h index e5ce1b20aaf8..59caca5a6a2f 100644 --- a/src/common/config_opts.h +++ b/src/common/config_opts.h @@ -416,8 +416,8 @@ OPTION(filestore_journal_writeahead, OPT_BOOL, false) OPTION(filestore_journal_trailing, OPT_BOOL, false) OPTION(filestore_queue_max_ops, OPT_INT, 50) OPTION(filestore_queue_max_bytes, OPT_INT, 100 << 20) -OPTION(filestore_queue_committing_max_ops, OPT_INT, 0) // this is ON TOP of filestore_queue_max_* -OPTION(filestore_queue_committing_max_bytes, OPT_INT, 0) // " +OPTION(filestore_queue_committing_max_ops, OPT_INT, 500) // this is ON TOP of filestore_queue_max_* +OPTION(filestore_queue_committing_max_bytes, OPT_INT, 100 << 20) // " OPTION(filestore_op_threads, OPT_INT, 2) OPTION(filestore_op_thread_timeout, OPT_INT, 60) OPTION(filestore_op_thread_suicide_timeout, OPT_INT, 180)