78bf92448002eece7501da01b67f900a84207e70 increased the default to 16.
Increasing it further to 32 will provide enough parallelism to improve
out of the box performance for new users.
Fixes: https://tracker.ceph.com/issues/43757
Signed-off-by: Neha Ojha <nojha@redhat.com>
value is the same as ``pg_num`` with ``mkpool``.
:Type: 32-bit Integer
-:Default: ``16``
+:Default: ``32``
``osd pool default pgp num``
.add_service("mon"),
Option("osd_pool_default_pg_num", Option::TYPE_UINT, Option::LEVEL_ADVANCED)
- .set_default(16)
+ .set_default(32)
.set_description("number of PGs for new pools")
.set_flag(Option::FLAG_RUNTIME)
.add_service("mon"),
INTERVAL = 5
-PG_NUM_MIN = 16 # unless specified on a per-pool basis
+PG_NUM_MIN = 32 # unless specified on a per-pool basis
def nearest_power_of_two(n):
v = int(n)