[prev in list] [next in list] [prev in thread] [next in thread] 

List:       mesos-user
Subject:    Re: Does Mesos support Hadoop MR V2
From:       Brenden Matthews <brenden.matthews () airbedandbreakfast ! com>
Date:       2014-10-28 14:48:04
Message-ID: CA+2n2eqNHD6JfWJqOW7Y8ZhGrPviqYJ1Qz=AMXG5rOombrQr8g () mail ! gmail ! com
[Download RAW message or body]

Porting YARN to run atop Mesos is quite reasonable.  Some folks at eBay
have started some work on this (https://github.com/mesos/myriad).  If
you're interested, you should check it out, and contribute to the project.

On Tue, Oct 28, 2014 at 5:21 AM, Yaneeve Shekel <Yaneeve.Shekel@sizmek.com>
wrote:

> To quote John below,
> 
> "So excuse my naivety… but…", I am also confused as to the version/naming \
> convention going on at the hadoop project. 
> I would like to run hadoop over mesos as opposed to over yarn. I would also like to \
> use the *"new"* mapreduce packages. 
> https://github.com/mesos/hadoop mentions that "The pom.xml included is configured \
> and tested against CDH5 and MRv1. Hadoop on Mesos does not currently support YARN \
> (and MRv2)."  Does this all mean that the mapreduce package is not available. I \
> think it does not, I think I should be able to use the "new" api over any \
> scheduling system just as I could over plain vanilla cdh (where I could configure \
> and use any combination of the the cross product -> (mapred, mapreduce) X (MRv1, \
> YARN)). Could anyone verify this? 
> Second, has any work been done as pertaining the original thread with regards to \
> what John has suggested below? 
> 
> 
> Thanks a lot,
> 
> Yaneeve
> 
> 
> 
> On Jul 27, 2014 7:00 PM, "John Omernik" <j...@omernik.com> wrote:
> 
> 
> 
> > So excuse my naivety in this space, but my ignorance has never really
> 
> > stopped me from asking questions:
> 
> > 
> 
> > I see YARN (Yet another resource negotiator) as very similar to Mesos.
> 
> > I.e. something to manage resources on a cluster of machines. So when I hear
> 
> > talk of running "YARN" on Mesos it's seems very redundant indeed, and I ask
> 
> > myself, what are we actually getting out of this setup?
> 
> > 
> 
> > So, going to the mapr/reduce question, I see Mapr Reduce V1 and MaprReduce
> 
> > V2 like this:  Map Reduce V2 is an application that runs on YARN. I.e. if
> 
> > you run a job, it creates an application master, that application master
> 
> > requests resources, and the job gets run.  It differs from Map Reduce V1 is
> 
> > there is no long running Job Tracker (other than the YARN Resource Manager,
> 
> > but that is managing resources for all applications, not just Map Reduce
> 
> > Applications).  Ok, so Mesos, why can't there be a Mesos Application that
> 
> > is similar to a Map Reduce V2 Application in YARN?  Why do we need to run
> 
> > YARN on Mesos? That doesn't really make sense.  Basically, for M/R V2 vs
> 
> > M/R V1, the only difference is to mimic M/R V1 we need task trackers and
> 
> > job trackers running as Mesos applications (which we have).  So in M/R v2,
> 
> > we just need the equivalent of an application master running on Yarn,
> 
> > requesting resources across the cluster.
> 
> > 
> 
> > Fundamentally, YARN is confusing because I think they coupled running Map
> 
> > Reduce jobs with the resource manager and called it "Hadoop v2".  By
> 
> > coupling the two, people look at YARN as Map Reduce V2, but it's not
> 
> > really.  It's a way to running jobs on a cluster of machines (ala Mesos)
> 
> > with a "application" that is the equivalent of Map Reduce V1.   The names
> 
> > being given seem to be confusing to me, it makes people who have invested
> 
> > in Hadoop (Map Reduce V1) be very interested in YARN because it's called
> 
> > "Hadoop V2".  While Mesos is seen as the "Other"
> 
> > 
> 
> > 
> 
> > Just for my sake I summarized a TL;DR form so if someone wants to correct
> 
> > my understanding they can
> 
> > 
> 
> > Mesos = Tool to manage resources
> 
> > 
> 
> > YARN = Tool to manage resources it's also called Hadoopv2
> 
> > 
> 
> > Map Reduce V1 = Job trackers/Task Trackers it's what we know. It can run
> 
> > on Hadoop clusters, and Mesos.  It's also called Hadoopv1
> 
> > 
> 
> > Map Reduce V2 =  Application that can run on YARN that mimics Map Reduce
> 
> > V1 on a YARN Cluster. This + YARN has been called Hadoopv2.
> 
> > 
> 
> > 
> 
> > 
> 
> > 
> 
> > 
> 
> > 
> 
> > 
> 
> > 
> 
> > 
> 
> > 
> 
> > 
> 
> > 
> 
> > 
> 
> > 
> 
> > 
> 
> > 
> 
> > 
> 
> > 
> 
> > On Sun, Jul 27, 2014 at 4:10 AM, Maxime Brugidou <
> 
> > maxime.brugi...@gmail.com> wrote:
> 
> > 
> 
> > > When I said that running yarn over mesos did not make sense I meant that
> 
> > > running a resource manager in a resource manager was very sub-optimal. You
> 
> > > will eventually do static allocation of resources for the Yarn framework in
> 
> > > Mesos or have complex logic to determine how much resource should be given
> 
> > > to yarn. You will also have the same burden of managing 2 different
> 
> > > clusters instead of one, even if yarn is sort of hidden as mesos framework.
> 
> > > 
> 
> > > However yes I believe its easier to run yarn on mesos than to run mrv2 on
> 
> > > top of mesos. The solution I was discussing was obviously "ideal" and I
> 
> > > looked at the MRAppMaster since and it discouraged me :)
> 
> > > On Jul 27, 2014 12:41 AM, "Rick Richardson" <rick.richard...@gmail.com>
> 
> > > wrote:
> 
> > > 
> 
> > > > FWIW I also think the fastest approach here is is porting Yarn onto
> 
> > > > Mesos.
> 
> > > > 
> 
> > > > In a perfect world, writing an implementation layer for the Yarn
> 
> > > > Interface on Mesos would certainly be the optimal approach, but looking at
> 
> > > > the MRv2 code, it is very very coupled to many Yarn modules.
> 
> > > > 
> 
> > > > If someone wanted to take on the project of making a generic resource
> 
> > > > scheduler Interface for MRv2, that works be amazing :)
> 
> > > > On Jul 26, 2014 6:19 PM, "Jie Yu" <yujie....@gmail.com> wrote:
> 
> > > > 
> 
> > > > > I am interested in investigating the idea of YARN on top of Mesos. One
> 
> > > > > of the benefits I can think of is that we can get rid of the static
> 
> > > > > resource allocation between YARN and Mesos clusters. In that way, Mesos can
> 
> > > > > allocate those resources that are not used by YARN to other Mesos
> 
> > > > > frameworks like Aurora, Marathon, etc, to increase the resource utilization
> 
> > > > > of the entire data center. Also, we could avoid running each MRv2 job as a
> 
> > > > > framework which I think might cause some maintenance complexity (e.g. for
> 
> > > > > framework rate limiting, etc). Finally, YARN currently does not have a good
> 
> > > > > isolation support. It only supports cpu isolation right now (using
> 
> > > > > cgroups). By porting YARN on top of Mesos, we might be able to leverage the
> 
> > > > > existing Mesos containerizer strategy to provide better isolation between
> 
> > > > > tasks. Maxime, I am curious why do you think it does not make sense to run
> 
> > > > > YARN over Mesos? Since I am not super familar with YARN, I might be missing
> 
> > > > > something.
> 
> > > > > 
> 
> > > > > I have been thinking of making ResourceManager in YARN a Mesos
> 
> > > > > framework and making NodeManager a Mesos executor. The NodeManager will
> 
> > > > > launch containers using primitives provided by Mesos so that we have a
> 
> > > > > consistent containerizer layer. I haven't fully figured out how this could
> 
> > > > > be done yet (e.g., nested containers, communication between NodeManager and
> 
> > > > > ResourceManager, etc.), but I would love to explore this direction. I would
> 
> > > > > like to hear about any feedback/suggestions you guys have about this
> 
> > > > > direction.
> 
> > > > > 
> 
> > > > > Thanks,
> 
> > > > > - Jie
> 
> > > > > 
> 
> > > > > 
> 
> > > > > On Fri, Jul 25, 2014 at 1:39 PM, Maxime Brugidou <
> 
> > > > > maxime.brugi...@gmail.com> wrote:
> 
> > > > > 
> 
> > > > > > We run both mesos and yarn in prod and it does not make sense to run
> 
> > > > > > yarn over mesos.
> 
> > > > > > 
> 
> > > > > > However it would be interesting to find a way to run MRv2 jobs on
> 
> > > > > > mesos with some custom layer to swap yarn with mesos. Not sure how to
> 
> > > > > > start
> 
> > > > > > though... MRv2 contains a yarn application master that needs to be
> 
> > > > > > rewritten as a mesos framework scheduler. This is probably doable. \
> > > > > > However
> 
> > > > > > with MRv2 every map reduce job would be mapped as a new framework in
> 
> > > > > > Mesos.
> 
> > > > > > Not sure how many frameworks mesos can run and scale up to. Especially
> 
> > > > > > short lived frameworks.
> 
> > > > > > On Jul 25, 2014 8:54 PM, "Tom Arnfeld" <t...@duedil.com> wrote:
> 
> > > > > > 
> 
> > > > > > > Hey Luyi,
> 
> > > > > > > 
> 
> > > > > > > That's correct, the Hadoop framework currently only supports Hadoop 2
> 
> > > > > > > MRv1. It also doesn't have great support for the HA jobtracker \
> > > > > > > available
> 
> > > > > > > in
> 
> > > > > > > newer versions of Hadoop, but I've been working on that the past few
> 
> > > > > > > weeks.
> 
> > > > > > > 
> 
> > > > > > > I'm not sure how Hadoop 2 would play with Mesos, but very interested
> 
> > > > > > > to find out more. Am I correct in thinking MRv2 will only run on top of
> 
> > > > > > > YARN?
> 
> > > > > > > 
> 
> > > > > > > I wonder if anyone else on the mailing list is running YARN on top of
> 
> > > > > > > Mesos...
> 
> > > > > > > 
> 
> > > > > > > Tom.
> 
> > > > > > > 
> 
> > > > > > > On Friday, 25 July 2014, Luyi Wang <wangluyi1...@gmail.com> wrote:
> 
> > > > > > > 
> 
> > > > > > > > Checked the mesos github(https://github.com/mesos/hadoop). It
> 
> > > > > > > > listed support for MapReduce V1
> 
> > > > > > > > 
> 
> > > > > > > > How about the MR V2?
> 
> > > > > > > > 
> 
> > > > > > > > Right now we are using cloudera to manage hadoop clusters where uses
> 
> > > > > > > > MRV2. We are planning to migrate all our services to mesos(still in \
> > > > > > > > the
> 
> > > > > > > > initial investigating stage).  Good suggestions, advice and \
> > > > > > > > experiences
> 
> > > > > > > > are
> 
> > > > > > > > welcomed.
> 
> > > > > > > > 
> 
> > > > > > > > Thanks a lot!
> 
> > > > > > > > 
> 
> > > > > > > > 
> 
> > > > > > > > -Luyi.
> 
> > > > > > > > 
> 
> > > > > > > > 
> 
> > > > > > > > 
> 
> > > > > > > > 
> 
> > > > > 
> 
> > 
> 
> 
> 


[Attachment #3 (text/html)]

<div dir="ltr">Porting YARN to run atop Mesos is quite reasonable.   Some folks at \
eBay have started some work on this (<a \
href="https://github.com/mesos/myriad">https://github.com/mesos/myriad</a>).   If \
you&#39;re interested, you should check it out, and contribute to the \
project.</div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Oct 28, \
2014 at 5:21 AM, Yaneeve Shekel <span dir="ltr">&lt;<a \
href="mailto:Yaneeve.Shekel@sizmek.com" \
target="_blank">Yaneeve.Shekel@sizmek.com</a>&gt;</span> wrote:<br><blockquote \
class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc \
solid;padding-left:1ex">





<div lang="EN-US" link="#0563C1" vlink="#954F72">
<div>
<pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">To quote John below, \
<u></u><u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">"So excuse my naivety… \
but…", I am also confused as to the version/naming convention going on at the \
hadoop project. <u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">I would like to run hadoop \
over mesos as opposed to over yarn. I would also like to use the <i>"new"</i> \
mapreduce packages. <u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black"><a \
href="https://github.com/mesos/hadoop" \
target="_blank">https://github.com/mesos/hadoop</a> mentions that "The pom.xml \
included is configured and tested against CDH5 and MRv1. Hadoop on Mesos does not \
currently support YARN (and MRv2)."   Does this all mean that the mapreduce package \
is not available. I think it does not, I think I should be able to use the "new" api \
over any scheduling system just as I could over plain vanilla cdh (where I could \
configure and use any combination of the the cross product -&gt; (mapred, mapreduce) \
X (MRv1, YARN)). Could anyone verify this?<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">Second, has any work been \
done as pertaining the original thread with regards to what John has suggested \
below?<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black"><u></u>  \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">Thanks a \
lot,<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">Yaneeve<u></u><u></u></span></pre>
 <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black"><u></u>  \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">On Jul 27, 2014 7:00 PM, \
&quot;John Omernik&quot; &lt;<a href="mailto:j...@omernik.com" \
target="_blank">j...@omernik.com</a>&gt; wrote:<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black"><u></u>  \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt; So excuse my naivety in \
this space, but my ignorance has never really<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt; stopped me from asking \
questions:<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;<u></u>  \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt; I see YARN (Yet another \
resource negotiator) as very similar to Mesos.<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt; I.e. something to \
manage resources on a cluster of machines. So when I hear<u></u><u></u></span></pre> \
<pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt; talk of running \
&quot;YARN&quot; on Mesos it&#39;s seems very redundant indeed, and I \
ask<u></u><u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt; myself, what are we \
actually getting out of this setup?<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;<u></u>  \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt; So, going to the \
mapr/reduce question, I see Mapr Reduce V1 and MaprReduce<u></u><u></u></span></pre> \
<pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt; V2 like this:   Map \
Reduce V2 is an application that runs on YARN. I.e. if<u></u><u></u></span></pre> \
<pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt; you run a job, it \
creates an application master, that application master<u></u><u></u></span></pre> \
<pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt; requests resources, and \
the job gets run.   It differs from Map Reduce V1 is<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt; there is no long \
running Job Tracker (other than the YARN Resource Manager,<u></u><u></u></span></pre> \
<pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt; but that is managing \
resources for all applications, not just Map Reduce<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt; Applications).   Ok, so \
Mesos, why can&#39;t there be a Mesos Application that<u></u><u></u></span></pre> \
<pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt; is similar to a Map \
Reduce V2 Application in YARN?   Why do we need to run<u></u><u></u></span></pre> \
<pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt; YARN on Mesos? That \
doesn&#39;t really make sense.   Basically, for M/R V2 vs<u></u><u></u></span></pre> \
<pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt; M/R V1, the only \
difference is to mimic M/R V1 we need task trackers and<u></u><u></u></span></pre> \
<pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt; job trackers running as \
Mesos applications (which we have).   So in M/R v2,<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt; we just need the \
equivalent of an application master running on Yarn,<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt; requesting resources \
across the cluster.<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;<u></u>  \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt; Fundamentally, YARN is \
confusing because I think they coupled running Map<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt; Reduce jobs with the \
resource manager and called it &quot;Hadoop v2&quot;.   By<u></u><u></u></span></pre> \
<pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt; coupling the two, \
people look at YARN as Map Reduce V2, but it&#39;s not<u></u><u></u></span></pre> \
<pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt; really.   It&#39;s a \
way to running jobs on a cluster of machines (ala Mesos)<u></u><u></u></span></pre> \
<pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt; with a \
&quot;application&quot; that is the equivalent of Map Reduce V1.     The \
names<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt; being given seem to be \
confusing to me, it makes people who have invested<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt; in Hadoop (Map Reduce \
V1) be very interested in YARN because it&#39;s called<u></u><u></u></span></pre> \
<pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt; &quot;Hadoop V2&quot;.  \
While Mesos is seen as the &quot;Other&quot;<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;<u></u>  \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;<u></u>  \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt; Just for my sake I \
summarized a TL;DR form so if someone wants to correct<u></u><u></u></span></pre> \
<pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt; my understanding they \
can<u></u><u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;<u></u>  \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt; Mesos = Tool to manage \
resources<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;<u></u>  \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt; YARN = Tool to manage \
resources it&#39;s also called Hadoopv2<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;<u></u>  \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt; Map Reduce V1 = Job \
trackers/Task Trackers it&#39;s what we know. It can run<u></u><u></u></span></pre> \
<pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt; on Hadoop clusters, and \
Mesos.   It&#39;s also called Hadoopv1<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;<u></u>  \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt; Map Reduce V2 =   \
Application that can run on YARN that mimics Map Reduce<u></u><u></u></span></pre> \
<pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt; V1 on a YARN Cluster. \
This + YARN has been called Hadoopv2.<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;<u></u>  \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;<u></u>  \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;<u></u>  \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;<u></u>  \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;<u></u>  \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;<u></u>  \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;<u></u>  \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;<u></u>  \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;<u></u>  \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;<u></u>  \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;<u></u>  \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;<u></u>  \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;<u></u>  \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;<u></u>  \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;<u></u>  \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;<u></u>  \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;<u></u>  \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;<u></u>  \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt; On Sun, Jul 27, 2014 at \
4:10 AM, Maxime Brugidou &lt;<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
<pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;<u></u>  \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt; When I said that \
running yarn over mesos did not make sense I meant that<u></u><u></u></span></pre> \
<pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt; running a resource \
manager in a resource manager was very sub-optimal. You<u></u><u></u></span></pre> \
<pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt; will eventually do \
static allocation of resources for the Yarn framework in<u></u><u></u></span></pre> \
<pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt; Mesos or have \
complex logic to determine how much resource should be \
given<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt; to yarn. You will \
also have the same burden of managing 2 different<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt; clusters instead of \
one, even if yarn is sort of hidden as mesos framework.<u></u><u></u></span></pre> \
<pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;<u></u>  \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt; However yes I \
believe its easier to run yarn on mesos than to run mrv2 \
on<u></u><u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt; top of mesos. The \
solution I was discussing was obviously &quot;ideal&quot; and \
I<u></u><u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt; looked at the \
MRAppMaster since and it discouraged me :)<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;   On Jul 27, 2014 \
12:41 AM, &quot;Rick Richardson&quot; &lt;<a href="mailto:rick.richard...@gmail.com" \
target="_blank">rick.richard...@gmail.com</a>&gt;<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt; \
wrote:<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;<u></u>  \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt; FWIW I also \
think the fastest approach here is is porting Yarn onto<u></u><u></u></span></pre> \
<pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt; \
Mesos.<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;<u></u>  \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt; In a perfect \
world, writing an implementation layer for the Yarn<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt; Interface on \
Mesos would certainly be the optimal approach, but looking \
at<u></u><u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt; the MRv2 code, \
it is very very coupled to many Yarn modules.<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;<u></u>  \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt; If someone \
wanted to take on the project of making a generic resource<u></u><u></u></span></pre> \
<pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt; scheduler \
Interface for MRv2, that works be amazing :)<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt; On Jul 26, 2014 \
6:19 PM, &quot;Jie Yu&quot; &lt;<a href="mailto:yujie....@gmail.com" \
target="_blank">yujie....@gmail.com</a>&gt; wrote:<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;<u></u>  \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt; I am \
interested in investigating the idea of YARN on top of Mesos. \
One<u></u><u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt; of the \
benefits I can think of is that we can get rid of the \
static<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt; resource \
allocation between YARN and Mesos clusters. In that way, Mesos \
can<u></u><u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt; allocate \
those resources that are not used by YARN to other Mesos<u></u><u></u></span></pre> \
<pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt; frameworks \
like Aurora, Marathon, etc, to increase the resource \
utilization<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt; of the \
entire data center. Also, we could avoid running each MRv2 job as \
a<u></u><u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt; framework \
which I think might cause some maintenance complexity (e.g. \
for<u></u><u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt; framework \
rate limiting, etc). Finally, YARN currently does not have a \
good<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt; isolation \
support. It only supports cpu isolation right now (using<u></u><u></u></span></pre> \
<pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt; cgroups). \
By porting YARN on top of Mesos, we might be able to leverage \
the<u></u><u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt; existing \
Mesos containerizer strategy to provide better isolation \
between<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt; tasks. \
Maxime, I am curious why do you think it does not make sense to \
run<u></u><u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt; YARN over \
Mesos? Since I am not super familar with YARN, I might be \
missing<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt; \
something.<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;<u></u>  \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt; I have been \
thinking of making ResourceManager in YARN a Mesos<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt; framework \
and making NodeManager a Mesos executor. The NodeManager \
will<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt; launch \
containers using primitives provided by Mesos so that we have \
a<u></u><u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt; consistent \
containerizer layer. I haven&#39;t fully figured out how this \
could<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt; be done yet \
(e.g., nested containers, communication between NodeManager \
and<u></u><u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt; \
ResourceManager, etc.), but I would love to explore this direction. I \
would<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt; like to \
hear about any feedback/suggestions you guys have about \
this<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt; \
direction.<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;<u></u>  \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt; \
Thanks,<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt; - \
Jie<u></u><u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;<u></u>  \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;<u></u>  \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt; On Fri, Jul \
25, 2014 at 1:39 PM, Maxime Brugidou &lt;<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt; <a \
href="mailto:maxime.brugi...@gmail.com" \
target="_blank">maxime.brugi...@gmail.com</a>&gt; wrote:<u></u><u></u></span></pre> \
<pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;<u></u>  \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;&gt; We run \
both mesos and yarn in prod and it does not make sense to \
run<u></u><u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;&gt; yarn \
over mesos.<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;&gt;<u></u>  \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;&gt; However \
it would be interesting to find a way to run MRv2 jobs on<u></u><u></u></span></pre> \
<pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;&gt; mesos \
with some custom layer to swap yarn with mesos. Not sure how to \
<u></u><u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;&gt; \
start<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;&gt; \
though... MRv2 contains a yarn application master that needs to \
be<u></u><u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;&gt; \
rewritten as a mesos framework scheduler. This is probably doable. \
However<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;&gt; with \
MRv2 every map reduce job would be mapped as a new framework in \
<u></u><u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;&gt; \
Mesos.<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;&gt; Not \
sure how many frameworks mesos can run and scale up to. \
<pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;&gt;   On \
Jul 25, 2014 8:54 PM, &quot;Tom Arnfeld&quot; &lt;<a href="mailto:t...@duedil.com" \
target="_blank">t...@duedil.com</a>&gt; wrote:<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;&gt;<u></u>  \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;&gt;&gt; Hey \
Luyi,<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;&gt;&gt;<u></u> \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;&gt;&gt; \
That&#39;s correct, the Hadoop framework currently only supports Hadoop \
2<u></u><u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;&gt;&gt; \
MRv1. It also doesn&#39;t have great support for the HA jobtracker available \
<u></u><u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;&gt;&gt; \
in<u></u><u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;&gt;&gt; \
newer versions of Hadoop, but I&#39;ve been working on that the past few \
<u></u><u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;&gt;&gt; \
weeks.<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;&gt;&gt;<u></u> \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;&gt;&gt; \
I&#39;m not sure how Hadoop 2 would play with Mesos, but very \
interested<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;&gt;&gt; to \
find out more. Am I correct in thinking MRv2 will only run on top \
of<u></u><u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;&gt;&gt; \
YARN?<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;&gt;&gt;<u></u> \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;&gt;&gt; I \
wonder if anyone else on the mailing list is running YARN on top \
of<u></u><u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;&gt;&gt; \
Mesos...<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;&gt;&gt;<u></u> \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;&gt;&gt; \
Tom.<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;&gt;&gt;<u></u> \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;&gt;&gt; On \
Friday, 25 July 2014, Luyi Wang &lt;<a href="mailto:wangluyi1...@gmail.com" \
target="_blank">wangluyi1...@gmail.com</a>&gt; wrote:<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;&gt;&gt;<u></u> \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;&gt;&gt;&gt; \
Checked the mesos github(<a href="https://github.com/mesos/hadoop" \
target="_blank"><span \
style="color:#a01e1e">https://github.com/mesos/hadoop</span></a>). \
It<u></u><u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;&gt;&gt;&gt; \
listed support for MapReduce V1<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;&gt;&gt;&gt;<u></u> \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;&gt;&gt;&gt; \
How about the MR V2?<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;&gt;&gt;&gt;<u></u> \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;&gt;&gt;&gt; \
Right now we are using cloudera to manage hadoop clusters where \
uses<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;&gt;&gt;&gt; \
MRV2. We are planning to migrate all our services to mesos(still in \
the<u></u><u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;&gt;&gt;&gt; \
initial investigating stage).   Good suggestions, advice and experiences \
<u></u><u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;&gt;&gt;&gt; \
are<u></u><u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;&gt;&gt;&gt; \
welcomed.<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;&gt;&gt;&gt;<u></u> \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;&gt;&gt;&gt; \
Thanks a lot!<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;&gt;&gt;&gt;<u></u> \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;&gt;&gt;&gt;<u></u> \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;&gt;&gt;&gt; \
-Luyi.<u></u><u></u></span></pre> <pre \
style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;&gt;&gt;&gt;<u></u> \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;&gt;&gt;&gt;<u></u> \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;&gt;&gt;&gt;<u></u> \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;&gt;&gt;&gt;<u></u> \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;&gt;&gt;&gt;<u></u>  \
<u></u></span></pre> <pre style="line-height:14.7pt;background:white"><span \
style="font-size:10.5pt;font-family:Courier;color:black">&gt;<u></u>  \
<u></u></span></pre> <p class="MsoNormal"><u></u>  <u></u></p>
</div>
</div>

</blockquote></div><br></div>



[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic