merge MAPREDUCE-4971 from trunk. Minor extensibility enhancements to Counters & FileOutputFormat. Contributed by Arun C Murthy
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1441672 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
6eead06fa2
commit
392a96bd64
|
@ -61,6 +61,9 @@ Release 2.0.3-alpha - Unreleased
|
|||
MAPREDUCE-4838. Add additional fields like Locality, Avataar to the
|
||||
JobHistory logs. (Zhijie Shen via sseth)
|
||||
|
||||
MAPREDUCE-4971. Minor extensibility enhancements to Counters &
|
||||
FileOutputFormat. (Arun C Murthy via sseth)
|
||||
|
||||
OPTIMIZATIONS
|
||||
|
||||
MAPREDUCE-4893. Fixed MR ApplicationMaster to do optimal assignment of
|
||||
|
|
|
@ -230,6 +230,10 @@ public class Counters
|
|||
public static class Group implements CounterGroupBase<Counter> {
|
||||
private CounterGroupBase<Counter> realGroup;
|
||||
|
||||
protected Group() {
|
||||
realGroup = null;
|
||||
}
|
||||
|
||||
Group(GenericGroup group) {
|
||||
this.realGroup = group;
|
||||
}
|
||||
|
|
|
@ -92,7 +92,7 @@ public class FileOutputCommitter extends OutputCommitter {
|
|||
}
|
||||
|
||||
@Private
|
||||
Path getTaskAttemptPath(TaskAttemptContext context) throws IOException {
|
||||
public Path getTaskAttemptPath(TaskAttemptContext context) throws IOException {
|
||||
Path out = getOutputPath(context);
|
||||
return out == null ? null : getTaskAttemptPath(context, out);
|
||||
}
|
||||
|
|
|
@ -22,6 +22,7 @@ import java.io.IOException;
|
|||
import java.text.NumberFormat;
|
||||
|
||||
import org.apache.hadoop.classification.InterfaceAudience;
|
||||
import org.apache.hadoop.classification.InterfaceAudience.Private;
|
||||
import org.apache.hadoop.classification.InterfaceStability;
|
||||
import org.apache.hadoop.fs.FileSystem;
|
||||
import org.apache.hadoop.fs.Path;
|
||||
|
@ -152,8 +153,8 @@ public abstract class FileOutputFormat<K, V> implements OutputFormat<K, V> {
|
|||
* @param outputDir the {@link Path} of the output directory
|
||||
* for the map-reduce job.
|
||||
*/
|
||||
|
||||
static void setWorkOutputPath(JobConf conf, Path outputDir) {
|
||||
@Private
|
||||
public static void setWorkOutputPath(JobConf conf, Path outputDir) {
|
||||
outputDir = new Path(conf.getWorkingDirectory(), outputDir);
|
||||
conf.set(JobContext.TASK_OUTPUT_DIR, outputDir.toString());
|
||||
}
|
||||
|
|
|
@ -28,6 +28,7 @@ import java.util.regex.Pattern;
|
|||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
import org.apache.hadoop.classification.InterfaceAudience;
|
||||
import org.apache.hadoop.classification.InterfaceAudience.Private;
|
||||
import org.apache.hadoop.classification.InterfaceStability;
|
||||
import org.apache.hadoop.conf.Configuration;
|
||||
import org.apache.hadoop.fs.FileStatus;
|
||||
|
@ -419,7 +420,8 @@ public class JobConf extends Configuration {
|
|||
return credentials;
|
||||
}
|
||||
|
||||
void setCredentials(Credentials credentials) {
|
||||
@Private
|
||||
public void setCredentials(Credentials credentials) {
|
||||
this.credentials = credentials;
|
||||
}
|
||||
|
||||
|
|
|
@ -35,6 +35,7 @@ import com.google.common.collect.Iterators;
|
|||
import com.google.common.collect.Maps;
|
||||
|
||||
import org.apache.hadoop.classification.InterfaceAudience;
|
||||
import org.apache.hadoop.classification.InterfaceAudience.Private;
|
||||
import org.apache.hadoop.io.WritableUtils;
|
||||
import org.apache.hadoop.mapreduce.Counter;
|
||||
import org.apache.hadoop.mapreduce.FileSystemCounter;
|
||||
|
@ -72,6 +73,16 @@ public abstract class FileSystemCounterGroup<C extends Counter>
|
|||
this.scheme = scheme;
|
||||
key = ref;
|
||||
}
|
||||
|
||||
@Private
|
||||
public String getScheme() {
|
||||
return scheme;
|
||||
}
|
||||
|
||||
@Private
|
||||
public FileSystemCounter getFileSystemCounter() {
|
||||
return key;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getName() {
|
||||
|
|
|
@ -29,6 +29,7 @@ import java.util.Iterator;
|
|||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
import org.apache.hadoop.classification.InterfaceAudience;
|
||||
import org.apache.hadoop.classification.InterfaceAudience.Private;
|
||||
import org.apache.hadoop.io.WritableUtils;
|
||||
import org.apache.hadoop.mapreduce.Counter;
|
||||
import org.apache.hadoop.mapreduce.util.ResourceBundles;
|
||||
|
@ -66,7 +67,17 @@ public abstract class FrameworkCounterGroup<T extends Enum<T>,
|
|||
key = ref;
|
||||
this.groupName = groupName;
|
||||
}
|
||||
|
||||
@Private
|
||||
public T getKey() {
|
||||
return key;
|
||||
}
|
||||
|
||||
@Private
|
||||
public String getGroupName() {
|
||||
return groupName;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getName() {
|
||||
return key.name();
|
||||
|
|
Loading…
Reference in New Issue