diff options
author | Niharika Sharma <niharika.sharma@amdocs.com> | 2020-10-13 16:17:03 -0400 |
---|---|---|
committer | Niharika Sharma <niharika.sharma@amdocs.com> | 2020-10-13 16:17:03 -0400 |
commit | e6dd252944a88c7cb1c93867a53f77ff209c94da (patch) | |
tree | 29e209f1607a3aa2ba0b6427962d8d1cf55f1be2 | |
parent | 628ecd0d519acc6b4717d05aa12fd4f7b7dfc55f (diff) |
Configuration changes for concurrency issue in PNF uploading
Issue-ID: AAI-3100
Signed-off-by: Niharika Sharma <niharika.sharma@amdocs.com>
Change-Id: I8be8fb24e73cb614e22f6b2394b8bd5c3ee62170
-rw-r--r-- | components/aai-graphadmin/resources/config/aaiconfig.properties | 3 | ||||
-rw-r--r-- | components/aai-graphadmin/values.yaml | 8 |
2 files changed, 10 insertions, 1 deletions
diff --git a/components/aai-graphadmin/resources/config/aaiconfig.properties b/components/aai-graphadmin/resources/config/aaiconfig.properties index 0aeb2d1..e9ec685 100644 --- a/components/aai-graphadmin/resources/config/aaiconfig.properties +++ b/components/aai-graphadmin/resources/config/aaiconfig.properties @@ -121,3 +121,6 @@ aai.disable.check.grooming.running=false # THREADED_SNAPSHOT 2 DEBUG # THREADED_SNAPSHOT 2 aai.datasnapshot.params={{ .Values.config.cron.dataSnapshot.params }} + +# Concurrency lock control flag +aai.lock.uri.enabled={{ .Values.config.aai.lock.uri.enabled }} diff --git a/components/aai-graphadmin/values.yaml b/components/aai-graphadmin/values.yaml index e4f4fac..ee0a20b 100644 --- a/components/aai-graphadmin/values.yaml +++ b/components/aai-graphadmin/values.yaml @@ -28,7 +28,7 @@ global: # global defaults # application image repository: nexus3.onap.org:10001 -image: onap/aai-graphadmin:1.7.0 +image: onap/aai-graphadmin:1.7.1 pullPolicy: Always restartPolicy: Always flavor: small @@ -84,6 +84,12 @@ config: ageZip: 5 # Deletes the dataSnapshot graphson files older than 30 days ageDelete: 30 + # Concurrency lock control flag + aai: + lock: + uri: + enabled: false + nodeSelector: {} |