From 817d65bd46509a82e4dd960a30f27d6893af312e Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Wed, 21 Sep 2016 18:06:57 -0400 Subject: [PATCH] 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 --- src/common/config_opts.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/config_opts.h b/src/common/config_opts.h index e3b7500850d..b15ec44ea31 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 -- 2.47.3