You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by he...@apache.org on 2019/01/09 21:12:33 UTC

[geode-benchmarks] branch GEODE-6191 updated: increase newSize and maxNewSize to 4g

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

heybales pushed a commit to branch GEODE-6191
in repository https://gitbox.apache.org/repos/asf/geode-benchmarks.git


The following commit(s) were added to refs/heads/GEODE-6191 by this push:
     new 488e64b  increase newSize and maxNewSize to 4g
488e64b is described below

commit 488e64b2aa431e069c3d3e3317078425f09c17a2
Author: Helena A. Bales <hb...@pivotal.io>
AuthorDate: Wed Jan 9 13:12:17 2019 -0800

    increase newSize and maxNewSize to 4g
---
 .../java/org/apache/geode/benchmark/parameters/JVMParameters.java     | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/geode-benchmarks/src/main/java/org/apache/geode/benchmark/parameters/JVMParameters.java b/geode-benchmarks/src/main/java/org/apache/geode/benchmark/parameters/JVMParameters.java
index 6a0dda0..86fc086 100644
--- a/geode-benchmarks/src/main/java/org/apache/geode/benchmark/parameters/JVMParameters.java
+++ b/geode-benchmarks/src/main/java/org/apache/geode/benchmark/parameters/JVMParameters.java
@@ -43,7 +43,9 @@ public class JVMParameters {
       "-Xms8g",
       "-XX:+PrintTenuringDistribution",
       "-XX:SurvivorRatio=3",
-      "-XX:TargetSurvivorRatio=80"
+      "-XX:TargetSurvivorRatio=80",
+      "-XX:NewSize=4g",
+      "-XX:MaxNewSize=4g"
   };
 
 }