Skip to content

Commit

Permalink
Merge pull request #7396 from alrossi/fix/9.2/qos-verifier-thread-poo…
Browse files Browse the repository at this point in the history
…l-counts

dcache-qos:  set default task thread pool sizes all to max concurrent…
  • Loading branch information
svemeyer authored Oct 18, 2023
2 parents 6d19331 + 1a8bb02 commit 49b35d3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion skel/share/defaults/qos-engine.properties
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ qos.limits.engine.namespace-request-threads=32
# ---- Thread queue used to process requests to modify the qos. These can
# be from the bulk service or the frontend.
#
qos.limits.engine.qos-modify-request-threads=32
qos.limits.engine.qos-modify-request-threads=500

# ---- Thread queue used to process policy state updates and queries. These
# can be from the engine's manager thread or from admin or frontend interfaces.
Expand Down
8 changes: 4 additions & 4 deletions skel/share/defaults/qos-verifier.properties
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ qos.limits.verifier.bulk-threads=8
#
# This queue is used for requests originating from the namespace.
#
qos.limits.verifier.task-threads=24
qos.limits.verifier.task-threads=${qos.limits.verifier.max-running-operations}

# ---- Thread queue used when an operation becomes active (to verify
# the requirements and send a message to the adjuster). Each thread makes
Expand All @@ -96,7 +96,7 @@ qos.limits.verifier.task-threads=24
#
# This queue is used for requests originating from the frontend, bulk service or qos engine.
#
qos.limits.verifier.modify-task-threads=24
qos.limits.verifier.modify-task-threads=${qos.limits.verifier.max-running-operations}

# ---- Thread queue used when an operation becomes active (to verify
# the requirements and send a message to the adjuster). Each thread makes
Expand All @@ -105,11 +105,11 @@ qos.limits.verifier.modify-task-threads=24
#
# This queue is used for requests originating from the scanner.
#
qos.limits.verifier.scanner-task-threads=12
qos.limits.verifier.scanner-task-threads=${qos.limits.verifier.max-running-operations}

# ---- Thread queue used to execute postprocess and eventual removal of operations.
#
qos.limits.verifier.post-process-threads=24
qos.limits.verifier.post-process-threads=${qos.limits.verifier.max-running-operations}

# ---- This number is a maximum per operation queue.
#
Expand Down

0 comments on commit 49b35d3

Please sign in to comment.