svn merge -c 1371325 FIXES: MAPREDUCE-3782. teragen terasort jobs fail when using webhdfs:// (Jason Lowe via bobby)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1371332 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
cc33d7b2ce
commit
4705652915
|
@ -682,6 +682,9 @@ Release 0.23.3 - UNRELEASED
|
||||||
MAPREDUCE-4503. Should throw InvalidJobConfException if duplicates found in
|
MAPREDUCE-4503. Should throw InvalidJobConfException if duplicates found in
|
||||||
cacheArchives or cacheFiles (Robert Evans via jeagles)
|
cacheArchives or cacheFiles (Robert Evans via jeagles)
|
||||||
|
|
||||||
|
MAPREDUCE-3782. teragen terasort jobs fail when using webhdfs:// (Jason
|
||||||
|
Lowe via bobby)
|
||||||
|
|
||||||
Release 0.23.2 - UNRELEASED
|
Release 0.23.2 - UNRELEASED
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -31,6 +31,7 @@ import org.apache.hadoop.mapreduce.RecordWriter;
|
||||||
import org.apache.hadoop.mapreduce.TaskAttemptContext;
|
import org.apache.hadoop.mapreduce.TaskAttemptContext;
|
||||||
import org.apache.hadoop.mapreduce.lib.output.FileOutputCommitter;
|
import org.apache.hadoop.mapreduce.lib.output.FileOutputCommitter;
|
||||||
import org.apache.hadoop.mapreduce.lib.output.FileOutputFormat;
|
import org.apache.hadoop.mapreduce.lib.output.FileOutputFormat;
|
||||||
|
import org.apache.hadoop.mapreduce.security.TokenCache;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An output format that writes the key and value appended together.
|
* An output format that writes the key and value appended together.
|
||||||
|
@ -85,6 +86,10 @@ public class TeraOutputFormat extends FileOutputFormat<Text,Text> {
|
||||||
if (outDir == null) {
|
if (outDir == null) {
|
||||||
throw new InvalidJobConfException("Output directory not set in JobConf.");
|
throw new InvalidJobConfException("Output directory not set in JobConf.");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// get delegation token for outDir's file system
|
||||||
|
TokenCache.obtainTokensForNamenodes(job.getCredentials(),
|
||||||
|
new Path[] { outDir }, job.getConfiguration());
|
||||||
}
|
}
|
||||||
|
|
||||||
public RecordWriter<Text,Text> getRecordWriter(TaskAttemptContext job
|
public RecordWriter<Text,Text> getRecordWriter(TaskAttemptContext job
|
||||||
|
|
Loading…
Reference in New Issue