public static class PipelineResult.StageResult extends Object
| Constructor and Description | 
|---|
| StageResult(String stageName,
           org.apache.hadoop.mapreduce.Counters counters) | 
| StageResult(String stageName,
           org.apache.hadoop.mapreduce.Counters counters,
           long startTimeMsec,
           long endTimeMsec) | 
| StageResult(String stageName,
           String stageId,
           org.apache.hadoop.mapreduce.Counters counters,
           long startTimeMsec,
           long jobStartTimeMsec,
           long jobEndTimeMsec,
           long endTimeMsec) | 
| Modifier and Type | Method and Description | 
|---|---|
| org.apache.hadoop.mapreduce.Counter | findCounter(Enum<?> key)Deprecated. 
 The  Counterclass changed incompatibly between Hadoop 1 and 2
 (from a class to an interface) so user programs should avoid this method and usegetCounterValue(Enum)and/orgetCounterDisplayName(Enum). | 
| String | getCounterDisplayName(Enum<?> key) | 
| String | getCounterDisplayName(String groupName,
                     String counterName) | 
| Map<String,Set<String>> | getCounterNames() | 
| org.apache.hadoop.mapreduce.Counters | getCounters()Deprecated. 
 The  Counterclass changed incompatibly between Hadoop 1 and 2
 (from a class to an interface) so user programs should avoid this method and usegetCounterNames(). | 
| long | getCounterValue(Enum<?> key) | 
| long | getCounterValue(String groupName,
               String counterName) | 
| long | getEndTimeMsec() | 
| long | getJobEndTimeMsec() | 
| long | getJobStartTimeMsec() | 
| String | getStageId() | 
| String | getStageName() | 
| long | getStartTimeMsec() | 
public StageResult(String stageName, org.apache.hadoop.mapreduce.Counters counters)
public StageResult(String stageName, org.apache.hadoop.mapreduce.Counters counters, long startTimeMsec, long endTimeMsec)
public String getStageName()
public String getStageId()
public long getStartTimeMsec()
public long getJobStartTimeMsec()
public long getJobEndTimeMsec()
public long getEndTimeMsec()
@Deprecated public org.apache.hadoop.mapreduce.Counters getCounters()
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 Map<String,Set<String>> getCounterNames()
@Deprecated public org.apache.hadoop.mapreduce.Counter findCounter(Enum<?> key)
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).public long getCounterValue(Enum<?> key)
Copyright © 2017 The Apache Software Foundation. All rights reserved.