From: Xiaoxi Chen Date: Fri, 9 Jan 2015 08:15:06 +0000 (+0800) Subject: Bump memstore_device_bytes from U32 to U64 X-Git-Tag: v0.92~48^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=c60f88ba8a6624099f576eaa5f1225c2fcaab41a;p=ceph.git Bump memstore_device_bytes from U32 to U64 U32 limit the max size of memstore to a few GB, which block our test on memstore performance(as a phototype). Bump it to U64 will suit for more widely usage Signed-off-by: Xiaoxi Chen --- diff --git a/src/common/config_opts.h b/src/common/config_opts.h index 23f62ab61610..5b0ab0fc4b1c 100644 --- a/src/common/config_opts.h +++ b/src/common/config_opts.h @@ -687,7 +687,7 @@ OPTION(osd_bench_large_size_max_throughput, OPT_U64, 100 << 20) // 100 MB/s OPTION(osd_bench_max_block_size, OPT_U64, 64 << 20) // cap the block size at 64MB OPTION(osd_bench_duration, OPT_U32, 30) // duration of 'osd bench', capped at 30s to avoid triggering timeouts -OPTION(memstore_device_bytes, OPT_U32, 1024*1024*1024) +OPTION(memstore_device_bytes, OPT_U64, 1024*1024*1024) OPTION(filestore_omap_backend, OPT_STR, "leveldb")