From: David Zafman Date: Tue, 14 Feb 2017 22:40:05 +0000 (-0800) Subject: mon: Bump min in ratio to 75% X-Git-Tag: v11.2.1~18^2~6 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=2c2e0a353bd518f1e44435376ad1ad9a0ee6fe67;p=ceph.git mon: Bump min in ratio to 75% Signed-off-by: David Zafman (cherry picked from commit 830cc7aa7be1ccd8f54f056b6a58e923cadd1c2b) --- diff --git a/doc/rados/configuration/mon-osd-interaction.rst b/doc/rados/configuration/mon-osd-interaction.rst index 1e931d5f210..4e9d752ae27 100644 --- a/doc/rados/configuration/mon-osd-interaction.rst +++ b/doc/rados/configuration/mon-osd-interaction.rst @@ -222,7 +222,7 @@ Monitor Settings mark Ceph OSD Daemons ``out``. :Type: Double -:Default: ``.3`` +:Default: ``.75`` ``mon osd laggy halflife`` diff --git a/src/common/config_opts.h b/src/common/config_opts.h index aacd183a161..3fea4206aaa 100644 --- a/src/common/config_opts.h +++ b/src/common/config_opts.h @@ -264,7 +264,7 @@ OPTION(mon_osd_auto_mark_new_in, OPT_BOOL, true) // mark booting new osds ' 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 +OPTION(mon_osd_min_in_ratio, OPT_DOUBLE, .75) // min osds required to be in to mark things out OPTION(mon_osd_max_op_age, OPT_DOUBLE, 32) // max op age before we get concerned (make it a power of 2) OPTION(mon_osd_max_split_count, OPT_INT, 32) // largest number of PGs per "involved" OSD to let split create OPTION(mon_osd_allow_primary_temp, OPT_BOOL, false) // allow primary_temp to be set in the osdmap