You are viewing a plain text version of this content. The canonical link for it is here.
Posted to mapreduce-issues@hadoop.apache.org by "Harsh J (JIRA)" <ji...@apache.org> on 2012/07/07 18:26:34 UTC

[jira] [Resolved] (MAPREDUCE-86) Custom FileSystem class not found during child process initialization

     [ https://issues.apache.org/jira/browse/MAPREDUCE-86?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Harsh J resolved MAPREDUCE-86.
------------------------------

    Resolution: Not A Problem

This issue has gone stale and is no longer an issue today, with the OutputCommitters in play.
                
> Custom FileSystem class not found during child process initialization
> ---------------------------------------------------------------------
>
>                 Key: MAPREDUCE-86
>                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-86
>             Project: Hadoop Map/Reduce
>          Issue Type: Bug
>            Reporter: Chris K Wensel
>
> If a custom FileSystem class is used for Reducer output, initialization of the child task fails with an uncaught ClassNotFoundException. Trace follows.
> java.lang.RuntimeException: java.lang.ClassNotFoundException: cascading.tap.hadoop.S3HttpFileSystem
> java.io.IOException: java.lang.RuntimeException: java.lang.ClassNotFoundException: cascading.tap.hadoop.S3HttpFileSystem
>        at org.apache.hadoop.conf.Configuration.getClass(Configuration.java:607)
>        at org.apache.hadoop.fs.FileSystem.get(FileSystem.java:161)
>        at org.apache.hadoop.fs.Path.getFileSystem(Path.java:175)
>        at org.apache.hadoop.mapred.Task.getTaskOutputPath(Task.java:195)
>        at org.apache.hadoop.mapred.Task.setConf(Task.java:400)
>        at org.apache.hadoop.mapred.TaskInProgress.getTaskToRun(TaskInProgress.java:733)
>        at org.apache.hadoop.mapred.JobInProgress.obtainNewMapTask(JobInProgress.java:568)
>        at org.apache.hadoop.mapred.JobTracker.getNewTaskForTaskTracker(JobTracker.java:1409)
>        at org.apache.hadoop.mapred.JobTracker.heartbeat(JobTracker.java:1191)
>        at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
> Task.getTaskOutputPath only attempts to force the path into a fully qualified reference. It already handles thrown IOE, and should possibly just catch Exception, or atleast explicitly catch the CNFE. On a catch, can continue to return the original Path instance passed. 
> {code:title=Bar.java|borderStyle=solid}
>   private Path getTaskOutputPath(JobConf conf) {
>     Path p = new Path(conf.getOutputPath(), ("_" + taskId));
>     try {
>       FileSystem fs = p.getFileSystem(conf);
>       return p.makeQualified(fs);
>     } catch (IOException ie) {  // SHOULD BE BROADENED?
>       LOG.warn(StringUtils.stringifyException(ie));
>       return p;
>     }
>   }
> {code}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira