From: Greg Farnum Date: Thu, 5 Aug 2010 18:36:15 +0000 (-0700) Subject: config: set osd_min_down_reports to 3. X-Git-Tag: v0.22~310 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=77ee6dc1cc8e34d0d0be02c90c976058603f78b2;p=ceph.git config: set osd_min_down_reports to 3. --- diff --git a/src/config.cc b/src/config.cc index 2418e86d075..b5aa64d8f04 100644 --- a/src/config.cc +++ b/src/config.cc @@ -483,7 +483,7 @@ static struct config_option config_optionsp[] = { OPTION(osd_heartbeat_grace, 0, OPT_INT, 20), OPTION(osd_mon_report_interval, 0, OPT_INT, 5), // pg stats, failures, up_thru, boot. OPTION(osd_min_down_reporters, 0, OPT_INT, 1), // number of OSDs who need to report a down OSD for it to count - OPTION(osd_min_down_reports, 0, OPT_INT, 1), // number of times a down OSD must be reported for it to count + OPTION(osd_min_down_reports, 0, OPT_INT, 3), // number of times a down OSD must be reported for it to count OPTION(osd_replay_window, 0, OPT_INT, 45), OPTION(osd_max_pull, 0, OPT_INT, 2), OPTION(osd_preserve_trimmed_log, 0, OPT_BOOL, true),