Package alluxio.stress.worker
Class IOTaskSummary.SpeedStat
- java.lang.Object
-
- alluxio.stress.worker.IOTaskSummary.SpeedStat
-
- All Implemented Interfaces:
alluxio.util.JsonSerializable
- Enclosing class:
- IOTaskSummary
public static class IOTaskSummary.SpeedStat extends java.lang.Object implements alluxio.util.JsonSerializableAn object representation of all the statistics we need from this I/O test.
-
-
Field Summary
Fields Modifier and Type Field Description doublemAvgSpeedMbpsdoublemClusterAvgSpeedMbpsdoublemMaxSpeedMbpsdoublemMinSpeedMbpsdoublemStdDevdoublemTotalDurationSecondslongmTotalSizeBytes
-
Constructor Summary
Constructors Constructor Description SpeedStat()An empty constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringtoString()
-
-
-
Field Detail
-
mTotalDurationSeconds
public double mTotalDurationSeconds
-
mTotalSizeBytes
public long mTotalSizeBytes
-
mMaxSpeedMbps
public double mMaxSpeedMbps
-
mMinSpeedMbps
public double mMinSpeedMbps
-
mAvgSpeedMbps
public double mAvgSpeedMbps
-
mClusterAvgSpeedMbps
public double mClusterAvgSpeedMbps
-
mStdDev
public double mStdDev
-
-