diff options
author | Joseph Keenan <joseph.keenan@est.tech> | 2022-08-19 08:47:08 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2022-08-19 08:47:08 +0000 |
commit | 0f4c024974edfb6185dc744ec60acec5b9d75b9d (patch) | |
tree | ca1c55b6b46986f61aa6ca1708fb6b8bc7263920 | |
parent | c68b5f0b8ddfe0ecc7f6015de7fcd11fdf693903 (diff) | |
parent | c51d4f64cd22815bf672a7848736c7ac53279934 (diff) |
Merge "Performance Improvement: Async Notification Pool Configuration"
-rw-r--r-- | cps-application/src/main/resources/application.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cps-application/src/main/resources/application.yml b/cps-application/src/main/resources/application.yml index ea1b93ba44..17551344fe 100644 --- a/cps-application/src/main/resources/application.yml +++ b/cps-application/src/main/resources/application.yml @@ -107,8 +107,8 @@ notification: enabled-dataspaces: ${NOTIFICATION_DATASPACE_FILTER_PATTERNS:""}
async:
executor:
- core-pool-size: 10
- max-pool-size: 100
+ core-pool-size: 2
+ max-pool-size: 10
queue-capacity: 500
wait-for-tasks-to-complete-on-shutdown: true
thread-name-prefix: Async-
|