Remove flags when running benchmarks. (#8262)
Motivation: Some of the flags we used are not supported anymore on more recent JDK versions. We should just remove all of them and only keep what we really need. This may also reflect better what people use in production. Modifications: Remove some flags when running the benchmarks. Result: Benchmarks also run with JDK11.
This commit is contained in:
parent
8635d88d4d
commit
02d559e6a4
@ -43,8 +43,7 @@ public abstract class AbstractMicrobenchmarkBase {
|
||||
protected static final int DEFAULT_WARMUP_ITERATIONS = 10;
|
||||
protected static final int DEFAULT_MEASURE_ITERATIONS = 10;
|
||||
protected static final String[] BASE_JVM_ARGS = {
|
||||
"-server", "-dsa", "-da", "-ea:io.netty...", "-XX:+AggressiveOpts", "-XX:+UseBiasedLocking",
|
||||
"-XX:+UseFastAccessorMethods", "-XX:+OptimizeStringConcat",
|
||||
"-server", "-dsa", "-da", "-ea:io.netty...",
|
||||
"-XX:+HeapDumpOnOutOfMemoryError", "-Dio.netty.leakDetection.level=disabled"};
|
||||
|
||||
static {
|
||||
|
Loading…
x
Reference in New Issue
Block a user