public enum JobCounter extends Enum<JobCounter>
| Modifier and Type | Method and Description |
|---|---|
static JobCounter |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JobCounter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JobCounter MAP_INPUT_RECORDS
public static final JobCounter MAP_SHUFFLE_RECORDS
public static final JobCounter MAP_OUTPUT_RECORDS
public static final JobCounter MAP_SKIPPED_RECORDS
public static final JobCounter MAP_INPUT_BYTES
public static final JobCounter MAP_SHUFFLE_BYTES
public static final JobCounter MAP_OUTPUT_BYTES
public static final JobCounter MAP_MAX_MEMORY
public static final JobCounter MAP_SPILL_FILES
public static final JobCounter MAP_MAX_USED_BUFFER
public static final JobCounter COMBINE_INPUT_RECORDS
public static final JobCounter COMBINE_INPUT_GROUPS
public static final JobCounter COMBINE_OUTPUT_RECORDS
public static final JobCounter REDUCE_INPUT_GROUPS
public static final JobCounter REDUCE_INPUT_RECORDS
public static final JobCounter REDUCE_OUTPUT_BYTES
public static final JobCounter REDUCE_OUTPUT_RECORDS
public static final JobCounter REDUCE_SKIPPED_GROUPS
public static final JobCounter REDUCE_SKIPPED_RECORDS
public static final JobCounter REDUCE_MAX_MEMORY
public static final JobCounter __EMPTY_WILL_NOT_SHOW
public static final JobCounter __EMPTY_INPUT_RECORD_COUNT
public static final JobCounter __EMPTY_OUTPUT_RECORD_COUNT
public static JobCounter[] values()
for (JobCounter c : JobCounter.values()) System.out.println(c);
public static JobCounter 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 © 2020 Alibaba Cloud Computing. All rights reserved.