[jira] [Commented] (MAPREDUCE-5748) Potential null pointer deference in ShuffleHandler#Shuffle#messageReceived()

2014-03-16 Thread Hussein Baghdadi (JIRA)

[ 
https://issues.apache.org/jira/browse/MAPREDUCE-5748?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13937070#comment-13937070
 ] 

Hussein Baghdadi commented on MAPREDUCE-5748:
-

mapIds is already checked for null values:

  // line 472
 [code]
  if (mapIds == null || reduceQ == null || jobQ == null) {
sendError(ctx, Required param job, map and reduce, BAD_REQUEST);
return;
  }
 [/code]

 Potential null pointer deference in ShuffleHandler#Shuffle#messageReceived()
 

 Key: MAPREDUCE-5748
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-5748
 Project: Hadoop Map/Reduce
  Issue Type: Bug
Reporter: Ted Yu
Priority: Minor

 Starting around line 510:
 {code}
   ChannelFuture lastMap = null;
   for (String mapId : mapIds) {
 ...
   }
   lastMap.addListener(metrics);
   lastMap.addListener(ChannelFutureListener.CLOSE);
 {code}
 If mapIds is empty, lastMap would remain null, leading to NPE in 
 addListener() call.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (MAPREDUCE-5748) Potential null pointer deference in ShuffleHandler#Shuffle#messageReceived()

2014-03-16 Thread Hussein Baghdadi (JIRA)

[ 
https://issues.apache.org/jira/browse/MAPREDUCE-5748?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13937073#comment-13937073
 ] 

Hussein Baghdadi commented on MAPREDUCE-5748:
-

Ok, sorry. My fault. You are right.

 Potential null pointer deference in ShuffleHandler#Shuffle#messageReceived()
 

 Key: MAPREDUCE-5748
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-5748
 Project: Hadoop Map/Reduce
  Issue Type: Bug
Reporter: Ted Yu
Priority: Minor

 Starting around line 510:
 {code}
   ChannelFuture lastMap = null;
   for (String mapId : mapIds) {
 ...
   }
   lastMap.addListener(metrics);
   lastMap.addListener(ChannelFutureListener.CLOSE);
 {code}
 If mapIds is empty, lastMap would remain null, leading to NPE in 
 addListener() call.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Assigned] (MAPREDUCE-5748) Potential null pointer deference in ShuffleHandler#Shuffle#messageReceived()

2014-03-16 Thread Hussein Baghdadi (JIRA)

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

Hussein Baghdadi reassigned MAPREDUCE-5748:
---

Assignee: Hussein Baghdadi

 Potential null pointer deference in ShuffleHandler#Shuffle#messageReceived()
 

 Key: MAPREDUCE-5748
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-5748
 Project: Hadoop Map/Reduce
  Issue Type: Bug
Reporter: Ted Yu
Assignee: Hussein Baghdadi
Priority: Minor

 Starting around line 510:
 {code}
   ChannelFuture lastMap = null;
   for (String mapId : mapIds) {
 ...
   }
   lastMap.addListener(metrics);
   lastMap.addListener(ChannelFutureListener.CLOSE);
 {code}
 If mapIds is empty, lastMap would remain null, leading to NPE in 
 addListener() call.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Updated] (MAPREDUCE-5748) Potential null pointer deference in ShuffleHandler#Shuffle#messageReceived()

2014-03-16 Thread Hussein Baghdadi (JIRA)

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

Hussein Baghdadi updated MAPREDUCE-5748:


Assignee: (was: Hussein Baghdadi)

 Potential null pointer deference in ShuffleHandler#Shuffle#messageReceived()
 

 Key: MAPREDUCE-5748
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-5748
 Project: Hadoop Map/Reduce
  Issue Type: Bug
Reporter: Ted Yu
Priority: Minor

 Starting around line 510:
 {code}
   ChannelFuture lastMap = null;
   for (String mapId : mapIds) {
 ...
   }
   lastMap.addListener(metrics);
   lastMap.addListener(ChannelFutureListener.CLOSE);
 {code}
 If mapIds is empty, lastMap would remain null, leading to NPE in 
 addListener() call.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Updated] (MAPREDUCE-5787) Modify ShuffleHandler to support Keep-Alive

2014-03-16 Thread Rajesh Balamohan (JIRA)

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

Rajesh Balamohan updated MAPREDUCE-5787:


Status: Open  (was: Patch Available)

 Modify ShuffleHandler to support Keep-Alive
 ---

 Key: MAPREDUCE-5787
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-5787
 Project: Hadoop Map/Reduce
  Issue Type: Sub-task
Reporter: Rajesh Balamohan
Assignee: Rajesh Balamohan
 Attachments: MAPREDUCE-5787-2.4.0-v2.patch, MAPREDUCE-5787-2.4.0.patch






--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Updated] (MAPREDUCE-5787) Modify ShuffleHandler to support Keep-Alive

2014-03-16 Thread Rajesh Balamohan (JIRA)

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

Rajesh Balamohan updated MAPREDUCE-5787:


Status: Patch Available  (was: Open)

 Modify ShuffleHandler to support Keep-Alive
 ---

 Key: MAPREDUCE-5787
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-5787
 Project: Hadoop Map/Reduce
  Issue Type: Sub-task
Reporter: Rajesh Balamohan
Assignee: Rajesh Balamohan
 Attachments: MAPREDUCE-5787-2.4.0-v2.patch, 
 MAPREDUCE-5787-2.4.0-v3.patch, MAPREDUCE-5787-2.4.0.patch






--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Updated] (MAPREDUCE-5787) Modify ShuffleHandler to support Keep-Alive

2014-03-16 Thread Rajesh Balamohan (JIRA)

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

Rajesh Balamohan updated MAPREDUCE-5787:


Attachment: (was: BUG-14568-v3-branch-2.4.0.patch)

 Modify ShuffleHandler to support Keep-Alive
 ---

 Key: MAPREDUCE-5787
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-5787
 Project: Hadoop Map/Reduce
  Issue Type: Sub-task
Reporter: Rajesh Balamohan
Assignee: Rajesh Balamohan
 Attachments: MAPREDUCE-5787-2.4.0-v2.patch, 
 MAPREDUCE-5787-2.4.0-v3.patch, MAPREDUCE-5787-2.4.0.patch






--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Updated] (MAPREDUCE-5787) Modify ShuffleHandler to support Keep-Alive

2014-03-16 Thread Rajesh Balamohan (JIRA)

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

Rajesh Balamohan updated MAPREDUCE-5787:


Attachment: MAPREDUCE-5787-2.4.0-v3.patch

 Modify ShuffleHandler to support Keep-Alive
 ---

 Key: MAPREDUCE-5787
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-5787
 Project: Hadoop Map/Reduce
  Issue Type: Sub-task
Reporter: Rajesh Balamohan
Assignee: Rajesh Balamohan
 Attachments: MAPREDUCE-5787-2.4.0-v2.patch, 
 MAPREDUCE-5787-2.4.0-v3.patch, MAPREDUCE-5787-2.4.0.patch






--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Updated] (MAPREDUCE-5787) Modify ShuffleHandler to support Keep-Alive

2014-03-16 Thread Rajesh Balamohan (JIRA)

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

Rajesh Balamohan updated MAPREDUCE-5787:


Attachment: BUG-14568-v3-branch-2.4.0.patch

 Modify ShuffleHandler to support Keep-Alive
 ---

 Key: MAPREDUCE-5787
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-5787
 Project: Hadoop Map/Reduce
  Issue Type: Sub-task
Reporter: Rajesh Balamohan
Assignee: Rajesh Balamohan
 Attachments: MAPREDUCE-5787-2.4.0-v2.patch, 
 MAPREDUCE-5787-2.4.0-v3.patch, MAPREDUCE-5787-2.4.0.patch






--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Updated] (MAPREDUCE-5787) Modify ShuffleHandler to support Keep-Alive

2014-03-16 Thread Rajesh Balamohan (JIRA)

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

Rajesh Balamohan updated MAPREDUCE-5787:


Status: Open  (was: Patch Available)

 Modify ShuffleHandler to support Keep-Alive
 ---

 Key: MAPREDUCE-5787
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-5787
 Project: Hadoop Map/Reduce
  Issue Type: Sub-task
Reporter: Rajesh Balamohan
Assignee: Rajesh Balamohan
 Attachments: MAPREDUCE-5787-2.4.0-v2.patch, 
 MAPREDUCE-5787-2.4.0-v3.patch, MAPREDUCE-5787-2.4.0.patch






--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Updated] (MAPREDUCE-5787) Modify ShuffleHandler to support Keep-Alive

2014-03-16 Thread Rajesh Balamohan (JIRA)

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

Rajesh Balamohan updated MAPREDUCE-5787:


Attachment: (was: MAPREDUCE-5787-2.4.0-v3.patch)

 Modify ShuffleHandler to support Keep-Alive
 ---

 Key: MAPREDUCE-5787
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-5787
 Project: Hadoop Map/Reduce
  Issue Type: Sub-task
Reporter: Rajesh Balamohan
Assignee: Rajesh Balamohan
 Attachments: MAPREDUCE-5787-2.4.0-v2.patch, 
 MAPREDUCE-5787-2.4.0-v3.patch, MAPREDUCE-5787-2.4.0.patch






--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Updated] (MAPREDUCE-5787) Modify ShuffleHandler to support Keep-Alive

2014-03-16 Thread Rajesh Balamohan (JIRA)

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

Rajesh Balamohan updated MAPREDUCE-5787:


Status: Patch Available  (was: Open)

 Modify ShuffleHandler to support Keep-Alive
 ---

 Key: MAPREDUCE-5787
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-5787
 Project: Hadoop Map/Reduce
  Issue Type: Sub-task
Reporter: Rajesh Balamohan
Assignee: Rajesh Balamohan
 Attachments: MAPREDUCE-5787-2.4.0-v2.patch, 
 MAPREDUCE-5787-2.4.0-v3.patch, MAPREDUCE-5787-2.4.0.patch






--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Updated] (MAPREDUCE-5787) Modify ShuffleHandler to support Keep-Alive

2014-03-16 Thread Rajesh Balamohan (JIRA)

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

Rajesh Balamohan updated MAPREDUCE-5787:


Attachment: MAPREDUCE-5787-2.4.0-v3.patch

 Modify ShuffleHandler to support Keep-Alive
 ---

 Key: MAPREDUCE-5787
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-5787
 Project: Hadoop Map/Reduce
  Issue Type: Sub-task
Reporter: Rajesh Balamohan
Assignee: Rajesh Balamohan
 Attachments: MAPREDUCE-5787-2.4.0-v2.patch, 
 MAPREDUCE-5787-2.4.0-v3.patch, MAPREDUCE-5787-2.4.0.patch






--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (MAPREDUCE-5787) Modify ShuffleHandler to support Keep-Alive

2014-03-16 Thread Hadoop QA (JIRA)

[ 
https://issues.apache.org/jira/browse/MAPREDUCE-5787?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13937193#comment-13937193
 ] 

Hadoop QA commented on MAPREDUCE-5787:
--

{color:green}+1 overall{color}.  Here are the results of testing the latest 
attachment 
  
http://issues.apache.org/jira/secure/attachment/12634984/MAPREDUCE-5787-2.4.0-v3.patch
  against trunk revision .

{color:green}+1 @author{color}.  The patch does not contain any @author 
tags.

{color:green}+1 tests included{color}.  The patch appears to include 1 new 
or modified test files.

{color:green}+1 javac{color}.  The applied patch does not increase the 
total number of javac compiler warnings.

{color:green}+1 javadoc{color}.  There were no new javadoc warning messages.

{color:green}+1 eclipse:eclipse{color}.  The patch built with 
eclipse:eclipse.

{color:green}+1 findbugs{color}.  The patch does not introduce any new 
Findbugs (version 1.3.9) warnings.

{color:green}+1 release audit{color}.  The applied patch does not increase 
the total number of release audit warnings.

{color:green}+1 core tests{color}.  The patch passed unit tests in 
hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-shuffle.

{color:green}+1 contrib tests{color}.  The patch passed contrib unit tests.

Test results: 
https://builds.apache.org/job/PreCommit-MAPREDUCE-Build/4433//testReport/
Console output: 
https://builds.apache.org/job/PreCommit-MAPREDUCE-Build/4433//console

This message is automatically generated.

 Modify ShuffleHandler to support Keep-Alive
 ---

 Key: MAPREDUCE-5787
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-5787
 Project: Hadoop Map/Reduce
  Issue Type: Sub-task
Reporter: Rajesh Balamohan
Assignee: Rajesh Balamohan
 Attachments: MAPREDUCE-5787-2.4.0-v2.patch, 
 MAPREDUCE-5787-2.4.0-v3.patch, MAPREDUCE-5787-2.4.0.patch






--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (MAPREDUCE-4052) Windows eclipse cannot submit job from Windows client to Linux/Unix Hadoop cluster.

2014-03-16 Thread Vinod Kumar Vavilapalli (JIRA)

[ 
https://issues.apache.org/jira/browse/MAPREDUCE-4052?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13937256#comment-13937256
 ] 

Vinod Kumar Vavilapalli commented on MAPREDUCE-4052:


This looks good to me +1. Checking it in.

 Windows eclipse cannot submit job from Windows client to Linux/Unix Hadoop 
 cluster.
 ---

 Key: MAPREDUCE-4052
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4052
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: job submission
Affects Versions: 0.23.1, 2.2.0
 Environment: client on the Windows, the the cluster on the suse
Reporter: xieguiming
Assignee: Jian He
 Attachments: MAPREDUCE-4052-0.patch, MAPREDUCE-4052.1.patch, 
 MAPREDUCE-4052.2.patch, MAPREDUCE-4052.3.patch, MAPREDUCE-4052.4.patch, 
 MAPREDUCE-4052.5.patch, MAPREDUCE-4052.6.patch, MAPREDUCE-4052.7.patch, 
 MAPREDUCE-4052.8.patch, MAPREDUCE-4052.patch


 when I use the eclipse on the windows to submit the job. and the 
 applicationmaster throw the exception:
 Exception in thread main java.lang.NoClassDefFoundError: 
 org/apache/hadoop/mapreduce/v2/app/MRAppMaster
 Caused by: java.lang.ClassNotFoundException: 
 org.apache.hadoop.mapreduce.v2.app.MRAppMaster
 at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
 at java.security.AccessController.doPrivileged(Native Method)
 at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
 at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
 at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
 at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
 Could not find the main class: 
 org.apache.hadoop.mapreduce.v2.app.MRAppMaster.  Program will exit.
 The reasion is :
 class Apps addToEnvironment function, use the
 private static final String SYSTEM_PATH_SEPARATOR =
   System.getProperty(path.separator);
 and will result the MRApplicationMaster classpath use the ; separator.
 I suggest that nodemanger do the replace.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (MAPREDUCE-4052) Windows eclipse cannot submit job from Windows client to Linux/Unix Hadoop cluster.

2014-03-16 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/MAPREDUCE-4052?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13937265#comment-13937265
 ] 

Hudson commented on MAPREDUCE-4052:
---

SUCCESS: Integrated in Hadoop-trunk-Commit #5336 (See 
[https://builds.apache.org/job/Hadoop-trunk-Commit/5336/])
YARN-1824. Improved NodeManager and clients to be able to handle cross platform 
application submissions. Contributed by Jian He.
MAPREDUCE-4052. Improved MapReduce clients to use NodeManagers' ability to 
handle cross platform application submissions. Contributed by Jian He. 
(vinodkv: 
http://svn.apache.org/viewcvs.cgi/?root=Apache-SVNview=revrev=1578135)
* /hadoop/common/trunk/hadoop-mapreduce-project/CHANGES.txt
* 
/hadoop/common/trunk/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-app/src/main/java/org/apache/hadoop/mapred/MapReduceChildJVM.java
* 
/hadoop/common/trunk/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-app/src/main/java/org/apache/hadoop/mapreduce/v2/app/job/impl/TaskAttemptImpl.java
* 
/hadoop/common/trunk/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-app/src/test/java/org/apache/hadoop/mapreduce/v2/app/job/impl/TestMapReduceChildJVM.java
* 
/hadoop/common/trunk/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-common/src/main/java/org/apache/hadoop/mapreduce/v2/util/MRApps.java
* 
/hadoop/common/trunk/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-common/src/test/java/org/apache/hadoop/mapreduce/v2/util/TestMRApps.java
* 
/hadoop/common/trunk/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapreduce/MRConfig.java
* 
/hadoop/common/trunk/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapreduce/MRJobConfig.java
* 
/hadoop/common/trunk/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/resources/mapred-default.xml
* 
/hadoop/common/trunk/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/main/java/org/apache/hadoop/mapred/YARNRunner.java
* 
/hadoop/common/trunk/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/test/java/org/apache/hadoop/mapred/TestMiniMRChildTask.java
* 
/hadoop/common/trunk/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/test/java/org/apache/hadoop/mapreduce/security/ssl/TestEncryptedShuffle.java
* /hadoop/common/trunk/hadoop-yarn-project/CHANGES.txt
* 
/hadoop/common/trunk/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/src/main/java/org/apache/hadoop/yarn/api/ApplicationConstants.java
* 
/hadoop/common/trunk/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/src/main/java/org/apache/hadoop/yarn/conf/YarnConfiguration.java
* 
/hadoop/common/trunk/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-applications/hadoop-yarn-applications-distributedshell/src/main/java/org/apache/hadoop/yarn/applications/distributedshell/ApplicationMaster.java
* 
/hadoop/common/trunk/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-applications/hadoop-yarn-applications-distributedshell/src/main/java/org/apache/hadoop/yarn/applications/distributedshell/Client.java
* 
/hadoop/common/trunk/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/java/org/apache/hadoop/yarn/util/Apps.java
* 
/hadoop/common/trunk/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/src/main/java/org/apache/hadoop/yarn/server/nodemanager/containermanager/launcher/ContainerLaunch.java
* 
/hadoop/common/trunk/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/src/test/java/org/apache/hadoop/yarn/server/nodemanager/containermanager/launcher/TestContainerLaunch.java


 Windows eclipse cannot submit job from Windows client to Linux/Unix Hadoop 
 cluster.
 ---

 Key: MAPREDUCE-4052
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4052
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: job submission
Affects Versions: 0.23.1, 2.2.0
 Environment: client on the Windows, the the cluster on the suse
Reporter: xieguiming
Assignee: Jian He
 Attachments: MAPREDUCE-4052-0.patch, MAPREDUCE-4052.1.patch, 
 MAPREDUCE-4052.2.patch, MAPREDUCE-4052.3.patch, MAPREDUCE-4052.4.patch, 
 MAPREDUCE-4052.5.patch, MAPREDUCE-4052.6.patch, MAPREDUCE-4052.7.patch, 
 MAPREDUCE-4052.8.patch, MAPREDUCE-4052.patch


 when I use the eclipse on the windows to submit the job. and the 
 applicationmaster throw the exception:
 Exception in thread main java.lang.NoClassDefFoundError: 
 org/apache/hadoop/mapreduce/v2/app/MRAppMaster
 Caused by: 

[jira] [Updated] (MAPREDUCE-4052) Windows eclipse cannot submit job from Windows client to Linux/Unix Hadoop cluster.

2014-03-16 Thread Vinod Kumar Vavilapalli (JIRA)

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

Vinod Kumar Vavilapalli updated MAPREDUCE-4052:
---

   Resolution: Fixed
Fix Version/s: 2.4.0
 Hadoop Flags: Reviewed
   Status: Resolved  (was: Patch Available)

The trunk patch had minor issues on branch-2/2.4. Fixed them myself, compiled 
code on branch-2 and ran TestMRApps.

Committed this to trunk, branch-2 and branch-2.4. Thanks Jian!

 Windows eclipse cannot submit job from Windows client to Linux/Unix Hadoop 
 cluster.
 ---

 Key: MAPREDUCE-4052
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4052
 Project: Hadoop Map/Reduce
  Issue Type: Bug
  Components: job submission
Affects Versions: 0.23.1, 2.2.0
 Environment: client on the Windows, the the cluster on the suse
Reporter: xieguiming
Assignee: Jian He
 Fix For: 2.4.0

 Attachments: MAPREDUCE-4052-0.patch, MAPREDUCE-4052.1.patch, 
 MAPREDUCE-4052.2.patch, MAPREDUCE-4052.3.patch, MAPREDUCE-4052.4.patch, 
 MAPREDUCE-4052.5.patch, MAPREDUCE-4052.6.patch, MAPREDUCE-4052.7.patch, 
 MAPREDUCE-4052.8.patch, MAPREDUCE-4052.patch


 when I use the eclipse on the windows to submit the job. and the 
 applicationmaster throw the exception:
 Exception in thread main java.lang.NoClassDefFoundError: 
 org/apache/hadoop/mapreduce/v2/app/MRAppMaster
 Caused by: java.lang.ClassNotFoundException: 
 org.apache.hadoop.mapreduce.v2.app.MRAppMaster
 at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
 at java.security.AccessController.doPrivileged(Native Method)
 at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
 at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
 at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
 at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
 Could not find the main class: 
 org.apache.hadoop.mapreduce.v2.app.MRAppMaster.  Program will exit.
 The reasion is :
 class Apps addToEnvironment function, use the
 private static final String SYSTEM_PATH_SEPARATOR =
   System.getProperty(path.separator);
 and will result the MRApplicationMaster classpath use the ; separator.
 I suggest that nodemanger do the replace.



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (MAPREDUCE-5787) Modify ShuffleHandler to support Keep-Alive

2014-03-16 Thread Rajesh Balamohan (JIRA)

[ 
https://issues.apache.org/jira/browse/MAPREDUCE-5787?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13937421#comment-13937421
 ] 

Rajesh Balamohan commented on MAPREDUCE-5787:
-

Review Request:  
https://reviews.apache.org/r/19264/diff/1/?file=521462#file521462line585

 Modify ShuffleHandler to support Keep-Alive
 ---

 Key: MAPREDUCE-5787
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-5787
 Project: Hadoop Map/Reduce
  Issue Type: Sub-task
Reporter: Rajesh Balamohan
Assignee: Rajesh Balamohan
 Attachments: MAPREDUCE-5787-2.4.0-v2.patch, 
 MAPREDUCE-5787-2.4.0-v3.patch, MAPREDUCE-5787-2.4.0.patch






--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Updated] (MAPREDUCE-5787) Modify ShuffleHandler to support Keep-Alive

2014-03-16 Thread Rajesh Balamohan (JIRA)

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

Rajesh Balamohan updated MAPREDUCE-5787:


Status: Open  (was: Patch Available)

Will incorporate the review comments from Gopal 
(https://reviews.apache.org/r/19264/diff/1/?file=521462#file521462line585) and 
upload the patch

 Modify ShuffleHandler to support Keep-Alive
 ---

 Key: MAPREDUCE-5787
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-5787
 Project: Hadoop Map/Reduce
  Issue Type: Sub-task
Reporter: Rajesh Balamohan
Assignee: Rajesh Balamohan
 Attachments: MAPREDUCE-5787-2.4.0-v2.patch, 
 MAPREDUCE-5787-2.4.0-v3.patch, MAPREDUCE-5787-2.4.0.patch






--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Updated] (MAPREDUCE-5787) Modify ShuffleHandler to support Keep-Alive

2014-03-16 Thread Rajesh Balamohan (JIRA)

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

Rajesh Balamohan updated MAPREDUCE-5787:


Attachment: MAPREDUCE-5787-2.4.0-v3.patch

Incorporated review comments from Gopal 
(https://reviews.apache.org/r/19264/diff/1/?file=521462#file521462line585)

 Modify ShuffleHandler to support Keep-Alive
 ---

 Key: MAPREDUCE-5787
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-5787
 Project: Hadoop Map/Reduce
  Issue Type: Sub-task
Reporter: Rajesh Balamohan
Assignee: Rajesh Balamohan
 Attachments: MAPREDUCE-5787-2.4.0-v2.patch, 
 MAPREDUCE-5787-2.4.0-v3.patch, MAPREDUCE-5787-2.4.0-v3.patch, 
 MAPREDUCE-5787-2.4.0.patch






--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Updated] (MAPREDUCE-5787) Modify ShuffleHandler to support Keep-Alive

2014-03-16 Thread Rajesh Balamohan (JIRA)

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

Rajesh Balamohan updated MAPREDUCE-5787:


Status: Patch Available  (was: Open)

 Modify ShuffleHandler to support Keep-Alive
 ---

 Key: MAPREDUCE-5787
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-5787
 Project: Hadoop Map/Reduce
  Issue Type: Sub-task
Reporter: Rajesh Balamohan
Assignee: Rajesh Balamohan
 Attachments: MAPREDUCE-5787-2.4.0-v2.patch, 
 MAPREDUCE-5787-2.4.0-v3.patch, MAPREDUCE-5787-2.4.0-v3.patch, 
 MAPREDUCE-5787-2.4.0.patch






--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Updated] (MAPREDUCE-5787) Modify ShuffleHandler to support Keep-Alive

2014-03-16 Thread Gopal V (JIRA)

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

Gopal V updated MAPREDUCE-5787:
---

Priority: Critical  (was: Major)

 Modify ShuffleHandler to support Keep-Alive
 ---

 Key: MAPREDUCE-5787
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-5787
 Project: Hadoop Map/Reduce
  Issue Type: Sub-task
  Components: nodemanager
Affects Versions: 2.4.0
Reporter: Rajesh Balamohan
Assignee: Rajesh Balamohan
Priority: Critical
  Labels: ShuffleKeepalive
 Fix For: 2.4.0

 Attachments: MAPREDUCE-5787-2.4.0-v2.patch, 
 MAPREDUCE-5787-2.4.0-v3.patch, MAPREDUCE-5787-2.4.0-v3.patch, 
 MAPREDUCE-5787-2.4.0.patch






--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Updated] (MAPREDUCE-5787) Modify ShuffleHandler to support Keep-Alive

2014-03-16 Thread Gopal V (JIRA)

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

Gopal V updated MAPREDUCE-5787:
---

Affects Version/s: 2.4.0

 Modify ShuffleHandler to support Keep-Alive
 ---

 Key: MAPREDUCE-5787
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-5787
 Project: Hadoop Map/Reduce
  Issue Type: Sub-task
  Components: nodemanager
Affects Versions: 2.4.0
Reporter: Rajesh Balamohan
Assignee: Rajesh Balamohan
  Labels: ShuffleKeepalive
 Fix For: 2.4.0

 Attachments: MAPREDUCE-5787-2.4.0-v2.patch, 
 MAPREDUCE-5787-2.4.0-v3.patch, MAPREDUCE-5787-2.4.0-v3.patch, 
 MAPREDUCE-5787-2.4.0.patch






--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Updated] (MAPREDUCE-5787) Modify ShuffleHandler to support Keep-Alive

2014-03-16 Thread Gopal V (JIRA)

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

Gopal V updated MAPREDUCE-5787:
---

Component/s: nodemanager

 Modify ShuffleHandler to support Keep-Alive
 ---

 Key: MAPREDUCE-5787
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-5787
 Project: Hadoop Map/Reduce
  Issue Type: Sub-task
  Components: nodemanager
Affects Versions: 2.4.0
Reporter: Rajesh Balamohan
Assignee: Rajesh Balamohan
  Labels: ShuffleKeepalive
 Fix For: 2.4.0

 Attachments: MAPREDUCE-5787-2.4.0-v2.patch, 
 MAPREDUCE-5787-2.4.0-v3.patch, MAPREDUCE-5787-2.4.0-v3.patch, 
 MAPREDUCE-5787-2.4.0.patch






--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Updated] (MAPREDUCE-5787) Modify ShuffleHandler to support Keep-Alive

2014-03-16 Thread Gopal V (JIRA)

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

Gopal V updated MAPREDUCE-5787:
---

Labels: ShuffleKeepalive  (was: )

 Modify ShuffleHandler to support Keep-Alive
 ---

 Key: MAPREDUCE-5787
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-5787
 Project: Hadoop Map/Reduce
  Issue Type: Sub-task
  Components: nodemanager
Affects Versions: 2.4.0
Reporter: Rajesh Balamohan
Assignee: Rajesh Balamohan
  Labels: ShuffleKeepalive
 Fix For: 2.4.0

 Attachments: MAPREDUCE-5787-2.4.0-v2.patch, 
 MAPREDUCE-5787-2.4.0-v3.patch, MAPREDUCE-5787-2.4.0-v3.patch, 
 MAPREDUCE-5787-2.4.0.patch






--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Updated] (MAPREDUCE-5787) Modify ShuffleHandler to support Keep-Alive

2014-03-16 Thread Gopal V (JIRA)

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

Gopal V updated MAPREDUCE-5787:
---

Fix Version/s: 2.4.0

 Modify ShuffleHandler to support Keep-Alive
 ---

 Key: MAPREDUCE-5787
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-5787
 Project: Hadoop Map/Reduce
  Issue Type: Sub-task
  Components: nodemanager
Affects Versions: 2.4.0
Reporter: Rajesh Balamohan
Assignee: Rajesh Balamohan
  Labels: ShuffleKeepalive
 Fix For: 2.4.0

 Attachments: MAPREDUCE-5787-2.4.0-v2.patch, 
 MAPREDUCE-5787-2.4.0-v3.patch, MAPREDUCE-5787-2.4.0-v3.patch, 
 MAPREDUCE-5787-2.4.0.patch






--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Updated] (MAPREDUCE-5787) Modify ShuffleHandler to support Keep-Alive

2014-03-16 Thread Rajesh Balamohan (JIRA)

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

Rajesh Balamohan updated MAPREDUCE-5787:


Attachment: (was: MAPREDUCE-5787-2.4.0-v3.patch)

 Modify ShuffleHandler to support Keep-Alive
 ---

 Key: MAPREDUCE-5787
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-5787
 Project: Hadoop Map/Reduce
  Issue Type: Sub-task
  Components: nodemanager
Affects Versions: 2.4.0
Reporter: Rajesh Balamohan
Assignee: Rajesh Balamohan
Priority: Critical
  Labels: ShuffleKeepalive
 Fix For: 2.4.0

 Attachments: MAPREDUCE-5787-2.4.0-v2.patch, 
 MAPREDUCE-5787-2.4.0-v3.patch, MAPREDUCE-5787-2.4.0.patch






--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Updated] (MAPREDUCE-5787) Modify ShuffleHandler to support Keep-Alive

2014-03-16 Thread Rajesh Balamohan (JIRA)

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

Rajesh Balamohan updated MAPREDUCE-5787:


Attachment: MAPREDUCE-5787-2.4.0-v4.patch

Renaming the patch as v4.

 Modify ShuffleHandler to support Keep-Alive
 ---

 Key: MAPREDUCE-5787
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-5787
 Project: Hadoop Map/Reduce
  Issue Type: Sub-task
  Components: nodemanager
Affects Versions: 2.4.0
Reporter: Rajesh Balamohan
Assignee: Rajesh Balamohan
Priority: Critical
  Labels: ShuffleKeepalive
 Fix For: 2.4.0

 Attachments: MAPREDUCE-5787-2.4.0-v2.patch, 
 MAPREDUCE-5787-2.4.0-v3.patch, MAPREDUCE-5787-2.4.0-v4.patch, 
 MAPREDUCE-5787-2.4.0.patch






--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Updated] (MAPREDUCE-5787) Modify ShuffleHandler to support Keep-Alive

2014-03-16 Thread Rajesh Balamohan (JIRA)

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

Rajesh Balamohan updated MAPREDUCE-5787:


Status: Open  (was: Patch Available)

 Modify ShuffleHandler to support Keep-Alive
 ---

 Key: MAPREDUCE-5787
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-5787
 Project: Hadoop Map/Reduce
  Issue Type: Sub-task
  Components: nodemanager
Affects Versions: 2.4.0
Reporter: Rajesh Balamohan
Assignee: Rajesh Balamohan
Priority: Critical
  Labels: ShuffleKeepalive
 Fix For: 2.4.0

 Attachments: MAPREDUCE-5787-2.4.0-v2.patch, 
 MAPREDUCE-5787-2.4.0-v3.patch, MAPREDUCE-5787-2.4.0-v4.patch, 
 MAPREDUCE-5787-2.4.0.patch






--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (MAPREDUCE-5787) Modify ShuffleHandler to support Keep-Alive

2014-03-16 Thread Hadoop QA (JIRA)

[ 
https://issues.apache.org/jira/browse/MAPREDUCE-5787?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13937444#comment-13937444
 ] 

Hadoop QA commented on MAPREDUCE-5787:
--

{color:green}+1 overall{color}.  Here are the results of testing the latest 
attachment 
  
http://issues.apache.org/jira/secure/attachment/12635029/MAPREDUCE-5787-2.4.0-v3.patch
  against trunk revision .

{color:green}+1 @author{color}.  The patch does not contain any @author 
tags.

{color:green}+1 tests included{color}.  The patch appears to include 1 new 
or modified test files.

{color:green}+1 javac{color}.  The applied patch does not increase the 
total number of javac compiler warnings.

{color:green}+1 javadoc{color}.  There were no new javadoc warning messages.

{color:green}+1 eclipse:eclipse{color}.  The patch built with 
eclipse:eclipse.

{color:green}+1 findbugs{color}.  The patch does not introduce any new 
Findbugs (version 1.3.9) warnings.

{color:green}+1 release audit{color}.  The applied patch does not increase 
the total number of release audit warnings.

{color:green}+1 core tests{color}.  The patch passed unit tests in 
hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-shuffle.

{color:green}+1 contrib tests{color}.  The patch passed contrib unit tests.

Test results: 
https://builds.apache.org/job/PreCommit-MAPREDUCE-Build/4434//testReport/
Console output: 
https://builds.apache.org/job/PreCommit-MAPREDUCE-Build/4434//console

This message is automatically generated.

 Modify ShuffleHandler to support Keep-Alive
 ---

 Key: MAPREDUCE-5787
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-5787
 Project: Hadoop Map/Reduce
  Issue Type: Sub-task
  Components: nodemanager
Affects Versions: 2.4.0
Reporter: Rajesh Balamohan
Assignee: Rajesh Balamohan
Priority: Critical
  Labels: ShuffleKeepalive
 Fix For: 2.4.0

 Attachments: MAPREDUCE-5787-2.4.0-v2.patch, 
 MAPREDUCE-5787-2.4.0-v3.patch, MAPREDUCE-5787-2.4.0-v4.patch, 
 MAPREDUCE-5787-2.4.0.patch






--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Updated] (MAPREDUCE-5787) Modify ShuffleHandler to support Keep-Alive

2014-03-16 Thread Rajesh Balamohan (JIRA)

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

Rajesh Balamohan updated MAPREDUCE-5787:


Status: Patch Available  (was: Open)

 Modify ShuffleHandler to support Keep-Alive
 ---

 Key: MAPREDUCE-5787
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-5787
 Project: Hadoop Map/Reduce
  Issue Type: Sub-task
  Components: nodemanager
Affects Versions: 2.4.0
Reporter: Rajesh Balamohan
Assignee: Rajesh Balamohan
Priority: Critical
  Labels: ShuffleKeepalive
 Fix For: 2.4.0

 Attachments: MAPREDUCE-5787-2.4.0-v2.patch, 
 MAPREDUCE-5787-2.4.0-v3.patch, MAPREDUCE-5787-2.4.0-v4.patch, 
 MAPREDUCE-5787-2.4.0.patch






--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Commented] (MAPREDUCE-5787) Modify ShuffleHandler to support Keep-Alive

2014-03-16 Thread Hadoop QA (JIRA)

[ 
https://issues.apache.org/jira/browse/MAPREDUCE-5787?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13937463#comment-13937463
 ] 

Hadoop QA commented on MAPREDUCE-5787:
--

{color:green}+1 overall{color}.  Here are the results of testing the latest 
attachment 
  
http://issues.apache.org/jira/secure/attachment/12635033/MAPREDUCE-5787-2.4.0-v4.patch
  against trunk revision .

{color:green}+1 @author{color}.  The patch does not contain any @author 
tags.

{color:green}+1 tests included{color}.  The patch appears to include 1 new 
or modified test files.

{color:green}+1 javac{color}.  The applied patch does not increase the 
total number of javac compiler warnings.

{color:green}+1 javadoc{color}.  There were no new javadoc warning messages.

{color:green}+1 eclipse:eclipse{color}.  The patch built with 
eclipse:eclipse.

{color:green}+1 findbugs{color}.  The patch does not introduce any new 
Findbugs (version 1.3.9) warnings.

{color:green}+1 release audit{color}.  The applied patch does not increase 
the total number of release audit warnings.

{color:green}+1 core tests{color}.  The patch passed unit tests in 
hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-shuffle.

{color:green}+1 contrib tests{color}.  The patch passed contrib unit tests.

Test results: 
https://builds.apache.org/job/PreCommit-MAPREDUCE-Build/4435//testReport/
Console output: 
https://builds.apache.org/job/PreCommit-MAPREDUCE-Build/4435//console

This message is automatically generated.

 Modify ShuffleHandler to support Keep-Alive
 ---

 Key: MAPREDUCE-5787
 URL: https://issues.apache.org/jira/browse/MAPREDUCE-5787
 Project: Hadoop Map/Reduce
  Issue Type: Sub-task
  Components: nodemanager
Affects Versions: 2.4.0
Reporter: Rajesh Balamohan
Assignee: Rajesh Balamohan
Priority: Critical
  Labels: ShuffleKeepalive
 Fix For: 2.4.0

 Attachments: MAPREDUCE-5787-2.4.0-v2.patch, 
 MAPREDUCE-5787-2.4.0-v3.patch, MAPREDUCE-5787-2.4.0-v4.patch, 
 MAPREDUCE-5787-2.4.0.patch






--
This message was sent by Atlassian JIRA
(v6.2#6252)