Search in sources :

Example 1 with TextBasedBenchmarkResultWriter

use of com.mongodb.benchmark.framework.TextBasedBenchmarkResultWriter in project mongo-java-driver by mongodb.

the class GridFSMultiFileDownloadBenchmark method main.

public static void main(String[] args) throws Exception {
    BenchmarkResult benchmarkResult = new BenchmarkRunner(new GridFSMultiFileDownloadBenchmark(), 20, 100).run();
    new TextBasedBenchmarkResultWriter(System.out, false, true).write(benchmarkResult);
}
Also used : TextBasedBenchmarkResultWriter(com.mongodb.benchmark.framework.TextBasedBenchmarkResultWriter) BenchmarkResult(com.mongodb.benchmark.framework.BenchmarkResult) BenchmarkRunner(com.mongodb.benchmark.framework.BenchmarkRunner)

Example 2 with TextBasedBenchmarkResultWriter

use of com.mongodb.benchmark.framework.TextBasedBenchmarkResultWriter in project mongo-java-driver by mongodb.

the class MultiFileExportBenchmark method main.

public static void main(String[] args) throws Exception {
    BenchmarkResult benchmarkResult = new BenchmarkRunner(new MultiFileExportBenchmark(), 0, 1).run();
    new TextBasedBenchmarkResultWriter(System.out).write(benchmarkResult);
}
Also used : TextBasedBenchmarkResultWriter(com.mongodb.benchmark.framework.TextBasedBenchmarkResultWriter) BenchmarkResult(com.mongodb.benchmark.framework.BenchmarkResult) BenchmarkRunner(com.mongodb.benchmark.framework.BenchmarkRunner)

Example 3 with TextBasedBenchmarkResultWriter

use of com.mongodb.benchmark.framework.TextBasedBenchmarkResultWriter in project mongo-java-driver by mongodb.

the class GridFSMultiFileUploadBenchmark method main.

public static void main(String[] args) throws Exception {
    BenchmarkResult benchmarkResult = new BenchmarkRunner(new GridFSMultiFileUploadBenchmark(), 4, 10).run();
    new TextBasedBenchmarkResultWriter(System.out).write(benchmarkResult);
}
Also used : TextBasedBenchmarkResultWriter(com.mongodb.benchmark.framework.TextBasedBenchmarkResultWriter) BenchmarkResult(com.mongodb.benchmark.framework.BenchmarkResult) BenchmarkRunner(com.mongodb.benchmark.framework.BenchmarkRunner)

Example 4 with TextBasedBenchmarkResultWriter

use of com.mongodb.benchmark.framework.TextBasedBenchmarkResultWriter in project mongo-java-driver by mongodb.

the class MultiFileImportBenchmark method main.

public static void main(String[] args) throws Exception {
    BenchmarkResult benchmarkResult = new BenchmarkRunner(new MultiFileImportBenchmark(), 10, 100).run();
    new TextBasedBenchmarkResultWriter(System.out, true, true).write(benchmarkResult);
}
Also used : TextBasedBenchmarkResultWriter(com.mongodb.benchmark.framework.TextBasedBenchmarkResultWriter) BenchmarkResult(com.mongodb.benchmark.framework.BenchmarkResult) BenchmarkRunner(com.mongodb.benchmark.framework.BenchmarkRunner)

Aggregations

BenchmarkResult (com.mongodb.benchmark.framework.BenchmarkResult)4 BenchmarkRunner (com.mongodb.benchmark.framework.BenchmarkRunner)4 TextBasedBenchmarkResultWriter (com.mongodb.benchmark.framework.TextBasedBenchmarkResultWriter)4