Re: Any issue with large concurrency due to single active instance of YARN Resource Manager?

2014-09-02 Thread bo yang
f the YARN cluster > deployment on a cluster of thousands of nodes. > > Thanks, > Zhijie > > > On Tue, Sep 2, 2014 at 10:42 AM, bo yang wrote: > >> Hi Zhijie, >> >> That is great to know. Thanks! >> >> So there seems no be much limit to support large

Re: Any issue with large concurrency due to single active instance of YARN Resource Manager?

2014-09-02 Thread bo yang
gt; > On Mon, Sep 1, 2014 at 11:39 PM, bo yang wrote: > >> Hi Guys, >> >> I am thinking how many concurrent jobs a single Resource Manager might be >> able to manage? Following is my understanding, please correct me if I am >> wrong. >> >> Let's

Any issue with large concurrency due to single active instance of YARN Resource Manager?

2014-09-01 Thread bo yang
Hi Guys, I am thinking how many concurrent jobs a single Resource Manager might be able to manage? Following is my understanding, please correct me if I am wrong. Let's say if we have 1000 concurrent jobs running. Resource Manager will have 1000 records in memory to manage these jobs. And it will

Re: Hadoop classpath

2014-06-18 Thread bo yang
You can add the line to your bash profile (.bash_profile) export HADOOP_INSTALL=/usr/local/hadoop-2.4.0 On Wed, Jun 18, 2014 at 8:18 PM, Mohit Anchlia wrote: > No I didn't set that up. Do you know which script it's used? I have > HADOOP_HOME setup. > > > On Wed, Ju

Re: Hadoop classpath

2014-06-18 Thread bo yang
Hi Mohit, Did you set up HADOOP_INSTALL? For me, I did following: export HADOOP_INSTALL=/usr/local/hadoop-2.4.0 Bo On Wed, Jun 18, 2014 at 4:27 PM, Mohit Anchlia wrote: > I installed Yarn on a single node and now when I try to run hadoop fs I > get : > > Error: Could not find or load main

Re: Fwd: Trying to build Hadoop on Windows 8

2014-06-13 Thread bo yang
Just share my experience. I hit build issue on Windows 8 previously. Then I have to use Visual Studio to open the sln file, and build inside Visual Studio. After that, I could finish the build of hadoop 2.4. On Fri, Jun 13, 2014 at 2:26 PM, Arpit Agarwal wrote: > No idea. Can you just try to up

Re: Web interface not show applications

2014-05-25 Thread bo yang
No problem. Thanks Wangda to follow up on this issue! On Sun, May 25, 2014 at 6:36 AM, Wangda Tan wrote: > Thanks for reporting this, will look at this. > > > On Sat, May 24, 2014 at 8:53 AM, bo yang wrote: > >> Yes, after application shown in main page, do step 1 again

Re: Web interface not show applications

2014-05-23 Thread bo yang
p 1 again, will this application disappear? > And what's version of your Hadoop? > > Thanks, > Wangda > > > On Sat, May 24, 2014 at 1:33 AM, bo yang wrote: > >> Wangda, >> >> Yes, it is still reproducible. >> >> Steps in my side: >> 1.

Re: Web interface not show applications

2014-05-23 Thread bo yang
bug if it's re-producible. > > > On Thu, May 15, 2014 at 3:26 AM, bo yang wrote: > >> Hi Boyu, >> >> I hit similar situation previously. I found I clicked some child queue in >> Scheduler page, then I could not see any applications in main page. If I >&g

Re: Failed to run 'mvn package' on hadoop-2.2 using Cygwin

2014-05-21 Thread bo yang
(ProtocMojo.java:107) >> at >> org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:101) >> at >> org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:209) >> ... 23 moreCaused by: >>

Re: Failed to run 'mvn package' on hadoop-2.2 using Cygwin

2014-05-20 Thread bo yang
I kind of remember I hit similar issue when building hadoop 2.4. I changed the source code to use the full path of protoc.exe. It is in hadoop-maven-plugins\src\main\java\org\apache\hadoop\maven\plugin\protoc\ProtocMojo.java: protocCommand = "C:\\cygwin64\\usr\\local\\bin\\protoc.exe"; Then the b

Re: where to put log4j.properties for logging out of MR job?

2014-05-18 Thread bo yang
It might be caused by multiple log4j.properties files in your class path (e.g. in different jar files). For example, I find hadoop-mapreduce-client-jobclient-2.4.0-tests.jar in my class path, and there is log4j.properties inside it. I have to manually delete it to get logging written to files. On

Re: Web interface not show applications

2014-05-16 Thread bo yang
Hi Boyu, I hit similar situation previously. I found I clicked some child queue in Scheduler page, then I could not see any applications in main page. If I click the root queue in Scheduler page, I can see applications in main page again. You may have a similar try. Regards, Bo On Wed, May 14,

Yarn Performance: submitting applications slow down application scheduling?

2014-05-16 Thread bo yang
Hi, I am doing some performance test on YARN to see its performance on large scale application submission and scheduling. I find the application scheduling slowed down when I continuously submitted jobs in a high speed (e.g. 20 applications per second). Anyone has any experience with this? Is the

A lot of .tokens.crc files under D:\temp\001

2014-05-12 Thread bo yang
Hi, I am running Hadoop Yarn, and find many crc files under D:\temp\001: .container_1399592412577_0004_01_01.tokens.crc .container_1399592412577_0006_01_01.tokens.crc ... Anyone have any idea how to turn it off, or configure the path to be different directory? Thanks, Bo

Re: How do I get started with hadoop on windows system

2014-04-30 Thread bo yang
Sharing a little experience for me to get hadoop working on windows... I need to build the native binaries (winutils.exe, hadoop.dll) from Hadoop source code, and copy them to Hadoop bin directory. The maven pom project cannot build these binaries well on windows. I have to manually open the sln f

Re: Running YARN in-process Application Master?

2014-04-29 Thread bo yang
during the > development and I think that's what you meant. > I've been playing with it lately, so feel free to take a look - > https://github.com/olegz/yaya/wiki/CoreFeatures#in-jvm-container-executor. > At least you'll get some ideas out of it. > > Cheers > Oleg

Running YARN in-process Application Master?

2014-04-28 Thread bo yang
Hi All, I just joined this group, and not sure whether this question was discussed before. Is it possible to run Application Master within the same process as Node Manager? If not, any plan to support it future? I am asking this because we might want to use YARN as a job dispatching system. We h