You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by ag...@apache.org on 2022/07/18 16:37:32 UTC

[storm] branch master updated: STORM-3875 remove topology gc opts from ThroughputVsLatency to allow running on JDK11 (#3486)

This is an automated email from the ASF dual-hosted git repository.

agresch pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/storm.git


The following commit(s) were added to refs/heads/master by this push:
     new aa4772980 STORM-3875 remove topology gc opts from ThroughputVsLatency to allow running on JDK11 (#3486)
aa4772980 is described below

commit aa477298075f590da0a38428d8c3d4a431ecf089
Author: Aaron Gresch <ag...@gmail.com>
AuthorDate: Mon Jul 18 11:37:19 2022 -0500

    STORM-3875 remove topology gc opts from ThroughputVsLatency to allow running on JDK11 (#3486)
    
    Co-authored-by: Aaron Gresch <ag...@yahoo-inc.com>
---
 .../src/main/java/org/apache/storm/loadgen/ThroughputVsLatency.java    | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/examples/storm-loadgen/src/main/java/org/apache/storm/loadgen/ThroughputVsLatency.java b/examples/storm-loadgen/src/main/java/org/apache/storm/loadgen/ThroughputVsLatency.java
index 493c7e01b..4a139cf8b 100644
--- a/examples/storm-loadgen/src/main/java/org/apache/storm/loadgen/ThroughputVsLatency.java
+++ b/examples/storm-loadgen/src/main/java/org/apache/storm/loadgen/ThroughputVsLatency.java
@@ -261,9 +261,6 @@ public class ThroughputVsLatency {
         }
         conf.put(Config.TOPOLOGY_WORKER_METRICS, workerMetrics);
         conf.put(Config.TOPOLOGY_BUILTIN_METRICS_BUCKET_SIZE_SECS, 10);
-        conf.put(Config.TOPOLOGY_WORKER_GC_CHILDOPTS,
-            "-XX:+UseConcMarkSweepGC -XX:+UseParNewGC -XX:+UseConcMarkSweepGC "
-                + "-XX:NewSize=128m -XX:CMSInitiatingOccupancyFraction=70 -XX:-CMSConcurrentMTEnabled");
         conf.put(Config.TOPOLOGY_WORKER_CHILDOPTS, "-Xmx2g");
 
         TopologyBuilder builder = new TopologyBuilder();