You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by xi...@apache.org on 2023/05/12 12:58:12 UTC

[storm] branch master updated: Remove explicit worker heap size in ThroughputVsLatency

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

xinwang 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 414f15551 Remove explicit worker heap size in ThroughputVsLatency
     new a8aaf9f5e Merge pull request #3542 from jmartell7/patch-2
414f15551 is described below

commit 414f15551db01cbef5d60d7289f759ce3c3f50a7
Author: jmartell7 <jo...@gmail.com>
AuthorDate: Mon May 8 10:12:59 2023 -0500

    Remove explicit worker heap size in ThroughputVsLatency
    
    Allow users to change worker heap size in ThroughputVsLatency example topo.
---
 .../src/main/java/org/apache/storm/loadgen/ThroughputVsLatency.java      | 1 -
 1 file changed, 1 deletion(-)

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 4a139cf8b..6ade66851 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,7 +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_CHILDOPTS, "-Xmx2g");
 
         TopologyBuilder builder = new TopologyBuilder();