From 44735159716c5922c985493f165832199d1df5cc Mon Sep 17 00:00:00 2001 From: Jamo Luhrsen Date: Mon, 23 Mar 2020 11:14:56 -0700 Subject: [PATCH] Add robot options to reduce robot log size - increase the device increment value so there are less loops in the test overall. - use flattenkeywords to remove the logs from the keyword that is causing a large amount of messages. Coupled with https://git.opendaylight.org/gerrit/c/integration/test/+/88446 we should not hit the problem where robot is getting OOM killed by the host while it's parsing a very large output.xml file. Signed-off-by: Jamo Luhrsen Change-Id: I86027f792f6d5a94670e409f70cf974c423dc299 --- jjb/netconf/netconf-scale.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/jjb/netconf/netconf-scale.yaml b/jjb/netconf/netconf-scale.yaml index 9fb4f9b1b..ab6d8df66 100644 --- a/jjb/netconf/netconf-scale.yaml +++ b/jjb/netconf/netconf-scale.yaml @@ -57,24 +57,24 @@ branch: 'master' jre: 'openjdk11' robot-options: '-v USE_NETCONF_CONNECTOR:False -v SCHEMA_MODEL:juniper -v INIT_DEVICE_COUNT:250 - -v MAX_DEVICE_COUNT:1000 -v DEVICE_INCREMENT:50 -v TESTTOOL_BOOT_TIMEOUT:600s - -v MAX_HEAP:4G' + -v MAX_DEVICE_COUNT:1000 -v DEVICE_INCREMENT:100 -v TESTTOOL_BOOT_TIMEOUT:600s + -v MAX_HEAP:4G --flattenkeywords name:*repeat*keyword*' - magnesium: branch: 'stable/magnesium' jre: 'openjdk11' robot-options: '-v USE_NETCONF_CONNECTOR:False -v SCHEMA_MODEL:juniper -v INIT_DEVICE_COUNT:250 - -v MAX_DEVICE_COUNT:1000 -v DEVICE_INCREMENT:50 -v TESTTOOL_BOOT_TIMEOUT:600s - -v MAX_HEAP:4G' + -v MAX_DEVICE_COUNT:1000 -v DEVICE_INCREMENT:100 -v TESTTOOL_BOOT_TIMEOUT:600s + -v MAX_HEAP:4G --flattenkeywords name:*repeat*keyword*' - sodium: branch: 'stable/sodium' robot-options: '-v USE_NETCONF_CONNECTOR:False -v SCHEMA_MODEL:juniper -v INIT_DEVICE_COUNT:10 -v MAX_DEVICE_COUNT:500 -v DEVICE_INCREMENT:25 -v TESTTOOL_BOOT_TIMEOUT:600s - -v MAX_HEAP:4G' + -v MAX_HEAP:4G --flattenkeywords name:*repeat*keyword*' - neon: branch: 'stable/neon' robot-options: '-v USE_NETCONF_CONNECTOR:False -v SCHEMA_MODEL:juniper -v INIT_DEVICE_COUNT:10 -v MAX_DEVICE_COUNT:500 -v DEVICE_INCREMENT:25 -v TESTTOOL_BOOT_TIMEOUT:600s - -v MAX_HEAP:4G' + -v MAX_HEAP:4G --flattenkeywords name:*repeat*keyword*' install: - only: -- 2.36.6