Details
-
Bug
-
Status: Resolved
-
Blocker
-
Resolution: Fixed
-
None
-
None
-
None
-
Reviewed
Description
org.apache.hadoop.mapreduce.lib.input.FileInputFormat.addInputPath(Job job, Path path) uses the default FileSystem but not the FileSystem specified in the path.
//org.apache.hadoop.mapreduce.lib.input.FileInputFormat public static void addInputPath(Job job, Path path) throws IOException { Configuration conf = job.getConfiguration(); FileSystem fs = FileSystem.get(conf); path = path.makeQualified(fs); // the original FileSystem is lost. ... }
There is a similar problem in FileInputFormat.setInputPaths(..).
Attachments
Attachments
Issue Links
- is depended upon by
-
PIG-1378 har url of the form har:///<path> not usable in Pig scripts (har://hdfs-namenode:port/<path> works)
-
- Closed
-
- is related to
-
HADOOP-6564 HarFileSystem cannot handle har:///
-
- Resolved
-