From 2b90be2b2b7288667b19f5cf3df26c4d8e2bd9c5 Mon Sep 17 00:00:00 2001 From: Samuel Just Date: Mon, 17 Mar 2014 14:04:41 -0700 Subject: [PATCH] ceph_manager: default to 16 initial pgs per pool 1 is really too few for anything to happen at a reasonable rate. Signed-off-by: Samuel Just --- teuthology/task/ceph_manager.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/teuthology/task/ceph_manager.py b/teuthology/task/ceph_manager.py index aa7ba163df..a1af6e1a0f 100644 --- a/teuthology/task/ceph_manager.py +++ b/teuthology/task/ceph_manager.py @@ -681,7 +681,7 @@ class CephManager: self.log(status) return status['pgmap']['num_pgs'] - def create_pool_with_unique_name(self, pg_num=1, ec_pool=False): + def create_pool_with_unique_name(self, pg_num=16, ec_pool=False): """ Create a pool named unique_pool_X where X is unique. """ @@ -692,7 +692,7 @@ class CephManager: self.create_pool(name, pg_num, ec_pool=ec_pool) return name - def create_pool(self, pool_name, pg_num=1, ec_pool=False): + def create_pool(self, pool_name, pg_num=16, ec_pool=False): """ Create a pool named from the pool_name parameter. :param pool_name: name of the pool being created. -- 2.39.5