]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
Change osd op queue cut off default to high 40330/head
authorAnthony D'Atri <anthony.datri@gmail.com>
Tue, 17 Sep 2019 23:33:44 +0000 (16:33 -0700)
committerKefu Chai <kchai@redhat.com>
Wed, 24 Mar 2021 00:57:36 +0000 (08:57 +0800)
Discussion: https://www.mail-archive.com/ceph-users@ceph.io/msg00166.html

Signed-off-by: Anthony D'Atri <anthony.datri@gmail.com>
(cherry picked from commit be4582c26a82ff9d6b82ff6178cd78223715bba9)

doc/rados/configuration/osd-config-ref.rst
src/common/options.cc

index 40c1f4a4eab789159f07bd9fc50efd6bcad5b72a..ff07b5c2d22975178b7ca88f7bf52a54d4cb620d 100644 (file)
@@ -384,7 +384,7 @@ Operations
 
 :Type: String
 :Valid Choices: prio, wpq, mclock_opclass, mclock_client
-:Default: ``prio``
+:Default: ``wpq``
 
 
 ``osd op queue cut off``
@@ -401,7 +401,7 @@ Operations
 
 :Type: String
 :Valid Choices: low, high
-:Default: ``low``
+:Default: ``high``
 
 
 ``osd client op priority``
index f702bffd0ee9106ef190fc1f6ad8dd07988bdee5..5da90e4d624f1a0a3b7252022015849013bf3696 100644 (file)
@@ -2381,7 +2381,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")