@InterfaceAudience.Private public enum TaskCounter extends Enum<TaskCounter>
Enum Constant and Description |
---|
ADDITIONAL_SPILL_COUNT
Spills that were generated & read by the same task (unnecessary spills due to lac of
adequate memory).
|
ADDITIONAL_SPILLS_BYTES_READ
Bytes read from disk due to previous spills (lac of adequate memory).
|
ADDITIONAL_SPILLS_BYTES_WRITTEN
Bytes written to disk due to unnecessary spills (lac of adequate memory).
|
COMBINE_INPUT_RECORDS |
COMBINE_OUTPUT_RECORDS |
COMMITTED_HEAP_BYTES |
CPU_MILLISECONDS |
FIRST_EVENT_RECEIVED
First event received from source relative to task start time.
|
GC_TIME_MILLIS |
INPUT_GROUPS |
INPUT_RECORDS_PROCESSED
Represents the number of Input Records that were actually processed.
|
LAST_EVENT_RECEIVED
Last event received from source relative to task start time.
|
MERGE_PHASE_TIME
Time taken to merge data retrieved during shuffle.
|
MERGED_MAP_OUTPUTS |
NUM_DISK_TO_DISK_MERGES
Number of disk to disk merges performed during the sort-merge
|
NUM_FAILED_SHUFFLE_INPUTS
Number of failed copy attempts (physical inputs)
|
NUM_MEM_TO_DISK_MERGES
Number of Memory to Disk merges performed during sort-merge.
|
NUM_SHUFFLED_INPUTS
Number of Inputs from which data is copied.
|
NUM_SKIPPED_INPUTS
Number of Inputs from which data was not copied - typically due to an empty Input
|
NUM_SPECULATIONS |
OUTPUT_BYTES
Represents the serialized output size (uncompressed) of data being written.
|
OUTPUT_BYTES_PHYSICAL
Represents the actual physical size of the Output generated.
|
OUTPUT_BYTES_WITH_OVERHEAD
Represents serialized output size (uncompressed) along with any overhead
added by the format being used.
|
OUTPUT_LARGE_RECORDS
Represent the number of large records in the output - typically, records which are
spilled directly
|
OUTPUT_RECORDS
Represents the number of actual output records.
|
PHYSICAL_MEMORY_BYTES |
REDUCE_INPUT_GROUPS
Number of Input Groups seen by ShuffledMergedInput.
|
REDUCE_INPUT_RECORDS
Number of records (across all Groups) seen by ShuffledMergedInput
Alternately number of records seen by a ReduceProcessor
|
REDUCE_OUTPUT_RECORDS |
REDUCE_SKIPPED_GROUPS |
REDUCE_SKIPPED_RECORDS |
SHUFFLE_BYTES
Amount of physical data moved over the wire.
|
SHUFFLE_BYTES_DECOMPRESSED
Uncompressed size of the data being processed by the relevant Shuffle.
|
SHUFFLE_BYTES_DISK_DIRECT
Number of bytes which were read directly from local disk
|
SHUFFLE_BYTES_TO_DISK
Number of bytes which were shuffled directly to disk
|
SHUFFLE_BYTES_TO_MEM
Number of bytes which were shuffled directly to memory.
|
SHUFFLE_CHUNK_COUNT
Number of spill files being offered via shuffle-handler.
|
SHUFFLE_PHASE_TIME
Time taken to shuffle data.
|
SKIPPED_RECORDS |
SPILLED_RECORDS
Number of records written to disk in case of OnFileSortedOutput.
|
SPLIT_RAW_BYTES |
VIRTUAL_MEMORY_BYTES |
Modifier and Type | Method and Description |
---|---|
static TaskCounter |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TaskCounter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TaskCounter NUM_SPECULATIONS
public static final TaskCounter REDUCE_INPUT_GROUPS
public static final TaskCounter REDUCE_INPUT_RECORDS
public static final TaskCounter REDUCE_OUTPUT_RECORDS
public static final TaskCounter REDUCE_SKIPPED_GROUPS
public static final TaskCounter REDUCE_SKIPPED_RECORDS
public static final TaskCounter SPLIT_RAW_BYTES
public static final TaskCounter COMBINE_INPUT_RECORDS
public static final TaskCounter COMBINE_OUTPUT_RECORDS
public static final TaskCounter SPILLED_RECORDS
public static final TaskCounter NUM_SHUFFLED_INPUTS
public static final TaskCounter NUM_SKIPPED_INPUTS
public static final TaskCounter NUM_FAILED_SHUFFLE_INPUTS
public static final TaskCounter MERGED_MAP_OUTPUTS
public static final TaskCounter GC_TIME_MILLIS
public static final TaskCounter CPU_MILLISECONDS
public static final TaskCounter PHYSICAL_MEMORY_BYTES
public static final TaskCounter VIRTUAL_MEMORY_BYTES
public static final TaskCounter COMMITTED_HEAP_BYTES
public static final TaskCounter INPUT_RECORDS_PROCESSED
public static final TaskCounter OUTPUT_RECORDS
public static final TaskCounter OUTPUT_LARGE_RECORDS
public static final TaskCounter SKIPPED_RECORDS
public static final TaskCounter OUTPUT_BYTES
public static final TaskCounter OUTPUT_BYTES_WITH_OVERHEAD
public static final TaskCounter OUTPUT_BYTES_PHYSICAL
public static final TaskCounter ADDITIONAL_SPILLS_BYTES_WRITTEN
public static final TaskCounter ADDITIONAL_SPILLS_BYTES_READ
public static final TaskCounter ADDITIONAL_SPILL_COUNT
public static final TaskCounter SHUFFLE_CHUNK_COUNT
public static final TaskCounter INPUT_GROUPS
public static final TaskCounter SHUFFLE_BYTES
public static final TaskCounter SHUFFLE_BYTES_DECOMPRESSED
public static final TaskCounter SHUFFLE_BYTES_TO_MEM
public static final TaskCounter SHUFFLE_BYTES_TO_DISK
public static final TaskCounter SHUFFLE_BYTES_DISK_DIRECT
public static final TaskCounter NUM_MEM_TO_DISK_MERGES
public static final TaskCounter NUM_DISK_TO_DISK_MERGES
public static final TaskCounter SHUFFLE_PHASE_TIME
public static final TaskCounter MERGE_PHASE_TIME
public static final TaskCounter FIRST_EVENT_RECEIVED
public static final TaskCounter LAST_EVENT_RECEIVED
public static TaskCounter[] values()
for (TaskCounter c : TaskCounter.values()) System.out.println(c);
public static TaskCounter valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2016 Apache Software Foundation. All rights reserved.