diff options
author | Toine Siebelink <toine.siebelink@est.tech> | 2021-08-25 13:48:07 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2021-08-25 13:48:07 +0000 |
commit | 90fc8dc16f07d6e039edf1c0a4d6883388cf9004 (patch) | |
tree | eb4f7865e11219f48989f086b83fb03ddf423534 /cps-application/src/main/resources/application.yml | |
parent | ad04b77071257d5f144ae4925a114009e749d571 (diff) | |
parent | 86c74c79cb45992d9f2ec134477cae41cd26651b (diff) |
Merge "Process data-updated event asynchronously"
Diffstat (limited to 'cps-application/src/main/resources/application.yml')
-rw-r--r-- | cps-application/src/main/resources/application.yml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/cps-application/src/main/resources/application.yml b/cps-application/src/main/resources/application.yml index bafe7f4f36..39309d842b 100644 --- a/cps-application/src/main/resources/application.yml +++ b/cps-application/src/main/resources/application.yml @@ -73,7 +73,14 @@ notification: enabled: false
topic: ${CPS_CHANGE_EVENT_TOPIC:cps.data-updated-events}
filters:
- enabled-dataspaces: ${DATASPACE_FILTER_PATTERNS:""}
+ enabled-dataspaces: ${NOTIFICATION_DATASPACE_FILTER_PATTERNS:""}
+ async-executor:
+ core-pool-size: 2
+ max-pool-size: 10
+ queue-capacity: 500
+ wait-for-tasks-to-complete-on-shutdown: true
+ thread-name-prefix: Async-
+
springdoc:
swagger-ui:
|