MAPREDUCE-4307. TeraInputFormat calls FileSystem.getDefaultBlockSize() without a Path - Failure when using ViewFileSystem. Contributed by Ahmed Radwan
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1345552 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a088713208
commit
026a285d52
|
@ -39,6 +39,9 @@ Release 2.0.1-alpha - UNRELEASED
|
||||||
MAPREDUCE-3493. Add the default mapreduce.shuffle.port property
|
MAPREDUCE-3493. Add the default mapreduce.shuffle.port property
|
||||||
to mapred-default.xml (Madhukara Phatak via harsh)
|
to mapred-default.xml (Madhukara Phatak via harsh)
|
||||||
|
|
||||||
|
MAPREDUCE-4307. TeraInputFormat calls FileSystem.getDefaultBlockSize()
|
||||||
|
without a Path - Failure when using ViewFileSystem. (Ahmed Radwan via eli)
|
||||||
|
|
||||||
Release 2.0.0-alpha - UNRELEASED
|
Release 2.0.0-alpha - UNRELEASED
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -212,7 +212,7 @@ public class TeraInputFormat extends FileInputFormat<Text,Text> {
|
||||||
}
|
}
|
||||||
FileSystem outFs = partFile.getFileSystem(conf);
|
FileSystem outFs = partFile.getFileSystem(conf);
|
||||||
DataOutputStream writer = outFs.create(partFile, true, 64*1024, (short) 10,
|
DataOutputStream writer = outFs.create(partFile, true, 64*1024, (short) 10,
|
||||||
outFs.getDefaultBlockSize());
|
outFs.getDefaultBlockSize(partFile));
|
||||||
for (int i = 0; i < samples; i++) {
|
for (int i = 0; i < samples; i++) {
|
||||||
try {
|
try {
|
||||||
samplerReader[i].join();
|
samplerReader[i].join();
|
||||||
|
|
Loading…
Reference in New Issue