diff options
author | Sage Weil <sage@inktank.com> | 2013-02-05 10:29:11 -0800 |
---|---|---|
committer | Sage Weil <sage@inktank.com> | 2013-02-05 10:29:11 -0800 |
commit | ca2d6459f80d30696e2ca8f14567d3c90488c471 (patch) | |
tree | a27ecc4136200f5de9cce557e57de57b5c789bca | |
parent | e43a13c056f71ba21eac3dd0c26b8b8548c16131 (diff) | |
download | ceph-ca2d6459f80d30696e2ca8f14567d3c90488c471.tar.gz |
os: default to 'journal aio = true'
Hooray, testing indicates this is a win!
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 0d2e011721a..5e0449e3606 100644 --- a/src/common/config_opts.h +++ b/src/common/config_opts.h @@ -434,7 +434,7 @@ OPTION(filestore_kill_at, OPT_INT, 0) // inject a failure at the n'th OPTION(filestore_inject_stall, OPT_INT, 0) // artificially stall for N seconds in op queue thread OPTION(filestore_fail_eio, OPT_BOOL, true) // fail/crash on EIO OPTION(journal_dio, OPT_BOOL, true) -OPTION(journal_aio, OPT_BOOL, false) +OPTION(journal_aio, OPT_BOOL, true) OPTION(journal_block_align, OPT_BOOL, true) OPTION(journal_max_write_bytes, OPT_INT, 10 << 20) OPTION(journal_max_write_entries, OPT_INT, 100) |