diff options
author | waqas.ikram <waqas.ikram@ericsson.com> | 2018-07-17 15:35:47 +0100 |
---|---|---|
committer | waqas.ikram <waqas.ikram@ericsson.com> | 2018-07-18 16:10:29 +0100 |
commit | dcae33d8d9a3dcb8a9249d5d33f103f1e97d2e6c (patch) | |
tree | e9c54c365154595a9fbd996204ee3fa9eca69025 /testsuites/performance/performance-context-metrics/src/test | |
parent | 84c349f342da7f67fe728bb2ef3a3b59afb4cd7e (diff) |
Refactoring Metrics test
Change-Id: I99290a3dec61b3ce0f4d5fd33d6b429d091b48ca
Issue-ID: POLICY-954
Signed-off-by: waqas.ikram <waqas.ikram@ericsson.com>
Diffstat (limited to 'testsuites/performance/performance-context-metrics/src/test')
4 files changed, 154 insertions, 635 deletions
diff --git a/testsuites/performance/performance-context-metrics/src/test/java/org/onap/policy/apex/plugins/context/metrics/TestMetrics.java b/testsuites/performance/performance-context-metrics/src/test/java/org/onap/policy/apex/plugins/context/metrics/TestMetrics.java index 5607f8711..9f051eb82 100644 --- a/testsuites/performance/performance-context-metrics/src/test/java/org/onap/policy/apex/plugins/context/metrics/TestMetrics.java +++ b/testsuites/performance/performance-context-metrics/src/test/java/org/onap/policy/apex/plugins/context/metrics/TestMetrics.java @@ -22,36 +22,59 @@ package org.onap.policy.apex.plugins.context.metrics; import static org.junit.Assert.fail; +import java.io.File; import java.io.IOException; +import java.util.Arrays; +import java.util.TreeSet; -import org.apache.curator.test.TestingServer; -import org.junit.After; -import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Rule; import org.junit.Test; +import org.junit.rules.TemporaryFolder; +import org.onap.policy.apex.context.test.utils.NetworkUtils; +import org.onap.policy.apex.model.utilities.ResourceUtils; +import org.slf4j.ext.XLogger; +import org.slf4j.ext.XLoggerFactory; public class TestMetrics { - // Zookeeper test server - TestingServer zkTestServer; + // Logger for this class + private static final XLogger LOGGER = XLoggerFactory.getXLogger(TestMetrics.class); + private static final String HAZELCAST_CONFIG = "hazelcast.config"; - @Before - public void beforeTest() throws Exception { - zkTestServer = new TestingServer(62181); - } + private static final String JAVA_NET_PREFER_IPV4_STACK = "java.net.preferIPv4Stack"; + private static final String HAZELCAST_XML_FILE = "src/test/resources/hazelcast/hazelcast.xml"; + + @Rule + public final TemporaryFolder folder = new TemporaryFolder(); + + @BeforeClass + public static void configure() throws Exception { + System.setProperty(JAVA_NET_PREFER_IPV4_STACK, "true"); + final String hazelCastfileLocation = ResourceUtils.getFilePath4Resource(HAZELCAST_XML_FILE); + System.setProperty(HAZELCAST_CONFIG, hazelCastfileLocation); + + final TreeSet<String> ipAddressSet = NetworkUtils.getIPv4NonLoopAddresses(); + + if (ipAddressSet.size() == 0) { + throw new Exception("cound not find real IP address for test"); + } + LOGGER.info("For Infinispan, setting jgroups.tcp.address to: {}", ipAddressSet.first()); + System.setProperty("jgroups.tcp.address", ipAddressSet.first()); - @After - public void afterTest() throws IOException { - zkTestServer.stop(); } @Test - public void getSingleJVMMetrics() { - final String[] args = {"singleJVMTestNL", "1", "32", "1000", "65536", "0", "localhost:62181", "false"}; + public void getSingleJVMMetrics() throws IOException { + final File zookeeperDirectory = folder.newFolder("zookeeperDirectory"); + final String[] args = {"singleJVMTestNL", "1", "32", "1000", "65536", "0", "localhost", "62181", + zookeeperDirectory.getAbsolutePath()}; + LOGGER.info("Starting with args: {}", Arrays.toString(args)); try { ConcurrentContextMetrics.main(args); - } catch (final Exception e) { + } catch (final Exception exception) { + LOGGER.error("Unexpected error", exception); fail("Metrics test failed"); - e.printStackTrace(); } } } diff --git a/testsuites/performance/performance-context-metrics/src/test/resources/hazelcast/hazelcast.xml b/testsuites/performance/performance-context-metrics/src/test/resources/hazelcast/hazelcast.xml index 84da4951e..b70bdc36e 100644 --- a/testsuites/performance/performance-context-metrics/src/test/resources/hazelcast/hazelcast.xml +++ b/testsuites/performance/performance-context-metrics/src/test/resources/hazelcast/hazelcast.xml @@ -19,625 +19,45 @@ ============LICENSE_END========================================================= --> -<hazelcast xmlns="http://www.hazelcast.com/schema/config" - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> - <group> - <name>HazelcastGroup3.0EVAL</name> - <password>password3.0EVAL</password> - </group> - <network> - <port auto-increment="true">5706</port> - <join> - <multicast enabled="false"> - <multicast-group>224.2.2.10</multicast-group> - <multicast-port>54327</multicast-port> - </multicast> - <tcp-ip enabled="true"> - <members>10.0.0.0</members> - <!-- members>192.168.219.141</members--> - </tcp-ip> - </join> - <interfaces enabled="false"> +<hazelcast xmlns="http://www.hazelcast.com/schema/config" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> + <group> + <name>HazelcastGroup3.0EVAL</name> + <password>password3.0EVAL</password> + </group> + <network> + <port auto-increment="true">5706</port> + <join> + <multicast enabled="false"> + <multicast-group>224.2.2.10</multicast-group> + <multicast-port>54327</multicast-port> + </multicast> + <tcp-ip enabled="true"> + <members>127.0.0.1</members> + </tcp-ip> + </join> + <interfaces enabled="false"> <!-- This value will allow hazelcast to run locally from the IDE --> - <interface>127.0.0.*</interface> - </interfaces> - </network> - <properties> - <property name="hazelcast.icmp.enabled">true</property> - <property name="hazelcast.logging.type">slf4j</property> + <interface>127.0.0.*</interface> + </interfaces> + </network> + <properties> + <property name="hazelcast.icmp.enabled">false</property> + <property name="hazelcast.logging.type">slf4j</property> <!-- disable the hazelcast shutdown hook - prefer to control the shutdown in code --> - <property name="hazelcast.shutdownhook.enabled">false</property> - <property name="hazelcast.graceful.shutdown.max.wait">60</property> - </properties> - <executor-service> - <pool-size>16</pool-size> - </executor-service> - <queue name="default"> - <!-- Maximum size of the queue. Any integer between 0 and Integer.MAX_VALUE. - 0 means Integer.MAX_VALUE. Default is 0. --> - <max-size>100000</max-size> - <!-- Maximum number of seconds for each item to stay in the queue. Items - that are not consumed in <time-to-live-seconds> will automatically get evicted - from the queue. Any integer between 0 and Integer.MAX_VALUE. 0 means infinite. - Default is 0. --> - </queue> - <map name="default"> - <!-- Number of backups. If 1 is set as the backup-count for example, then - all entries of the map will be copied to another JVM for fail-safety. Valid - numbers are 0 (no backup), 1, 2, 3. --> - <backup-count>1</backup-count> - <!-- Valid values are: NONE (no eviction), LRU (Least Recently Used), LFU - (Least Frequiently Used). NONE is the default. --> - <eviction-policy>NONE</eviction-policy> - <!-- Maximum size of the map. When max size is reached, map is evicted - based on the policy defined. Any integer between 0 and Integer.MAX_VALUE. - 0 means Integer.MAX_VALUE. Default is 0. --> - <max-size>0</max-size> - <!-- When max. size is reached, specified percentage of the map will be - evicted. Any integer between 0 and 100. If 25 is set for example, 25% of - the entries will get evicted. --> - <eviction-percentage>25</eviction-percentage> - </map> - <map name="L_ATTACH-Map"> - <!-- Number of backups. If 1 is set as the backup-count for example, then - all entries of the map will be copied to another JVM for fail-safety. Valid - numbers are 0 (no backup), 1, 2, 3. --> - <backup-count>1</backup-count> - <!-- Valid values are: NONE (no eviction), LRU (Least Recently Used), LFU - (Least Frequiently Used). NONE is the default. --> - <eviction-policy>LRU</eviction-policy> - <!-- Maximum size of the map. When max size is reached, map is evicted - based on the policy defined. Any integer between 0 and Integer.MAX_VALUE. - 0 means Integer.MAX_VALUE. Default is 0. --> - <max-size>1000000</max-size> - <!-- When max. size is reached, specified percentage of the map will be - evicted. Any integer between 0 and 100. If 25 is set for example, 25% of - the entries will get evicted. --> - <eviction-percentage>5</eviction-percentage> - - <!-- Maximum number of seconds for each entry to stay in the map. Entries - that are older than <time-to-live-seconds> and not updated for <time-to-live-seconds> - will get automatically evicted from the map. Any integer between 0 and Integer.MAX_VALUE. - 0 means infinite. Default is 0. --> - <time-to-live-seconds>0</time-to-live-seconds> - - <!-- <map-store enabled="true"> Name of the class implementing MapLoader - and/or MapStore. The class should implement at least of these interfaces - and contain no-argument constructor. Note that the inner classes are not - supported. <class-name>com.ericsson.xstream.loading.service.buffer.L_ATTACHLoader</class-name> - Number of seconds to delay to call the MapStore.store(key, value). If the - value is zero then it is write-through so MapStore.store(key, value) will - be called as soon as the entry is updated. Otherwise it is write-behind so - updates will be stored after write-delay-seconds value by calling Hazelcast.storeAll(map). - Default value is 0. <write-delay-seconds>60000</write-delay-seconds> </map-store> --> - - - </map> - <map name="CTUM-Map"> - <!-- Number of backups. If 1 is set as the backup-count for example, then - all entries of the map will be copied to another JVM for fail-safety. Valid - numbers are 0 (no backup), 1, 2, 3. --> - <backup-count>1</backup-count> - <!-- Valid values are: NONE (no eviction), LRU (Least Recently Used), LFU - (Least Frequiently Used). NONE is the default. --> - <eviction-policy>LRU</eviction-policy> - <!-- Maximum size of the map. When max size is reached, map is evicted - based on the policy defined. Any integer between 0 and Integer.MAX_VALUE. - 0 means Integer.MAX_VALUE. Default is 0. --> - <max-size>1000000</max-size> - <!-- When max. size is reached, specified percentage of the map will be - evicted. Any integer between 0 and 100. If 25 is set for example, 25% of - the entries will get evicted. --> - <eviction-percentage>5</eviction-percentage> - - <!-- Maximum number of seconds for each entry to stay in the map. Entries - that are older than <time-to-live-seconds> and not updated for <time-to-live-seconds> - will get automatically evicted from the map. Any integer between 0 and Integer.MAX_VALUE. - 0 means infinite. Default is 0. --> - <time-to-live-seconds>7200</time-to-live-seconds> - - <!-- <map-store enabled="true"> Name of the class implementing MapLoader - and/or MapStore. The class should implement at least of these interfaces - and contain no-argument constructor. Note that the inner classes are not - supported. <class-name>com.ericsson.xstream.loading.service.buffer.CTUMLoader</class-name> - Number of seconds to delay to call the MapStore.store(key, value). If the - value is zero then it is write-through so MapStore.store(key, value) will - be called as soon as the entry is updated. Otherwise it is write-behind so - updates will be stored after write-delay-seconds value by calling Hazelcast.storeAll(map). - Default value is 0. <write-delay-seconds>3600</write-delay-seconds> </map-store> --> - - </map> - <map name="L_HANDOVER-Map"> - <!-- Number of backups. If 1 is set as the backup-count for example, then - all entries of the map will be copied to another JVM for fail-safety. Valid - numbers are 0 (no backup), 1, 2, 3. --> - <backup-count>1</backup-count> - <!-- Valid values are: NONE (no eviction), LRU (Least Recently Used), LFU - (Least Frequiently Used). NONE is the default. --> - <eviction-policy>LRU</eviction-policy> - <!-- Maximum size of the map. When max size is reached, map is evicted - based on the policy defined. Any integer between 0 and Integer.MAX_VALUE. - 0 means Integer.MAX_VALUE. Default is 0. --> - <max-size>1000000</max-size> - <!-- When max. size is reached, specified percentage of the map will be - evicted. Any integer between 0 and 100. If 25 is set for example, 25% of - the entries will get evicted. --> - <eviction-percentage>5</eviction-percentage> - - <!-- Maximum number of seconds for each entry to stay in the map. Entries - that are older than <time-to-live-seconds> and not updated for <time-to-live-seconds> - will get automatically evicted from the map. Any integer between 0 and Integer.MAX_VALUE. - 0 means infinite. Default is 0. --> - <time-to-live-seconds>3600</time-to-live-seconds> - - <!-- <map-store enabled="true"> Name of the class implementing MapLoader - and/or MapStore. The class should implement at least of these interfaces - and contain no-argument constructor. Note that the inner classes are not - supported. <class-name>com.ericsson.xstream.base.publishing.hazelcast.L_ATTACHStore</class-name> - Number of seconds to delay to call the MapStore.store(key, value). If the - value is zero then it is write-through so MapStore.store(key, value) will - be called as soon as the entry is updated. Otherwise it is write-behind so - updates will be stored after write-delay-seconds value by calling Hazelcast.storeAll(map). - Default value is 0. <write-delay-seconds>5</write-delay-seconds> </map-store> --> - - - </map> - - <map name="L_SERVICE_REQUEST-Map"> - <!-- Number of backups. If 1 is set as the backup-count for example, then - all entries of the map will be copied to another JVM for fail-safety. Valid - numbers are 0 (no backup), 1, 2, 3. --> - <backup-count>1</backup-count> - <!-- Valid values are: NONE (no eviction), LRU (Least Recently Used), LFU - (Least Frequiently Used). NONE is the default. --> - <eviction-policy>LRU</eviction-policy> - <!-- Maximum size of the map. When max size is reached, map is evicted - based on the policy defined. Any integer between 0 and Integer.MAX_VALUE. - 0 means Integer.MAX_VALUE. Default is 0. --> - <max-size>1000000</max-size> - <!-- When max. size is reached, specified percentage of the map will be - evicted. Any integer between 0 and 100. If 25 is set for example, 25% of - the entries will get evicted. --> - <eviction-percentage>5</eviction-percentage> - - <!-- Maximum number of seconds for each entry to stay in the map. Entries - that are older than <time-to-live-seconds> and not updated for <time-to-live-seconds> - will get automatically evicted from the map. Any integer between 0 and Integer.MAX_VALUE. - 0 means infinite. Default is 0. --> - <time-to-live-seconds>7200</time-to-live-seconds> - - <!-- <map-store enabled="true"> Name of the class implementing MapLoader - and/or MapStore. The class should implement at least of these interfaces - and contain no-argument constructor. Note that the inner classes are not - supported. <class-name>com.ericsson.xstream.base.publishing.hazelcast.L_HandoverStore</class-name> - Number of seconds to delay to call the MapStore.store(key, value). If the - value is zero then it is write-through so MapStore.store(key, value) will - be called as soon as the entry is updated. Otherwise it is write-behind so - updates will be stored after write-delay-seconds value by calling Hazelcast.storeAll(map). - Default value is 0. <write-delay-seconds>5</write-delay-seconds> </map-store> --> - - - </map> - <map name="CommonCache"> - - - <!-- Number of async-backups. If 1 is set as the backup-count for example, - then all entries of the map will be copied to another JVM for fail-safety. - Valid numbers are 0 (no backup), 1, 2, 3. --> - <async-backup-count>1</async-backup-count> - - <!-- Can we read the local backup entries? Default value is false for strong - consistency. Being able to read backup data will give you greater performance. --> - <read-backup-data>true</read-backup-data> - <!-- Valid values are: NONE (no eviction), LRU (Least Recently Used), LFU - (Least Frequiently Used). NONE is the default. --> - <eviction-policy>LRU</eviction-policy> - <!-- Maximum size of the map. When max size is reached, map is evicted - based on the policy defined. Any integer between 0 and Integer.MAX_VALUE. - 0 means Integer.MAX_VALUE. Default is 0. --> - <max-size>3000000</max-size> - <!-- When max. size is reached, specified percentage of the map will be - evicted. Any integer between 0 and 100. If 25 is set for example, 25% of - the entries will get evicted. --> - <eviction-percentage>5</eviction-percentage> - - <!-- Maximum number of seconds for each entry to stay in the map. Entries - that are older than <time-to-live-seconds> and not updated for <time-to-live-seconds> - will get automatically evicted from the map. Any integer between 0 and Integer.MAX_VALUE. - 0 means infinite. Default is 0. --> - <time-to-live-seconds>7200</time-to-live-seconds> - - <!-- <map-store enabled="true"> Name of the class implementing MapLoader - and/or MapStore. The class should implement at least of these interfaces - and contain no-argument constructor. Note that the inner classes are not - supported. <class-name>com.ericsson.xstream.base.publishing.hazelcast.L_HandoverStore</class-name> - Number of seconds to delay to call the MapStore.store(key, value). If the - value is zero then it is write-through so MapStore.store(key, value) will - be called as soon as the entry is updated. Otherwise it is write-behind so - updates will be stored after write-delay-seconds value by calling Hazelcast.storeAll(map). - Default value is 0. <write-delay-seconds>5</write-delay-seconds> </map-store> --> - - - </map> - - - <map name="Topology-Map"> - - <!-- Number of backups. If 1 is set as the backup-count for example, then - all entries of the map will be copied to another JVM for fail-safety. Valid - numbers are 0 (no backup), 1, 2, 3. --> - <backup-count>2</backup-count> - <!-- Valid values are: NONE (no eviction), LRU (Least Recently Used), LFU - (Least Frequiently Used). NONE is the default. --> - <eviction-policy>NONE</eviction-policy> - <!-- Maximum size of the map. When max size is reached, map is evicted - based on the policy defined. Any integer between 0 and Integer.MAX_VALUE. - 0 means Integer.MAX_VALUE. Default is 0. --> - <max-size>10000000</max-size> - <!-- When max. size is reached, specified percentage of the map will be - evicted. Any integer between 0 and 100. If 25 is set for example, 25% of - the entries will get evicted. --> - <eviction-percentage>0</eviction-percentage> - - - <!-- Maximum number of seconds for each entry to stay in the map. Entries - that are older than <time-to-live-seconds> and not updated for <time-to-live-seconds> - will get automatically evicted from the map. Any integer between 0 and Integer.MAX_VALUE. - 0 means infinite. Default is 0. --> - <time-to-live-seconds>0</time-to-live-seconds> - - <!-- <map-store enabled="true"> Name of the class implementing MapLoader - and/or MapStore. The class should implement at least of these interfaces - and contain no-argument constructor. Note that the inner classes are not - supported. <class-name>com.ericsson.xstream.loading.service.buffer.TopologyCacheLoader</class-name> - Number of seconds to delay to call the MapStore.store(key, value). If the - value is zero then it is write-through so MapStore.store(key, value) will - be called as soon as the entry is updated. Otherwise it is write-behind so - updates will be stored after write-delay-seconds value by calling Hazelcast.storeAll(map). - Default value is 0. <write-delay-seconds>5</write-delay-seconds> </map-store> --> - - - - </map> - <map name="Protocol-cause-code-Map"> - <near-cache> - <!-- Maximum number of seconds for each entry to stay in the near cache. - Entries that are older than <time-to-live-seconds> will get automatically - evicted from the near cache. Any integer between 0 and Integer.MAX_VALUE. - 0 means infinite. Default is 0. --> - <time-to-live-seconds>0</time-to-live-seconds> - - <!-- Maximum number of seconds each entry can stay in the near cache as - untouched (not-read). Entries that are not read (touched) more than <max-idle-seconds> - value will get removed from the near cache. Any integer between 0 and Integer.MAX_VALUE. - 0 means Integer.MAX_VALUE. Default is 0. --> - <max-idle-seconds>0</max-idle-seconds> - - <!-- Valid values are: NONE (no extra eviction, <time-to-live-seconds> - may still apply), LRU (Least Recently Used), LFU (Least Frequently Used). - NONE is the default. Regardless of the eviction policy used, <time-to-live-seconds> - will still apply. --> - <eviction-policy>NONE</eviction-policy> - - <!-- Maximum size of the near cache. When max size is reached, cache is - evicted based on the policy defined. Any integer between 0 and Integer.MAX_VALUE. - 0 means Integer.MAX_VALUE. Default is 0. --> - <max-size>2000</max-size> - - <!-- Should the cached entries get evicted if the entries are changed - (updated or removed). true of false. Default is true. --> - <invalidate-on-change>true</invalidate-on-change> - - </near-cache> - - - - </map> - <map name="SessionId_Map"> - - <!-- Number of backups. If 1 is set as the backup-count for example, then - all entries of the map will be copied to another JVM for fail-safety. Valid - numbers are 0 (no backup), 1, 2, 3. --> - <backup-count>1</backup-count> - <!-- Valid values are: NONE (no eviction), LRU (Least Recently Used), LFU - (Least Frequiently Used). NONE is the default. --> - <eviction-policy>NONE</eviction-policy> - <!-- Maximum size of the map. When max size is reached, map is evicted - based on the policy defined. Any integer between 0 and Integer.MAX_VALUE. - 0 means Integer.MAX_VALUE. Default is 0. --> - <max-size>10000000</max-size> - <!-- When max. size is reached, specified percentage of the map will be - evicted. Any integer between 0 and 100. If 25 is set for example, 25% of - the entries will get evicted. --> - <eviction-percentage>0</eviction-percentage> - - - <!-- Maximum number of seconds for each entry to stay in the map. Entries - that are older than <time-to-live-seconds> and not updated for <time-to-live-seconds> - will get automatically evicted from the map. Any integer between 0 and Integer.MAX_VALUE. - 0 means infinite. Default is 0. --> - <time-to-live-seconds>60</time-to-live-seconds> - <!-- <map-store enabled="true"> Name of the class implementing MapLoader - and/or MapStore. The class should implement at least of these interfaces - and contain no-argument constructor. Note that the inner classes are not - supported. <class-name>com.ericsson.xstream.loading.service.buffer.TopologyCacheLoader</class-name> - Number of seconds to delay to call the MapStore.store(key, value). If the - value is zero then it is write-through so MapStore.store(key, value) will - be called as soon as the entry is updated. Otherwise it is write-behind so - updates will be stored after write-delay-seconds value by calling Hazelcast.storeAll(map). - Default value is 0. <write-delay-seconds>5</write-delay-seconds> </map-store> --> - - - </map> - <map name="gpeh-reasons-Map"> - <!-- Number of backups. If 1 is set as the backup-count for example, then - all entries of the map will be copied to another JVM for fail-safety. Valid - numbers are 0 (no backup), 1, 2, 3. --> - <backup-count>2</backup-count> - <!-- When max. size is reached, specified percentage of the map will be - evicted. Any integer between 0 and 100. If 25 is set for example, 25% of - the entries will get evicted. --> - <eviction-percentage>0</eviction-percentage> - <near-cache> - <!-- Number of backups. If 1 is set as the backup-count for example, then - all entries of the map will be copied to another JVM for fail-safety. Valid - numbers are 0 (no backup), 1, 2, 3. --> - <!-- Valid values are: NONE (no eviction), LRU (Least Recently Used), - LFU (Least Frequently Used). NONE is the default. --> - <eviction-policy>NONE</eviction-policy> - <!-- Maximum size of the map. When max size is reached, map is evicted - based on the policy defined. Any integer between 0 and Integer.MAX_VALUE. - 0 means Integer.MAX_VALUE. Default is 0. --> - <max-size>1000</max-size> - - - <!-- Maximum number of seconds for each entry to stay in the map. Entries - that are older than <time-to-live-seconds> and not updated for <time-to-live-seconds> - will get automatically evicted from the map. Any integer between 0 and Integer.MAX_VALUE. - 0 means infinite. Default is 0. --> - <time-to-live-seconds>0</time-to-live-seconds> - </near-cache> - </map> - <map name="tac-imei-Map"> - <!-- Number of backups. If 1 is set as the backup-count for example, then - all entries of the map will be copied to another JVM for fail-safety. Valid - numbers are 0 (no backup), 1, 2, 3. --> - <backup-count>2</backup-count> - <!-- When max. size is reached, specified percentage of the map will be - evicted. Any integer between 0 and 100. If 25 is set for example, 25% of - the entries will get evicted. --> - <eviction-percentage>0</eviction-percentage> - - <near-cache> - <!-- Valid values are: NONE (no eviction), LRU (Least Recently Used), - LFU (Least Frequently Used). NONE is the default. --> - <eviction-policy>NONE</eviction-policy> - <!-- Maximum size of the map. When max size is reached, map is evicted - based on the policy defined. Any integer between 0 and Integer.MAX_VALUE. - 0 means Integer.MAX_VALUE. Default is 0. --> - <max-size>10000</max-size> - - <!-- Maximum number of seconds for each entry to stay in the map. Entries - that are older than <time-to-live-seconds> and not updated for <time-to-live-seconds> - will get automatically evicted from the map. Any integer between 0 and Integer.MAX_VALUE. - 0 means infinite. Default is 0. --> - <time-to-live-seconds>0</time-to-live-seconds> - </near-cache> - </map> - - <map name="CORE-DATA-Map"> - - <!-- Number of backups. If 1 is set as the backup-count for example, then - all entries of the map will be copied to another JVM for fail-safety. Valid - numbers are 0 (no backup), 1, 2, 3. --> - <backup-count>2</backup-count> - <!-- Valid values are: NONE (no eviction), LRU (Least Recently Used), LFU - (Least Frequiently Used). NONE is the default. --> - <eviction-policy>NONE</eviction-policy> - <!-- Maximum size of the map. When max size is reached, map is evicted - based on the policy defined. Any integer between 0 and Integer.MAX_VALUE. - 0 means Integer.MAX_VALUE. Default is 0. --> - <max-size>10000000</max-size> - <!-- When max. size is reached, specified percentage of the map will be - evicted. Any integer between 0 and 100. If 25 is set for example, 25% of - the entries will get evicted. --> - <eviction-percentage>0</eviction-percentage> - - - <!-- Maximum number of seconds for each entry to stay in the map. Entries - that are older than <time-to-live-seconds> and not updated for <time-to-live-seconds> - will get automatically evicted from the map. Any integer between 0 and Integer.MAX_VALUE. - 0 means infinite. Default is 0. --> - <time-to-live-seconds>0</time-to-live-seconds> - - <!-- <map-store enabled="true"> Name of the class implementing MapLoader - and/or MapStore. The class should implement at least of these interfaces - and contain no-argument constructor. Note that the inner classes are not - supported. <class-name>com.ericsson.xstream.loading.service.buffer.TopologyCacheLoader</class-name> - Number of seconds to delay to call the MapStore.store(key, value). If the - value is zero then it is write-through so MapStore.store(key, value) will - be called as soon as the entry is updated. Otherwise it is write-behind so - updates will be stored after write-delay-seconds value by calling Hazelcast.storeAll(map). - Default value is 0. <write-delay-seconds>5</write-delay-seconds> </map-store> --> - - - - </map> - <map name="IMSI-APN-Map"> - - <!-- Number of backups. If 1 is set as the backup-count for example, then - all entries of the map will be copied to another JVM for fail-safety. Valid - numbers are 0 (no backup), 1, 2, 3. --> - <backup-count>2</backup-count> - <!-- Valid values are: NONE (no eviction), LRU (Least Recently Used), LFU - (Least Frequiently Used). NONE is the default. --> - <eviction-policy>NONE</eviction-policy> - <!-- Maximum size of the map. When max size is reached, map is evicted - based on the policy defined. Any integer between 0 and Integer.MAX_VALUE. - 0 means Integer.MAX_VALUE. Default is 0. --> - <max-size>10000000</max-size> - <!-- When max. size is reached, specified percentage of the map will be - evicted. Any integer between 0 and 100. If 25 is set for example, 25% of - the entries will get evicted. --> - <eviction-percentage>0</eviction-percentage> - - - <!-- Maximum number of seconds for each entry to stay in the map. Entries - that are older than <time-to-live-seconds> and not updated for <time-to-live-seconds> - will get automatically evicted from the map. Any integer between 0 and Integer.MAX_VALUE. - 0 means infinite. Default is 0. --> - <time-to-live-seconds>0</time-to-live-seconds> - - <!-- <map-store enabled="true"> Name of the class implementing MapLoader - and/or MapStore. The class should implement at least of these interfaces - and contain no-argument constructor. Note that the inner classes are not - supported. <class-name>com.ericsson.xstream.loading.service.buffer.TopologyCacheLoader</class-name> - Number of seconds to delay to call the MapStore.store(key, value). If the - value is zero then it is write-through so MapStore.store(key, value) will - be called as soon as the entry is updated. Otherwise it is write-behind so - updates will be stored after write-delay-seconds value by calling Hazelcast.storeAll(map). - Default value is 0. <write-delay-seconds>5</write-delay-seconds> </map-store> --> - - - - </map> - <map name="CommonDataCache"> - - - <!-- Number of async-backups. If 1 is set as the backup-count for example, - then all entries of the map will be copied to another JVM for fail-safety. - Valid numbers are 0 (no backup), 1, 2, 3. --> - <async-backup-count>1</async-backup-count> - - <!-- Can we read the local backup entries? Default value is false for strong - consistency. Being able to read backup data will give you greater performance. --> - <read-backup-data>true</read-backup-data> - <!-- Valid values are: NONE (no eviction), LRU (Least Recently Used), LFU - (Least Frequiently Used). NONE is the default. --> - <eviction-policy>LRU</eviction-policy> - <!-- Maximum size of the map. When max size is reached, map is evicted - based on the policy defined. Any integer between 0 and Integer.MAX_VALUE. - 0 means Integer.MAX_VALUE. Default is 0. --> - <max-size>3000000</max-size> - <!-- When max. size is reached, specified percentage of the map will be - evicted. Any integer between 0 and 100. If 25 is set for example, 25% of - the entries will get evicted. --> - <eviction-percentage>5</eviction-percentage> - - <!-- Maximum number of seconds for each entry to stay in the map. Entries - that are older than <time-to-live-seconds> and not updated for <time-to-live-seconds> - will get automatically evicted from the map. Any integer between 0 and Integer.MAX_VALUE. - 0 means infinite. Default is 0. --> - <time-to-live-seconds>7200</time-to-live-seconds> - - <!-- <map-store enabled="true"> Name of the class implementing MapLoader - and/or MapStore. The class should implement at least of these interfaces - and contain no-argument constructor. Note that the inner classes are not - supported. <class-name>com.ericsson.xstream.base.publishing.hazelcast.L_HandoverStore</class-name> - Number of seconds to delay to call the MapStore.store(key, value). If the - value is zero then it is write-through so MapStore.store(key, value) will - be called as soon as the entry is updated. Otherwise it is write-behind so - updates will be stored after write-delay-seconds value by calling Hazelcast.storeAll(map). - Default value is 0. <write-delay-seconds>5</write-delay-seconds> </map-store> --> - - - </map> - - - <queue name="raw-distributer-queue"> - <!-- Maximum size of the queue. Any integer between 0 and Integer.MAX_VALUE. - 0 means Integer.MAX_VALUE. Default is 0. --> - <max-size>100000</max-size> - </queue> - <map name="queue-map"> - - <!-- Number of backups. If 1 is set as the backup-count for example, then - all entries of the map will be copied to another JVM for fail-safety. Valid - numbers are 0 (no backup), 1, 2, 3. --> - <backup-count>0</backup-count> - - </map> - - <map name="radio-correlation-config-Map"> - <backup-count>2</backup-count> - <eviction-policy>NONE</eviction-policy> - <max-size>50</max-size> - <eviction-percentage>0</eviction-percentage> - <time-to-live-seconds>0</time-to-live-seconds> - </map> - - <map name="xstream-configuration-map"> - <!-- Number of backups. If 1 is set as the backup-count for example, then - all entries of the map will be copied to another JVM for fail-safety. Valid - numbers are 0 (no backup), 1, 2, 3. --> - <backup-count>0</backup-count> - <time-to-live-seconds>100000</time-to-live-seconds> - </map> - - <map name="TOPIC-TASK-MAP"> - - <async-backup-count>3</async-backup-count> - - <read-backup-data>true</read-backup-data> - <!-- Valid values are: NONE (no eviction), LRU (Least Recently Used), LFU - (Least Frequiently Used). NONE is the default. --> - <eviction-policy>NONE</eviction-policy> - <!-- Maximum size of the map. When max size is reached, map is evicted - based on the policy defined. Any integer between 0 and Integer.MAX_VALUE. - 0 means Integer.MAX_VALUE. Default is 0. --> - <max-size>1000</max-size> - <!-- When max. size is reached, specified percentage of the map will be - evicted. Any integer between 0 and 100. If 25 is set for example, 25% of - the entries will get evicted. --> - <eviction-percentage>0</eviction-percentage> - - - - <!-- Maximum number of seconds for each entry to stay in the map. Entries - that are older than <time-to-live-seconds> and not updated for <time-to-live-seconds> - will get automatically evicted from the map. Any integer between 0 and Integer.MAX_VALUE. - 0 means infinite. Default is 0. --> - <time-to-live-seconds>0</time-to-live-seconds> - </map> - <map name="TOPIC-REGISTRY"> - - <async-backup-count>3</async-backup-count> - - <read-backup-data>true</read-backup-data> - <!-- Valid values are: NONE (no eviction), LRU (Least Recently Used), LFU - (Least Frequiently Used). NONE is the default. --> - <eviction-policy>NONE</eviction-policy> - <!-- Maximum size of the map. When max size is reached, map is evicted - based on the policy defined. Any integer between 0 and Integer.MAX_VALUE. - 0 means Integer.MAX_VALUE. Default is 0. --> - <max-size>1000</max-size> - <!-- When max. size is reached, specified percentage of the map will be - evicted. Any integer between 0 and 100. If 25 is set for example, 25% of - the entries will get evicted. --> - <eviction-percentage>0</eviction-percentage> - - - - <!-- Maximum number of seconds for each entry to stay in the map. Entries - that are older than <time-to-live-seconds> and not updated for <time-to-live-seconds> - will get automatically evicted from the map. Any integer between 0 and Integer.MAX_VALUE. - 0 means infinite. Default is 0. --> - <time-to-live-seconds>0</time-to-live-seconds> - </map> - <queue name="Pooled-Topic-Request-Queue"> - <!-- Maximum size of the queue.Any integer between 0 and Integer.MAX_VALUE. - 0 means Integer.MAX_VALUE. Default is 0. --> - <max-size>100000</max-size> - </queue> - <map name="Pooled-Topic-Request-Queue-Backup-map"> - - <!-- Number of backups. If 1 is set as the backup-count for example, then - all entries of the map will be copied to another JVM for fail-safety. Valid - numbers are 0 (no backup), 1, 2, 3. --> - <backup-count>1</backup-count> - <eviction-policy>NONE</eviction-policy> - <time-to-live-seconds>0</time-to-live-seconds> - </map> - + <property name="hazelcast.shutdownhook.enabled">false</property> + <property name="hazelcast.graceful.shutdown.max.wait">60</property> + <property name="hazelcast.operation.generic.thread.count">1</property> + <property name="hazelcast.operation.thread.count">1</property> + <property name="hazelcast.clientengine.thread.count">1</property> + <property name="hazelcast.client.event.thread.count">1</property> + <property name="hazelcast.event.thread.count">1</property> + <property name="hazelcast.io.output.thread.count">1</property> + <property name="hazelcast.io.thread.count">1</property> + <property name="hazelcast.executor.client.thread.count">1</property> + <property name="hazelcast.clientengine.thread.count">1</property> + </properties> + <executor-service> + <pool-size>2</pool-size> + </executor-service> </hazelcast> diff --git a/testsuites/performance/performance-context-metrics/src/test/resources/infinispan/default-jgroups-tcp.xml b/testsuites/performance/performance-context-metrics/src/test/resources/infinispan/default-jgroups-tcp.xml new file mode 100644 index 000000000..028cf1df6 --- /dev/null +++ b/testsuites/performance/performance-context-metrics/src/test/resources/infinispan/default-jgroups-tcp.xml @@ -0,0 +1,76 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ============LICENSE_START======================================================= + Copyright (C) 2016-2018 Ericsson. All rights reserved. + ================================================================================ + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + SPDX-License-Identifier: Apache-2.0 + ============LICENSE_END========================================================= +--> + +<config xmlns="urn:org:jgroups" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="urn:org:jgroups http://www.jgroups.org/schema/jgroups-4.0.xsd"> + <TCP bind_addr="${jgroups.tcp.address:127.0.0.1}" + bind_port="${jgroups.tcp.port:7800}" + enable_diagnostics="false" + thread_naming_pattern="pl" + send_buf_size="640k" + sock_conn_timeout="300" + bundler_type="no-bundler" + + thread_pool.min_threads="${jgroups.thread_pool.min_threads:0}" + thread_pool.max_threads="${jgroups.thread_pool.max_threads:200}" + thread_pool.keep_alive_time="60000" + /> + <MPING bind_addr="${jgroups.tcp.address:127.0.0.1}" + mcast_addr="${jgroups.mping.mcast_addr:228.2.4.6}" + mcast_port="${jgroups.mping.mcast_port:43366}" + ip_ttl="${jgroups.udp.ip_ttl:2}" + /> + <MERGE3 min_interval="10000" + max_interval="30000" + /> + <FD_SOCK /> + <FD_ALL timeout="60000" + interval="15000" + timeout_check_interval="5000" + /> + <VERIFY_SUSPECT timeout="5000" /> + <pbcast.NAKACK2 use_mcast_xmit="false" + xmit_interval="100" + xmit_table_num_rows="50" + xmit_table_msgs_per_row="1024" + xmit_table_max_compaction_time="30000" + resend_last_seqno="true" + /> + <UNICAST3 xmit_interval="100" + xmit_table_num_rows="50" + xmit_table_msgs_per_row="1024" + xmit_table_max_compaction_time="30000" + conn_expiry_timeout="0" + /> + <pbcast.STABLE stability_delay="500" + desired_avg_gossip="5000" + max_bytes="1M" + /> + <pbcast.GMS print_local_addr="false" + install_view_locally_first="true" + join_timeout="${jgroups.join_timeout:5000}" + /> + <MFC max_credits="2m" + min_threshold="0.40" + /> + <FRAG3/> +</config> diff --git a/testsuites/performance/performance-context-metrics/src/test/resources/infinispan/infinispan.xml b/testsuites/performance/performance-context-metrics/src/test/resources/infinispan/infinispan.xml index a8541333e..46722477a 100644 --- a/testsuites/performance/performance-context-metrics/src/test/resources/infinispan/infinispan.xml +++ b/testsuites/performance/performance-context-metrics/src/test/resources/infinispan/infinispan.xml @@ -23,7 +23,7 @@ <infinispan xmlns="urn:infinispan:config:8.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:infinispan:config:8.0 http://infinispan.org/schemas/infinispan-config-8.0.xsd"> <jgroups> - <stack-file name="external-file" path="default-configs/default-jgroups-tcp.xml" /> + <stack-file name="external-file" path="infinispan/default-jgroups-tcp.xml" /> </jgroups> <cache-container name="ApexCacheContainer" default-cache="TestContext_0.0.1"> |