MAPREDUCE-4971. Minor extensibility enhancements to Counters & FileOutputFormat. Contributed by Arun C Murthy
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1441670 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
b1baf11fb2
commit
a04bee4567
@ -215,6 +215,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 int hashCode() {
|
||||
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 @@ Path getJobAttemptPath(JobContext context) {
|
||||
}
|
||||
|
||||
@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.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 static void setOutputPath(JobConf conf, Path outputDir) {
|
||||
* @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 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 Credentials getCredentials() {
|
||||
return credentials;
|
||||
}
|
||||
|
||||
void setCredentials(Credentials credentials) {
|
||||
@Private
|
||||
public void setCredentials(Credentials credentials) {
|
||||
this.credentials = credentials;
|
||||
}
|
||||
|
||||
|
@ -35,6 +35,7 @@
|
||||
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 FSCounter(String scheme, FileSystemCounter ref) {
|
||||
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 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 FrameworkCounter(T ref, String groupName) {
|
||||
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
Block a user