]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
rgw: change default rgw_thread_pool_size to 512
authorDouglas Fuller <dfuller@redhat.com>
Fri, 15 Jun 2018 16:13:34 +0000 (12:13 -0400)
committerNathan Cutler <ncutler@suse.com>
Tue, 11 Sep 2018 15:55:51 +0000 (17:55 +0200)
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>
(cherry picked from commit 28b0c1054fbc0d390d12fc32540c66b1e8c0bae4)

src/common/options.cc

index 1ed027c9bebd6938ef37b37eeb1f758bdcc50d00..a4f4e9809898990286ba4faccbc01911a951259a 100644 (file)
@@ -4800,7 +4800,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 "