From: Sage Weil Date: Wed, 21 Sep 2016 22:06:57 +0000 (-0400) Subject: mon: wait 10m (not 5m) before marking down OSDs out X-Git-Tag: v11.0.1~130^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=817d65bd46509a82e4dd960a30f27d6893af312e;p=ceph.git mon: wait 10m (not 5m) before marking down OSDs out 5m isn't quite enough time for many boxes to reboot. 10m will do a better job of masking transient crashes without having much effect on time to repair. Signed-off-by: Sage Weil --- diff --git a/src/common/config_opts.h b/src/common/config_opts.h index e3b7500850d2..b15ec44ea318 100644 --- a/src/common/config_opts.h +++ b/src/common/config_opts.h @@ -231,7 +231,7 @@ OPTION(mon_osd_adjust_down_out_interval, OPT_BOOL, true) // true if we should s OPTION(mon_osd_auto_mark_in, OPT_BOOL, false) // mark any booting osds 'in' OPTION(mon_osd_auto_mark_auto_out_in, OPT_BOOL, true) // mark booting auto-marked-out osds 'in' OPTION(mon_osd_auto_mark_new_in, OPT_BOOL, true) // mark booting new osds 'in' -OPTION(mon_osd_down_out_interval, OPT_INT, 300) // seconds +OPTION(mon_osd_down_out_interval, OPT_INT, 600) // seconds OPTION(mon_osd_down_out_subtree_limit, OPT_STR, "rack") // smallest crush unit/type that we will not automatically mark out OPTION(mon_osd_min_up_ratio, OPT_DOUBLE, .3) // min osds required to be up to mark things down OPTION(mon_osd_min_in_ratio, OPT_DOUBLE, .3) // min osds required to be in to mark things out