]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
Change osd op queue cut off default to high 30441/head
authorAnthony D'Atri <anthony.datri@gmail.com>
Tue, 17 Sep 2019 23:33:44 +0000 (16:33 -0700)
committerAnthony D'Atri <anthony.datri@gmail.com>
Wed, 18 Sep 2019 13:50:27 +0000 (06:50 -0700)
Discussion: https://www.mail-archive.com/ceph-users@ceph.io/msg00166.html

Signed-off-by: Anthony D'Atri <anthony.datri@gmail.com>
doc/rados/configuration/osd-config-ref.rst
src/common/options.cc

index 8053f164e7b2b3fb5ac7557cf1004653c0d3d5cc..ef008b82ac4c9fe3d5eccfeb23e7e1b1a5a71e81 100644 (file)
@@ -400,7 +400,7 @@ Operations
 
 :Type: String
 :Valid Choices: prio, wpq, mclock_opclass, mclock_client
-:Default: ``prio``
+:Default: ``wpq``
 
 
 ``osd op queue cut off``
@@ -417,7 +417,7 @@ Operations
 
 :Type: String
 :Valid Choices: low, high
-:Default: ``low``
+:Default: ``high``
 
 
 ``osd client op priority``
index 8693f82e44ab56ff12fe6d928420c4e75b70457f..1b53e70a875e7bfbffa3c5d91913921782c07fc1 100644 (file)
@@ -2792,7 +2792,7 @@ std::vector<Option> get_global_options() {
     .add_see_also("osd_op_queue_cut_off"),
 
     Option("osd_op_queue_cut_off", Option::TYPE_STR, Option::LEVEL_ADVANCED)
-    .set_default("low")
+    .set_default("high")
     .set_enum_allowed( { "low", "high", "debug_random" } )
     .set_description("the threshold between high priority ops and low priority ops")
     .set_long_description("the threshold between high priority ops that use strict priority ordering and low priority ops that use a fairness algorithm that may or may not incorporate priority")