]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
rgw: change default rgw_thread_pool_size to 512 22581/head
authorDouglas Fuller <dfuller@redhat.com>
Fri, 15 Jun 2018 16:13:34 +0000 (12:13 -0400)
committerDouglas Fuller <dfuller@redhat.com>
Fri, 15 Jun 2018 16:13:34 +0000 (12:13 -0400)
This value is commonly tuned up and demonstrates better performance on
large systems.

Fixes: http://tracker.ceph.com/issues/24544
Signed-off-by: Douglas Fuller <dfuller@redhat.com>
src/common/options.cc

index fc7df3b4df8977b97423bd8f18bac589a5cb7e70..da74b6200eba4bd9c76da76b863a34741b248387 100644 (file)
@@ -5326,7 +5326,7 @@ std::vector<Option> get_rgw_options() {
     .set_description(""),
 
     Option("rgw_thread_pool_size", Option::TYPE_INT, Option::LEVEL_BASIC)
-    .set_default(100)
+    .set_default(512)
     .set_description("RGW requests handling thread pool size.")
     .set_long_description(
         "This parameter determines the number of concurrent requests RGW can process "