Changed benchmark params

This commit is contained in:
Justin Borromeo 2019-02-04 15:31:21 -08:00
parent 432acaf085
commit 9e6e71616b

View File

@ -91,7 +91,7 @@ import java.util.Map;
import java.util.concurrent.ExecutorService; import java.util.concurrent.ExecutorService;
import java.util.concurrent.TimeUnit; import java.util.concurrent.TimeUnit;
/* Works with 4GB heap size or greater. Otherwise there's a good chance of an OOME. */ /* Works with 8GB heap size or greater. Otherwise there's a good chance of an OOME. */
@State(Scope.Benchmark) @State(Scope.Benchmark)
@Fork(value = 1) @Fork(value = 1)
@Warmup(iterations = 10) @Warmup(iterations = 10)
@ -104,13 +104,13 @@ public class ScanBenchmark
@Param({"1", "2"}) @Param({"1", "2"})
private int numProcessingThreads; private int numProcessingThreads;
@Param({"250000"}) @Param({"750000"})
private int rowsPerSegment; private int rowsPerSegment;
@Param({"basic.A"}) @Param({"basic.A"})
private String schemaAndQuery; private String schemaAndQuery;
@Param({"1000"}) @Param({"1000", "99999"})
private int limit; private int limit;
private static final Logger log = new Logger(ScanBenchmark.class); private static final Logger log = new Logger(ScanBenchmark.class);