Skip to content

Commit

Permalink
Merge pull request #24034 from smithfarm/wip-25087-luminous
Browse files Browse the repository at this point in the history
luminous: change default rgw_thread_pool_size to 512

Reviewed-by: Casey Bodley <cbodley@redhat.com>
  • Loading branch information
yuriw committed Sep 14, 2018
2 parents 0c0f620 + 486c9d3 commit 0500024
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions qa/suites/rgw/multisite/tasks/test_multi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ tasks:
- ceph: {cluster: c2}
- rgw:
c1.client.0:
valgrind: [--tool=memcheck]
valgrind: [--tool=memcheck, --max-threads=1024] # http://tracker.ceph.com/issues/25214
c1.client.1:
valgrind: [--tool=memcheck]
valgrind: [--tool=memcheck, --max-threads=1024]
c2.client.0:
valgrind: [--tool=memcheck]
valgrind: [--tool=memcheck, --max-threads=1024]
c2.client.1:
valgrind: [--tool=memcheck]
valgrind: [--tool=memcheck, --max-threads=1024]
- rgw-multisite:
- rgw-multisite-tests:
config:
Expand Down
2 changes: 1 addition & 1 deletion qa/suites/rgw/verify/tasks/rgw_s3tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ tasks:
- ceph:
- rgw:
client.0:
valgrind: [--tool=memcheck]
valgrind: [--tool=memcheck, --max-threads=1024] # http://tracker.ceph.com/issues/25214
- s3tests:
client.0:
force-branch: ceph-luminous
Expand Down
2 changes: 1 addition & 1 deletion qa/suites/rgw/verify/tasks/rgw_swift.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ tasks:
- ceph:
- rgw:
client.0:
valgrind: [--tool=memcheck]
valgrind: [--tool=memcheck, --max-threads=1024] # http://tracker.ceph.com/issues/25214
- swift:
client.0:
rgw_server: client.0
2 changes: 1 addition & 1 deletion src/common/options.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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 "
Expand Down

0 comments on commit 0500024

Please sign in to comment.