PipelineResult.StageResult(String stageName,
org.apache.hadoop.mapreduce.Counters counters,
long startTimeMsec,
long endTimeMsec)
PipelineResult.StageResult(String stageName,
String stageId,
org.apache.hadoop.mapreduce.Counters counters,
long startTimeMsec,
long jobStartTimeMsec,
long jobEndTimeMsec,
long endTimeMsec)
getCounters() Deprecated.The Counter class changed incompatibly between Hadoop 1 and 2
(from a class to an interface) so user programs should avoid this method and use
getCounterNames().
public PipelineResult.StageResult(String stageName,
org.apache.hadoop.mapreduce.Counters counters)
PipelineResult.StageResult
public PipelineResult.StageResult(String stageName,
org.apache.hadoop.mapreduce.Counters counters,
long startTimeMsec,
long endTimeMsec)
PipelineResult.StageResult
public PipelineResult.StageResult(String stageName,
String stageId,
org.apache.hadoop.mapreduce.Counters counters,
long startTimeMsec,
long jobStartTimeMsec,
long jobEndTimeMsec,
long endTimeMsec)
the overall start time for this stage, that is, the time at which any pre-job hooks were
started.
getJobStartTimeMsec
public long getJobStartTimeMsec()
Returns:
the time that the work for this stage was submitted to the cluster for execution, if applicable.
getJobEndTimeMsec
public long getJobEndTimeMsec()
Returns:
the time that the work for this stage finished processing on the cluster, if applicable.
getEndTimeMsec
public long getEndTimeMsec()
Returns:
the overall end time for this stage, that is, the time at which any post-job hooks completed.
getCounters
@Deprecated
public org.apache.hadoop.mapreduce.Counters getCounters()
Deprecated.The Counter class changed incompatibly between Hadoop 1 and 2
(from a class to an interface) so user programs should avoid this method and use
getCounterNames().
@Deprecated
public org.apache.hadoop.mapreduce.Counter findCounter(Enum<?> key)
Deprecated.The Counter class changed incompatibly between Hadoop 1 and 2
(from a class to an interface) so user programs should avoid this method and use
getCounterValue(Enum) and/or getCounterDisplayName(Enum).
getCounterValue
public long getCounterValue(String groupName,
String counterName)
getCounterDisplayName
public StringgetCounterDisplayName(String groupName,
String counterName)