From 9e871800f7bb6de76a2baf10d0395933fd0bb5ab Mon Sep 17 00:00:00 2001 From: danielhanrahan Date: Thu, 17 Aug 2023 14:58:30 +0100 Subject: Normalize JSON attributes during update This change fixes a few issues related to JSON encoding of FragmentEntity attributes (data leaves). This significantly improves update performance in cases of partial updates. - Normalize JSON and order leaves by name when comparing data leaves during update operations. - Update performance test timings. Issue-ID: CPS-2018 Signed-off-by: danielhanrahan Change-Id: Ia764a353bf96c05758827845e1358745247ee237 --- .../onap/cps/integration/performance/cps/UpdatePerfTest.groovy | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'integration-test/src') diff --git a/integration-test/src/test/groovy/org/onap/cps/integration/performance/cps/UpdatePerfTest.groovy b/integration-test/src/test/groovy/org/onap/cps/integration/performance/cps/UpdatePerfTest.groovy index 35f65551f..b3030b1c6 100644 --- a/integration-test/src/test/groovy/org/onap/cps/integration/performance/cps/UpdatePerfTest.groovy +++ b/integration-test/src/test/groovy/org/onap/cps/integration/performance/cps/UpdatePerfTest.groovy @@ -1,6 +1,6 @@ /* * ============LICENSE_START======================================================= - * Copyright (C) 2023 Nordix Foundation + * Copyright (C) 2023-2024 Nordix Foundation * ================================================================================ * Licensed under the Apache License, Version 2.0 (the 'License'); * you may not use this file except in compliance with the License. @@ -80,8 +80,8 @@ class UpdatePerfTest extends CpsPerfTestBase { where: scenario | totalNodes | startId | changeLeaves || timeLimit | memoryLimit 'Replace 0 nodes with 100' | 100 | 1 | false || 7 | 250 - 'Replace 100 using same data' | 100 | 1 | false || 5 | 250 - 'Replace 100 with new leaf values' | 100 | 1 | true || 5 | 250 + 'Replace 100 using same data' | 100 | 1 | false || 3 | 250 + 'Replace 100 with new leaf values' | 100 | 1 | true || 3 | 250 'Replace 100 with 100 new nodes' | 100 | 101 | false || 12 | 300 'Replace 50 existing and 50 new' | 100 | 151 | true || 8 | 250 'Replace 100 nodes with 0' | 0 | 1 | false || 5 | 250 @@ -106,8 +106,8 @@ class UpdatePerfTest extends CpsPerfTestBase { where: scenario | totalNodes | startId | changeLeaves || timeLimit | memoryLimit 'Replace list of 0 with 100' | 100 | 1 | false || 7 | 250 - 'Replace list of 100 using same data' | 100 | 1 | false || 5 | 250 - 'Replace list of 100 with new leaf values' | 100 | 1 | true || 5 | 250 + 'Replace list of 100 using same data' | 100 | 1 | false || 3 | 250 + 'Replace list of 100 with new leaf values' | 100 | 1 | true || 3 | 250 'Replace list with 100 new nodes' | 100 | 101 | false || 12 | 300 'Replace list with 50 existing and 50 new' | 100 | 151 | true || 8 | 250 'Replace list of 100 nodes with 1' | 1 | 1 | false || 5 | 250 -- cgit 1.2.3-korg