Package alluxio.stress.common
Class GeneralBenchSummary
- java.lang.Object
-
- alluxio.stress.common.GeneralBenchSummary
-
- All Implemented Interfaces:
Summary,alluxio.util.JsonSerializable
- Direct Known Subclasses:
JobServiceBenchSummary
public abstract class GeneralBenchSummary extends java.lang.Object implements Summary
abstract class for BenchSummary.
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.Map<java.lang.String,java.util.List<java.lang.String>>mErrorsprotected floatmThroughput
-
Constructor Summary
Constructors Constructor Description GeneralBenchSummary()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Map<java.lang.String,java.util.List<java.lang.String>>getErrors()floatgetThroughput()voidsetErrors(java.util.Map<java.lang.String,java.util.List<java.lang.String>> errors)voidsetThroughput(float throughput)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface alluxio.stress.Summary
graphGenerator
-
-
-
-
Method Detail
-
getThroughput
public float getThroughput()
- Returns:
- the throughput
-
setThroughput
public void setThroughput(float throughput)
- Parameters:
throughput- the throughput
-
getErrors
public java.util.Map<java.lang.String,java.util.List<java.lang.String>> getErrors()
- Returns:
- the errors
-
setErrors
public void setErrors(java.util.Map<java.lang.String,java.util.List<java.lang.String>> errors)
- Parameters:
errors- the errors
-
-