use of alluxio.stress.cli.StressJobServiceBench in project alluxio by Alluxio.
the class JobServiceMaxThroughput method runSingleTest.
@Override
protected JobServiceBenchSummary runSingleTest(List<String> args) throws Exception {
Benchmark b = new StressJobServiceBench();
String result = b.run(args.toArray(new String[0]));
return JsonSerializable.fromJson(result, new JobServiceBenchSummary[0]);
}
Aggregations