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 "Preston Koprivica (JIRA)" <ji...@apache.org> on 2015/09/14 18:06:46 UTC

[jira] [Updated] (MAPREDUCE-6344) Inconsistent classpath/classloading from DistributedCache archives

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

Preston Koprivica updated MAPREDUCE-6344:
-----------------------------------------
    Attachment: MAPREDUCE-6344.patch

I have attached a proposed fix for this issue.   The basic approach was to: 

* Modify the addToClassPathIfNotJar method to simply be: addToClassPath.  This should retain the order of both archives and non-archives when pulling from distributed cache.

* Moved the "glob" to be the last thing appended to the appended to the classpath.  (This is only needed to ensure a non-breaking change.  This will catch anything that was put in the container but not explicitly enumerated).

> Inconsistent classpath/classloading from DistributedCache archives
> ------------------------------------------------------------------
>
>                 Key: MAPREDUCE-6344
>                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-6344
>             Project: Hadoop Map/Reduce
>          Issue Type: Bug
>    Affects Versions: 2.5.0, 2.6.0, 2.7.0, 2.5.1, 2.5.2
>            Reporter: Preston Koprivica
>         Attachments: MAPREDUCE-6344.patch
>
>
> We recently upgraded to MRv2 on YARN and have been noticing very inconsistent classloading between the job submission client and the tasks as they start up. 
> I've tracked the issue to this method:
> https://github.com/apache/hadoop/blob/release-2.5.0/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-common/src/main/java/org/apache/hadoop/mapreduce/v2/util/MRApps.java#L264
> It appears that the classpath is simply "wild carded".  According the javase 7&8 docs, the order of enumeration is not specified and may differ from moment to moment [1][2].  This is a problem for applications that rely on strict ordering, which the MRv1 DistributedCache used to provide.
> I'm unable to track down all the things that are linked or landed into the $PWD of the container, but assuming we can't account for all these things, a simple solution could be to explicitly enumerate the files in DistributedCache - similar to the "non jar" case [3] - and then add the "*" for passivity.  
> [1] http://docs.oracle.com/javase/7/docs/technotes/tools/windows/classpath.htm
> [2] http://docs.oracle.com/javase/8/docs/technotes/tools/windows/classpath.html#A1100762
> [3] https://github.com/apache/hadoop/blob/release-2.5.0/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-common/src/main/java/org/apache/hadoop/mapreduce/v2/util/MRApps.java#L270



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)