org.apache.hadoop.vaidya.statistics.job
Enum JobStatisticsInterface.MapTaskKeys

java.lang.Object
  extended by java.lang.Enum<JobStatisticsInterface.MapTaskKeys>
      extended by org.apache.hadoop.vaidya.statistics.job.JobStatisticsInterface.MapTaskKeys
All Implemented Interfaces:
Serializable, Comparable<JobStatisticsInterface.MapTaskKeys>
Enclosing interface:
JobStatisticsInterface

public static enum JobStatisticsInterface.MapTaskKeys
extends Enum<JobStatisticsInterface.MapTaskKeys>

Map Task Keys


Enum Constant Summary
ATTEMPT_ID
           
COMBINE_INPUT_RECORDS
           
COMBINE_OUTPUT_RECORDS
           
ERROR
           
EXECUTION_TIME
           
FILE_BYTES_READ
           
FILE_BYTES_WRITTEN
           
FINISH_TIME
           
HDFS_BYTES_READ
           
HDFS_BYTES_WRITTEN
           
HOSTNAME
           
HTTP_PORT
           
INPUT_BYTES
           
INPUT_RECORDS
           
NUM_ATTEMPTS
           
OUTPUT_BYTES
           
OUTPUT_RECORDS
           
SPILLED_RECORDS
           
SPLITS
           
START_TIME
           
STATE_STRING
           
STATUS
           
TASK_ID
           
TASK_TYPE
           
TRACKER_NAME
           
 
Method Summary
static JobStatisticsInterface.MapTaskKeys valueOf(String name)
          Returns the enum constant of this type with the specified name.
static JobStatisticsInterface.MapTaskKeys[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

TASK_ID

public static final JobStatisticsInterface.MapTaskKeys TASK_ID

TASK_TYPE

public static final JobStatisticsInterface.MapTaskKeys TASK_TYPE

START_TIME

public static final JobStatisticsInterface.MapTaskKeys START_TIME

STATUS

public static final JobStatisticsInterface.MapTaskKeys STATUS

FINISH_TIME

public static final JobStatisticsInterface.MapTaskKeys FINISH_TIME

HDFS_BYTES_READ

public static final JobStatisticsInterface.MapTaskKeys HDFS_BYTES_READ

HDFS_BYTES_WRITTEN

public static final JobStatisticsInterface.MapTaskKeys HDFS_BYTES_WRITTEN

FILE_BYTES_READ

public static final JobStatisticsInterface.MapTaskKeys FILE_BYTES_READ

FILE_BYTES_WRITTEN

public static final JobStatisticsInterface.MapTaskKeys FILE_BYTES_WRITTEN

COMBINE_OUTPUT_RECORDS

public static final JobStatisticsInterface.MapTaskKeys COMBINE_OUTPUT_RECORDS

COMBINE_INPUT_RECORDS

public static final JobStatisticsInterface.MapTaskKeys COMBINE_INPUT_RECORDS

OUTPUT_RECORDS

public static final JobStatisticsInterface.MapTaskKeys OUTPUT_RECORDS

INPUT_RECORDS

public static final JobStatisticsInterface.MapTaskKeys INPUT_RECORDS

INPUT_BYTES

public static final JobStatisticsInterface.MapTaskKeys INPUT_BYTES

OUTPUT_BYTES

public static final JobStatisticsInterface.MapTaskKeys OUTPUT_BYTES

NUM_ATTEMPTS

public static final JobStatisticsInterface.MapTaskKeys NUM_ATTEMPTS

ATTEMPT_ID

public static final JobStatisticsInterface.MapTaskKeys ATTEMPT_ID

HOSTNAME

public static final JobStatisticsInterface.MapTaskKeys HOSTNAME

SPLITS

public static final JobStatisticsInterface.MapTaskKeys SPLITS

SPILLED_RECORDS

public static final JobStatisticsInterface.MapTaskKeys SPILLED_RECORDS

TRACKER_NAME

public static final JobStatisticsInterface.MapTaskKeys TRACKER_NAME

STATE_STRING

public static final JobStatisticsInterface.MapTaskKeys STATE_STRING

HTTP_PORT

public static final JobStatisticsInterface.MapTaskKeys HTTP_PORT

ERROR

public static final JobStatisticsInterface.MapTaskKeys ERROR

EXECUTION_TIME

public static final JobStatisticsInterface.MapTaskKeys EXECUTION_TIME
Method Detail

values

public static JobStatisticsInterface.MapTaskKeys[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (JobStatisticsInterface.MapTaskKeys c : JobStatisticsInterface.MapTaskKeys.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static JobStatisticsInterface.MapTaskKeys valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2009 The Apache Software Foundation