diff options
author | Sage Weil <sage@inktank.com> | 2013-01-21 21:05:00 -0800 |
---|---|---|
committer | Sage Weil <sage@inktank.com> | 2013-01-22 14:47:39 -0800 |
commit | 40654d6d53436c210b2f80911217b044f4d7643a (patch) | |
tree | 89477740950074086d5f34a3fb18096d403874ad | |
parent | 1233e8617098766c95100aa9a6a07db1a688e290 (diff) | |
download | ceph-40654d6d53436c210b2f80911217b044f4d7643a.tar.gz |
filestore: filestore_queue_max_ops 500 -> 50
Having a deep queue limits the effectiveness of the priority queues
above by adding additional latency.
Signed-off-by: Sage Weil <sage@inktank.com>
-rw-r--r-- | src/common/config_opts.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/config_opts.h b/src/common/config_opts.h index a4af680dcd6..32bd41c6ce3 100644 --- a/src/common/config_opts.h +++ b/src/common/config_opts.h @@ -409,7 +409,7 @@ OPTION(filestore_sync_flush, OPT_BOOL, false) OPTION(filestore_journal_parallel, OPT_BOOL, false) OPTION(filestore_journal_writeahead, OPT_BOOL, false) OPTION(filestore_journal_trailing, OPT_BOOL, false) -OPTION(filestore_queue_max_ops, OPT_INT, 500) +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) // " |