You are viewing a plain text version of this content. The canonical link for it is here.
Posted to hdfs-user@hadoop.apache.org by "Arthur.hk.chan@gmail.com" <ar...@gmail.com> on 2014/09/11 16:07:05 UTC

Hadoop Smoke Test

Hi,

I am trying the smoke test for hadoop, “terasort”, during the Map phase, I found “Container killed by the ApplicationMast”, should I stop this job and try to run it again? or just let it continue?

14/09/11 21:27:53 INFO mapreduce.Job:  map 22% reduce 0%
14/09/11 21:31:33 INFO mapreduce.Job:  map 23% reduce 0%
14/09/11 21:33:45 INFO mapreduce.Job: Task Id : attempt_1409876705457_0003_m_005139_0, Status : FAILED
Error: unable to create new native thread
Container killed by the ApplicationMaster.
Exception when trying to cleanup container container_1409876705457_0003_01_005146: java.io.IOException: Cannot run program "kill": error=11, Resource temporarily unavailable
        at java.lang.ProcessBuilder.start(ProcessBuilder.java:1047)
        at org.apache.hadoop.util.Shell.runCommand(Shell.java:448)
        at org.apache.hadoop.util.Shell.run(Shell.java:418)
        at org.apache.hadoop.util.Shell$ShellCommandExecutor.execute(Shell.java:650)
        at org.apache.hadoop.yarn.server.nodemanager.DefaultContainerExecutor.containerIsAlive(DefaultContainerExecutor.java:342)
        at org.apache.hadoop.yarn.server.nodemanager.DefaultContainerExecutor.signalContainer(DefaultContainerExecutor.java:319)
        at org.apache.hadoop.yarn.server.nodemanager.containermanager.launcher.ContainerLaunch.cleanupContainer(ContainerLaunch.java:400)
        at org.apache.hadoop.yarn.server.nodemanager.containermanager.launcher.ContainersLauncher.handle(ContainersLauncher.java:138)
        at org.apache.hadoop.yarn.server.nodemanager.containermanager.launcher.ContainersLauncher.handle(ContainersLauncher.java:61)
        at org.apache.hadoop.yarn.event.AsyncDispatcher.dispatch(AsyncDispatcher.java:173)
        at org.apache.hadoop.yarn.event.AsyncDispatcher$1.run(AsyncDispatcher.java:106)
        at java.lang.Thread.run(Thread.java:745)
Caused by: java.io.IOException: error=11, Resource temporarily unavailable
        at java.lang.UNIXProcess.forkAndExec(Native Method)
        at java.lang.UNIXProcess.<init>(UNIXProcess.java:186)
        at java.lang.ProcessImpl.start(ProcessImpl.java:130)
        at java.lang.ProcessBuilder.start(ProcessBuilder.java:1028)
        ... 11 more
14/09/11 21:33:47 INFO mapreduce.Job: Task Id : attempt_1409876705457_0003_m_005146_0, Status : FAILED
Exception from container-launch: org.apache.hadoop.util.Shell$ExitCodeException:
org.apache.hadoop.util.Shell$ExitCodeException:
        at org.apache.hadoop.util.Shell.runCommand(Shell.java:505)
        at org.apache.hadoop.util.Shell.run(Shell.java:418)
        at org.apache.hadoop.util.Shell$ShellCommandExecutor.execute(Shell.java:650)
        at org.apache.hadoop.yarn.server.nodemanager.DefaultContainerExecutor.launchContainer(DefaultContainerExecutor.java:195)
        at org.apache.hadoop.yarn.server.nodemanager.containermanager.launcher.ContainerLaunch.call(ContainerLaunch.java:300)
        at org.apache.hadoop.yarn.server.nodemanager.containermanager.launcher.ContainerLaunch.call(ContainerLaunch.java:81)
        at java.util.concurrent.FutureTask.run(FutureTask.java:262)
        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
        at java.lang.Thread.run(Thread.java:745)
Container exited with a non-zero exit code 1
14/09/11 21:33:50 INFO mapreduce.Job: Task Id : attempt_1409876705457_0003_m_005147_0, Status : FAILED
14/09/11 21:37:17 INFO mapreduce.Job:  map 24% reduce 0%
14/09/11 21:43:45 INFO mapreduce.Job:  map 25% reduce 0%


Regards
Arthur

Re: Hadoop 2.4.1 Compilation, How to specify "HadoopBuildVersion" and "RMBuildVersion"

Posted by "Arthur.hk.chan@gmail.com" <ar...@gmail.com>.
Hi,

Is there any document that lists all possible -D parameters that are used in Hadoop compilation? or any ideas about version-info.scm.commit?

Regards
Arthur

On 14 Sep, 2014, at 7:07 pm, Arthur.hk.chan@gmail.com <ar...@gmail.com> wrote:

> Hi,
> 
> Thank you very much for your reply !
> 
> I tried, versions:set -DnewVersion=NEWVERSION changed the strings before “from”,  the strings after “from” are still set as “Unknown”.
> 
> 
> 
> 
> <Screen Shot 2014-09-14 at 1.48.51 pm.png>
> 
> 
> 
> From the source, hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/yarn-version-info.properties, I found the following, any idea how or where to set version-info.scm.commit?
> version=${pom.version}
> revision=${version-info.scm.commit}
> branch=${version-info.scm.branch}
> user=${user.name}
> date=${version-info.build.time}
> url=${version-info.scm.uri}
> srcChecksum=${version-info.source.md5}
> 
> Regards
> Arthur
> 
> 
> On 14 Sep, 2014, at 4:17 pm, Liu, Yi A <yi...@intel.com> wrote:
> 
>> Change Hadoop version     : mvn versions:set -DnewVersion=NEWVERSION
>>  
>> Regards,
>> Yi Liu
>>  
>> From: Arthur.hk.chan@gmail.com [mailto:arthur.hk.chan@gmail.com] 
>> Sent: Sunday, September 14, 2014 1:51 PM
>> To: user@hadoop.apache.org
>> Cc: Arthur.hk.chan@gmail.com
>> Subject: Re: Hadoop 2.4.1 Compilation, How to specify "HadoopBuildVersion" and "RMBuildVersion"
>>  
>> (attached print screen) 
>>  
>> <image001.png>
>>  
>>  
>>  
>> On 14 Sep, 2014, at 1:25 pm, Arthur.hk.chan@gmail.com <ar...@gmail.com> wrote:
>> 
>> 
>> Hi,
>>  
>> To compile Hadoop 2.4.1 , any idea how to specify “hadoop.build.version” ? By modifying pom.xml? or add -Dhadoop.build.version=mybuild?  or specify it by compile command line?
>>  
>> Regards
>> Arthur
> 


Re: Hadoop 2.4.1 Compilation, How to specify "HadoopBuildVersion" and "RMBuildVersion"

Posted by "Arthur.hk.chan@gmail.com" <ar...@gmail.com>.
Hi,

Is there any document that lists all possible -D parameters that are used in Hadoop compilation? or any ideas about version-info.scm.commit?

Regards
Arthur

On 14 Sep, 2014, at 7:07 pm, Arthur.hk.chan@gmail.com <ar...@gmail.com> wrote:

> Hi,
> 
> Thank you very much for your reply !
> 
> I tried, versions:set -DnewVersion=NEWVERSION changed the strings before “from”,  the strings after “from” are still set as “Unknown”.
> 
> 
> 
> 
> <Screen Shot 2014-09-14 at 1.48.51 pm.png>
> 
> 
> 
> From the source, hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/yarn-version-info.properties, I found the following, any idea how or where to set version-info.scm.commit?
> version=${pom.version}
> revision=${version-info.scm.commit}
> branch=${version-info.scm.branch}
> user=${user.name}
> date=${version-info.build.time}
> url=${version-info.scm.uri}
> srcChecksum=${version-info.source.md5}
> 
> Regards
> Arthur
> 
> 
> On 14 Sep, 2014, at 4:17 pm, Liu, Yi A <yi...@intel.com> wrote:
> 
>> Change Hadoop version     : mvn versions:set -DnewVersion=NEWVERSION
>>  
>> Regards,
>> Yi Liu
>>  
>> From: Arthur.hk.chan@gmail.com [mailto:arthur.hk.chan@gmail.com] 
>> Sent: Sunday, September 14, 2014 1:51 PM
>> To: user@hadoop.apache.org
>> Cc: Arthur.hk.chan@gmail.com
>> Subject: Re: Hadoop 2.4.1 Compilation, How to specify "HadoopBuildVersion" and "RMBuildVersion"
>>  
>> (attached print screen) 
>>  
>> <image001.png>
>>  
>>  
>>  
>> On 14 Sep, 2014, at 1:25 pm, Arthur.hk.chan@gmail.com <ar...@gmail.com> wrote:
>> 
>> 
>> Hi,
>>  
>> To compile Hadoop 2.4.1 , any idea how to specify “hadoop.build.version” ? By modifying pom.xml? or add -Dhadoop.build.version=mybuild?  or specify it by compile command line?
>>  
>> Regards
>> Arthur
> 


Re: Hadoop 2.4.1 Compilation, How to specify "HadoopBuildVersion" and "RMBuildVersion"

Posted by "Arthur.hk.chan@gmail.com" <ar...@gmail.com>.
Hi,

Is there any document that lists all possible -D parameters that are used in Hadoop compilation? or any ideas about version-info.scm.commit?

Regards
Arthur

On 14 Sep, 2014, at 7:07 pm, Arthur.hk.chan@gmail.com <ar...@gmail.com> wrote:

> Hi,
> 
> Thank you very much for your reply !
> 
> I tried, versions:set -DnewVersion=NEWVERSION changed the strings before “from”,  the strings after “from” are still set as “Unknown”.
> 
> 
> 
> 
> <Screen Shot 2014-09-14 at 1.48.51 pm.png>
> 
> 
> 
> From the source, hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/yarn-version-info.properties, I found the following, any idea how or where to set version-info.scm.commit?
> version=${pom.version}
> revision=${version-info.scm.commit}
> branch=${version-info.scm.branch}
> user=${user.name}
> date=${version-info.build.time}
> url=${version-info.scm.uri}
> srcChecksum=${version-info.source.md5}
> 
> Regards
> Arthur
> 
> 
> On 14 Sep, 2014, at 4:17 pm, Liu, Yi A <yi...@intel.com> wrote:
> 
>> Change Hadoop version     : mvn versions:set -DnewVersion=NEWVERSION
>>  
>> Regards,
>> Yi Liu
>>  
>> From: Arthur.hk.chan@gmail.com [mailto:arthur.hk.chan@gmail.com] 
>> Sent: Sunday, September 14, 2014 1:51 PM
>> To: user@hadoop.apache.org
>> Cc: Arthur.hk.chan@gmail.com
>> Subject: Re: Hadoop 2.4.1 Compilation, How to specify "HadoopBuildVersion" and "RMBuildVersion"
>>  
>> (attached print screen) 
>>  
>> <image001.png>
>>  
>>  
>>  
>> On 14 Sep, 2014, at 1:25 pm, Arthur.hk.chan@gmail.com <ar...@gmail.com> wrote:
>> 
>> 
>> Hi,
>>  
>> To compile Hadoop 2.4.1 , any idea how to specify “hadoop.build.version” ? By modifying pom.xml? or add -Dhadoop.build.version=mybuild?  or specify it by compile command line?
>>  
>> Regards
>> Arthur
> 


Re: Hadoop 2.4.1 Compilation, How to specify "HadoopBuildVersion" and "RMBuildVersion"

Posted by "Arthur.hk.chan@gmail.com" <ar...@gmail.com>.
Hi,

Is there any document that lists all possible -D parameters that are used in Hadoop compilation? or any ideas about version-info.scm.commit?

Regards
Arthur

On 14 Sep, 2014, at 7:07 pm, Arthur.hk.chan@gmail.com <ar...@gmail.com> wrote:

> Hi,
> 
> Thank you very much for your reply !
> 
> I tried, versions:set -DnewVersion=NEWVERSION changed the strings before “from”,  the strings after “from” are still set as “Unknown”.
> 
> 
> 
> 
> <Screen Shot 2014-09-14 at 1.48.51 pm.png>
> 
> 
> 
> From the source, hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/yarn-version-info.properties, I found the following, any idea how or where to set version-info.scm.commit?
> version=${pom.version}
> revision=${version-info.scm.commit}
> branch=${version-info.scm.branch}
> user=${user.name}
> date=${version-info.build.time}
> url=${version-info.scm.uri}
> srcChecksum=${version-info.source.md5}
> 
> Regards
> Arthur
> 
> 
> On 14 Sep, 2014, at 4:17 pm, Liu, Yi A <yi...@intel.com> wrote:
> 
>> Change Hadoop version     : mvn versions:set -DnewVersion=NEWVERSION
>>  
>> Regards,
>> Yi Liu
>>  
>> From: Arthur.hk.chan@gmail.com [mailto:arthur.hk.chan@gmail.com] 
>> Sent: Sunday, September 14, 2014 1:51 PM
>> To: user@hadoop.apache.org
>> Cc: Arthur.hk.chan@gmail.com
>> Subject: Re: Hadoop 2.4.1 Compilation, How to specify "HadoopBuildVersion" and "RMBuildVersion"
>>  
>> (attached print screen) 
>>  
>> <image001.png>
>>  
>>  
>>  
>> On 14 Sep, 2014, at 1:25 pm, Arthur.hk.chan@gmail.com <ar...@gmail.com> wrote:
>> 
>> 
>> Hi,
>>  
>> To compile Hadoop 2.4.1 , any idea how to specify “hadoop.build.version” ? By modifying pom.xml? or add -Dhadoop.build.version=mybuild?  or specify it by compile command line?
>>  
>> Regards
>> Arthur
> 


Re: Hadoop 2.4.1 Compilation, How to specify "HadoopBuildVersion" and "RMBuildVersion"

Posted by "Arthur.hk.chan@gmail.com" <ar...@gmail.com>.
Hi,

Thank you very much for your reply !

I tried, versions:set -DnewVersion=NEWVERSION changed the strings before “from”,  the strings after “from” are still set as “Unknown”.







From the source, hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/yarn-version-info.properties, I found the following, any idea how or where to set version-info.scm.commit?
version=${pom.version}
revision=${version-info.scm.commit}
branch=${version-info.scm.branch}
user=${user.name}
date=${version-info.build.time}
url=${version-info.scm.uri}
srcChecksum=${version-info.source.md5}

Regards
Arthur


On 14 Sep, 2014, at 4:17 pm, Liu, Yi A <yi...@intel.com> wrote:

> Change Hadoop version     : mvn versions:set -DnewVersion=NEWVERSION
>  
> Regards,
> Yi Liu
>  
> From: Arthur.hk.chan@gmail.com [mailto:arthur.hk.chan@gmail.com] 
> Sent: Sunday, September 14, 2014 1:51 PM
> To: user@hadoop.apache.org
> Cc: Arthur.hk.chan@gmail.com
> Subject: Re: Hadoop 2.4.1 Compilation, How to specify "HadoopBuildVersion" and "RMBuildVersion"
>  
> (attached print screen) 
>  
> <image001.png>
>  
>  
>  
> On 14 Sep, 2014, at 1:25 pm, Arthur.hk.chan@gmail.com <ar...@gmail.com> wrote:
> 
> 
> Hi,
>  
> To compile Hadoop 2.4.1 , any idea how to specify “hadoop.build.version” ? By modifying pom.xml? or add -Dhadoop.build.version=mybuild?  or specify it by compile command line?
>  
> Regards
> Arthur


Re: Hadoop 2.4.1 Compilation, How to specify "HadoopBuildVersion" and "RMBuildVersion"

Posted by "Arthur.hk.chan@gmail.com" <ar...@gmail.com>.
Hi,

Thank you very much for your reply !

I tried, versions:set -DnewVersion=NEWVERSION changed the strings before “from”,  the strings after “from” are still set as “Unknown”.







From the source, hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/yarn-version-info.properties, I found the following, any idea how or where to set version-info.scm.commit?
version=${pom.version}
revision=${version-info.scm.commit}
branch=${version-info.scm.branch}
user=${user.name}
date=${version-info.build.time}
url=${version-info.scm.uri}
srcChecksum=${version-info.source.md5}

Regards
Arthur


On 14 Sep, 2014, at 4:17 pm, Liu, Yi A <yi...@intel.com> wrote:

> Change Hadoop version     : mvn versions:set -DnewVersion=NEWVERSION
>  
> Regards,
> Yi Liu
>  
> From: Arthur.hk.chan@gmail.com [mailto:arthur.hk.chan@gmail.com] 
> Sent: Sunday, September 14, 2014 1:51 PM
> To: user@hadoop.apache.org
> Cc: Arthur.hk.chan@gmail.com
> Subject: Re: Hadoop 2.4.1 Compilation, How to specify "HadoopBuildVersion" and "RMBuildVersion"
>  
> (attached print screen) 
>  
> <image001.png>
>  
>  
>  
> On 14 Sep, 2014, at 1:25 pm, Arthur.hk.chan@gmail.com <ar...@gmail.com> wrote:
> 
> 
> Hi,
>  
> To compile Hadoop 2.4.1 , any idea how to specify “hadoop.build.version” ? By modifying pom.xml? or add -Dhadoop.build.version=mybuild?  or specify it by compile command line?
>  
> Regards
> Arthur


Re: Hadoop 2.4.1 Compilation, How to specify "HadoopBuildVersion" and "RMBuildVersion"

Posted by "Arthur.hk.chan@gmail.com" <ar...@gmail.com>.
Hi,

Thank you very much for your reply !

I tried, versions:set -DnewVersion=NEWVERSION changed the strings before “from”,  the strings after “from” are still set as “Unknown”.







From the source, hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/yarn-version-info.properties, I found the following, any idea how or where to set version-info.scm.commit?
version=${pom.version}
revision=${version-info.scm.commit}
branch=${version-info.scm.branch}
user=${user.name}
date=${version-info.build.time}
url=${version-info.scm.uri}
srcChecksum=${version-info.source.md5}

Regards
Arthur


On 14 Sep, 2014, at 4:17 pm, Liu, Yi A <yi...@intel.com> wrote:

> Change Hadoop version     : mvn versions:set -DnewVersion=NEWVERSION
>  
> Regards,
> Yi Liu
>  
> From: Arthur.hk.chan@gmail.com [mailto:arthur.hk.chan@gmail.com] 
> Sent: Sunday, September 14, 2014 1:51 PM
> To: user@hadoop.apache.org
> Cc: Arthur.hk.chan@gmail.com
> Subject: Re: Hadoop 2.4.1 Compilation, How to specify "HadoopBuildVersion" and "RMBuildVersion"
>  
> (attached print screen) 
>  
> <image001.png>
>  
>  
>  
> On 14 Sep, 2014, at 1:25 pm, Arthur.hk.chan@gmail.com <ar...@gmail.com> wrote:
> 
> 
> Hi,
>  
> To compile Hadoop 2.4.1 , any idea how to specify “hadoop.build.version” ? By modifying pom.xml? or add -Dhadoop.build.version=mybuild?  or specify it by compile command line?
>  
> Regards
> Arthur


Re: Hadoop 2.4.1 Compilation, How to specify "HadoopBuildVersion" and "RMBuildVersion"

Posted by "Arthur.hk.chan@gmail.com" <ar...@gmail.com>.
Hi,

Thank you very much for your reply !

I tried, versions:set -DnewVersion=NEWVERSION changed the strings before “from”,  the strings after “from” are still set as “Unknown”.







From the source, hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/yarn-version-info.properties, I found the following, any idea how or where to set version-info.scm.commit?
version=${pom.version}
revision=${version-info.scm.commit}
branch=${version-info.scm.branch}
user=${user.name}
date=${version-info.build.time}
url=${version-info.scm.uri}
srcChecksum=${version-info.source.md5}

Regards
Arthur


On 14 Sep, 2014, at 4:17 pm, Liu, Yi A <yi...@intel.com> wrote:

> Change Hadoop version     : mvn versions:set -DnewVersion=NEWVERSION
>  
> Regards,
> Yi Liu
>  
> From: Arthur.hk.chan@gmail.com [mailto:arthur.hk.chan@gmail.com] 
> Sent: Sunday, September 14, 2014 1:51 PM
> To: user@hadoop.apache.org
> Cc: Arthur.hk.chan@gmail.com
> Subject: Re: Hadoop 2.4.1 Compilation, How to specify "HadoopBuildVersion" and "RMBuildVersion"
>  
> (attached print screen) 
>  
> <image001.png>
>  
>  
>  
> On 14 Sep, 2014, at 1:25 pm, Arthur.hk.chan@gmail.com <ar...@gmail.com> wrote:
> 
> 
> Hi,
>  
> To compile Hadoop 2.4.1 , any idea how to specify “hadoop.build.version” ? By modifying pom.xml? or add -Dhadoop.build.version=mybuild?  or specify it by compile command line?
>  
> Regards
> Arthur


RE: Hadoop 2.4.1 Compilation, How to specify "HadoopBuildVersion" and "RMBuildVersion"

Posted by "Liu, Yi A" <yi...@intel.com>.
Change Hadoop version     : mvn versions:set -DnewVersion=NEWVERSION

Regards,
Yi Liu

From: Arthur.hk.chan@gmail.com [mailto:arthur.hk.chan@gmail.com]
Sent: Sunday, September 14, 2014 1:51 PM
To: user@hadoop.apache.org
Cc: Arthur.hk.chan@gmail.com
Subject: Re: Hadoop 2.4.1 Compilation, How to specify "HadoopBuildVersion" and "RMBuildVersion"

(attached print screen)

[cid:image001.png@01CFD037.55254BC0]



On 14 Sep, 2014, at 1:25 pm, Arthur.hk.chan@gmail.com<ma...@gmail.com> <ar...@gmail.com>> wrote:


Hi,

To compile Hadoop 2.4.1 , any idea how to specify "hadoop.build.version" ? By modifying pom.xml? or add -Dhadoop.build.version=mybuild?  or specify it by compile command line?

Regards
Arthur




RE: Hadoop 2.4.1 Compilation, How to specify "HadoopBuildVersion" and "RMBuildVersion"

Posted by "Liu, Yi A" <yi...@intel.com>.
Change Hadoop version     : mvn versions:set -DnewVersion=NEWVERSION

Regards,
Yi Liu

From: Arthur.hk.chan@gmail.com [mailto:arthur.hk.chan@gmail.com]
Sent: Sunday, September 14, 2014 1:51 PM
To: user@hadoop.apache.org
Cc: Arthur.hk.chan@gmail.com
Subject: Re: Hadoop 2.4.1 Compilation, How to specify "HadoopBuildVersion" and "RMBuildVersion"

(attached print screen)

[cid:image001.png@01CFD037.55254BC0]



On 14 Sep, 2014, at 1:25 pm, Arthur.hk.chan@gmail.com<ma...@gmail.com> <ar...@gmail.com>> wrote:


Hi,

To compile Hadoop 2.4.1 , any idea how to specify "hadoop.build.version" ? By modifying pom.xml? or add -Dhadoop.build.version=mybuild?  or specify it by compile command line?

Regards
Arthur




RE: Hadoop 2.4.1 Compilation, How to specify "HadoopBuildVersion" and "RMBuildVersion"

Posted by "Liu, Yi A" <yi...@intel.com>.
Change Hadoop version     : mvn versions:set -DnewVersion=NEWVERSION

Regards,
Yi Liu

From: Arthur.hk.chan@gmail.com [mailto:arthur.hk.chan@gmail.com]
Sent: Sunday, September 14, 2014 1:51 PM
To: user@hadoop.apache.org
Cc: Arthur.hk.chan@gmail.com
Subject: Re: Hadoop 2.4.1 Compilation, How to specify "HadoopBuildVersion" and "RMBuildVersion"

(attached print screen)

[cid:image001.png@01CFD037.55254BC0]



On 14 Sep, 2014, at 1:25 pm, Arthur.hk.chan@gmail.com<ma...@gmail.com> <ar...@gmail.com>> wrote:


Hi,

To compile Hadoop 2.4.1 , any idea how to specify "hadoop.build.version" ? By modifying pom.xml? or add -Dhadoop.build.version=mybuild?  or specify it by compile command line?

Regards
Arthur




RE: Hadoop 2.4.1 Compilation, How to specify "HadoopBuildVersion" and "RMBuildVersion"

Posted by "Liu, Yi A" <yi...@intel.com>.
Change Hadoop version     : mvn versions:set -DnewVersion=NEWVERSION

Regards,
Yi Liu

From: Arthur.hk.chan@gmail.com [mailto:arthur.hk.chan@gmail.com]
Sent: Sunday, September 14, 2014 1:51 PM
To: user@hadoop.apache.org
Cc: Arthur.hk.chan@gmail.com
Subject: Re: Hadoop 2.4.1 Compilation, How to specify "HadoopBuildVersion" and "RMBuildVersion"

(attached print screen)

[cid:image001.png@01CFD037.55254BC0]



On 14 Sep, 2014, at 1:25 pm, Arthur.hk.chan@gmail.com<ma...@gmail.com> <ar...@gmail.com>> wrote:


Hi,

To compile Hadoop 2.4.1 , any idea how to specify "hadoop.build.version" ? By modifying pom.xml? or add -Dhadoop.build.version=mybuild?  or specify it by compile command line?

Regards
Arthur




Re: Hadoop 2.4.1 Compilation, How to specify "HadoopBuildVersion" and "RMBuildVersion"

Posted by "Arthur.hk.chan@gmail.com" <ar...@gmail.com>.
(attached print screen) 





On 14 Sep, 2014, at 1:25 pm, Arthur.hk.chan@gmail.com <ar...@gmail.com> wrote:

> Hi,
> 
> To compile Hadoop 2.4.1 , any idea how to specify “hadoop.build.version” ? By modifying pom.xml? or add -Dhadoop.build.version=mybuild?  or specify it by compile command line?
> 
> Regards
> Arthur
> 
> 


Re: Hadoop 2.4.1 Compilation, How to specify "HadoopBuildVersion" and "RMBuildVersion"

Posted by "Arthur.hk.chan@gmail.com" <ar...@gmail.com>.
(attached print screen) 





On 14 Sep, 2014, at 1:25 pm, Arthur.hk.chan@gmail.com <ar...@gmail.com> wrote:

> Hi,
> 
> To compile Hadoop 2.4.1 , any idea how to specify “hadoop.build.version” ? By modifying pom.xml? or add -Dhadoop.build.version=mybuild?  or specify it by compile command line?
> 
> Regards
> Arthur
> 
> 


Re: Hadoop 2.4.1 Compilation, How to specify "HadoopBuildVersion" and "RMBuildVersion"

Posted by "Arthur.hk.chan@gmail.com" <ar...@gmail.com>.
(attached print screen) 





On 14 Sep, 2014, at 1:25 pm, Arthur.hk.chan@gmail.com <ar...@gmail.com> wrote:

> Hi,
> 
> To compile Hadoop 2.4.1 , any idea how to specify “hadoop.build.version” ? By modifying pom.xml? or add -Dhadoop.build.version=mybuild?  or specify it by compile command line?
> 
> Regards
> Arthur
> 
> 


Re: Hadoop 2.4.1 Compilation, How to specify "HadoopBuildVersion" and "RMBuildVersion"

Posted by "Arthur.hk.chan@gmail.com" <ar...@gmail.com>.
(attached print screen) 





On 14 Sep, 2014, at 1:25 pm, Arthur.hk.chan@gmail.com <ar...@gmail.com> wrote:

> Hi,
> 
> To compile Hadoop 2.4.1 , any idea how to specify “hadoop.build.version” ? By modifying pom.xml? or add -Dhadoop.build.version=mybuild?  or specify it by compile command line?
> 
> Regards
> Arthur
> 
> 


Hadoop 2.4.1 Compilation, How to specify "HadoopBuildVersion" and "RMBuildVersion"

Posted by "Arthur.hk.chan@gmail.com" <ar...@gmail.com>.
Hi,

To compile Hadoop 2.4.1 , any idea how to specify “hadoop.build.version” ? By modifying pom.xml? or add -Dhadoop.build.version=mybuild?  or specify it by compile command line?

Regards
Arthur



Hadoop 2.4.1 Compilation, How to specify "HadoopBuildVersion" and "RMBuildVersion"

Posted by "Arthur.hk.chan@gmail.com" <ar...@gmail.com>.
Hi,

To compile Hadoop 2.4.1 , any idea how to specify “hadoop.build.version” ? By modifying pom.xml? or add -Dhadoop.build.version=mybuild?  or specify it by compile command line?

Regards
Arthur



Hadoop 2.4.1 Compilation, How to specify "HadoopBuildVersion" and "RMBuildVersion"

Posted by "Arthur.hk.chan@gmail.com" <ar...@gmail.com>.
Hi,

To compile Hadoop 2.4.1 , any idea how to specify “hadoop.build.version” ? By modifying pom.xml? or add -Dhadoop.build.version=mybuild?  or specify it by compile command line?

Regards
Arthur



Hadoop 2.4.1 Compilation, How to specify "HadoopBuildVersion" and "RMBuildVersion"

Posted by "Arthur.hk.chan@gmail.com" <ar...@gmail.com>.
Hi,

To compile Hadoop 2.4.1 , any idea how to specify “hadoop.build.version” ? By modifying pom.xml? or add -Dhadoop.build.version=mybuild?  or specify it by compile command line?

Regards
Arthur