From: Sage Weil Date: Thu, 5 Oct 2017 22:25:19 +0000 (-0500) Subject: mgr/balancer: allow 5% misplaced X-Git-Tag: v12.2.2~44^2~10 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=b9cc962adfd95304cbd56833bb84b827e5eed4d4;p=ceph.git mgr/balancer: allow 5% misplaced Signed-off-by: Sage Weil (cherry picked from commit 1ad3101818d1855c8eea8386d7682fab2fe9c8b8) --- diff --git a/src/pybind/mgr/balancer/module.py b/src/pybind/mgr/balancer/module.py index 87ffb6fca8ef..2b09ef2967af 100644 --- a/src/pybind/mgr/balancer/module.py +++ b/src/pybind/mgr/balancer/module.py @@ -15,7 +15,7 @@ from threading import Event # available modes: 'none', 'crush', 'crush-compat', 'upmap', 'osd_weight' default_mode = 'none' default_sleep_interval = 60 # seconds -default_max_misplaced = .03 # max ratio of pgs replaced at a time +default_max_misplaced = .05 # max ratio of pgs replaced at a time TIME_FORMAT = '%Y-%m-%d_%H:%M:%S'