From a8ba4486f2780ec84866d12f3e26aa765272479f Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Mon, 28 Sep 2009 10:08:18 -0700 Subject: [PATCH] config: allow object replication from 1-10 (instead of 2-3) --- src/config.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config.cc b/src/config.cc index b8b8d4702d6e6..3328ec873f06a 100644 --- a/src/config.cc +++ b/src/config.cc @@ -473,8 +473,8 @@ static struct config_option config_optionsp[] = { OPTION(osd_lpg_bits, 0, OPT_INT, 1), // bits per osd OPTION(osd_object_layout, 0, OPT_INT, CEPH_OBJECT_LAYOUT_HASHINO), OPTION(osd_pg_layout, 0, OPT_INT, CEPH_PG_LAYOUT_CRUSH), - OPTION(osd_min_rep, 0, OPT_INT, 2), - OPTION(osd_max_rep, 0, OPT_INT, 3), + OPTION(osd_min_rep, 0, OPT_INT, 1), + OPTION(osd_max_rep, 0, OPT_INT, 10), OPTION(osd_min_raid_width, 0, OPT_INT, 3), OPTION(osd_max_raid_width, 0, OPT_INT, 2), OPTION(osd_maxthreads, 0, OPT_INT, 2), // 0 == no threading -- 2.39.5