Return-Path: X-Original-To: apmail-incubator-mesos-dev-archive@minotaur.apache.org Delivered-To: apmail-incubator-mesos-dev-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 616F673EA for ; Tue, 23 Aug 2011 23:51:13 +0000 (UTC) Received: (qmail 80621 invoked by uid 500); 23 Aug 2011 23:51:13 -0000 Delivered-To: apmail-incubator-mesos-dev-archive@incubator.apache.org Received: (qmail 80596 invoked by uid 500); 23 Aug 2011 23:51:12 -0000 Mailing-List: contact mesos-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: mesos-dev@incubator.apache.org Delivered-To: mailing list mesos-dev@incubator.apache.org Received: (qmail 80587 invoked by uid 99); 23 Aug 2011 23:51:12 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 23 Aug 2011 23:51:12 +0000 X-ASF-Spam-Status: No, hits=-1.3 required=5.0 tests=RCVD_IN_DNSWL_MED,SPF_SOFTFAIL X-Spam-Check-By: apache.org Received-SPF: softfail (athena.apache.org: transitioning domain of matei@eecs.berkeley.edu does not designate 169.229.218.146 as permitted sender) Received: from [169.229.218.146] (HELO cm05fe.IST.Berkeley.EDU) (169.229.218.146) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 23 Aug 2011 23:51:08 +0000 Received: from dhcp-45-207.eecs.berkeley.edu ([128.32.45.207]) by cm05fe.ist.berkeley.edu with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.76) (auth plain:matei@eecs.berkeley.edu) (envelope-from ) id 1Qw0k1-0001OZ-Gc for mesos-dev@incubator.apache.org; Tue, 23 Aug 2011 16:50:47 -0700 Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Apple Message framework v1084) Subject: Re: About spark-shell in mesos cluster mode Re: WELCOME to mesos-dev@incubator.apache.org From: Matei Zaharia In-Reply-To: Date: Tue, 23 Aug 2011 16:50:45 -0700 Content-Transfer-Encoding: quoted-printable Message-Id: <5BE1EADC-4C90-4B9D-914C-1A56AF635247@eecs.berkeley.edu> References: To: mesos-dev@incubator.apache.org X-Mailer: Apple Mail (2.1084) Weird, did you subscribe to the spark-users mailing list? I don't think = you can post to it without doing that. Go to = https://lists.eecs.berkeley.edu/sympa/subscribe/spark-users. Anyway, to run the shell on a cluster, you need to set the MASTER = environment variable to the Mesos master URL you want to use (similar to = the one you pass to the standalone programs). So for example, type MASTER=3D1@localhost:5050 ./spark-shell Matei On Aug 23, 2011, at 4:39 PM, Joe Xie wrote: > Hi there, >=20 > may I ask how can I run spark-shell in cluster mode? The web wiki say > change the configuration of master, but I did not find detailed info = yet. > It seems my email failed at spark-user maillist. > Thanks! > Joe >=20 >=20 >=20 > On 8/22/11 4:42 PM, "Joe Xie" wrote: >=20 >> Thank you Matei! It's working now. I checked the stderr, it seems I = have >> to specify the SCALA_HOME even if it's in .bashrc. >> Best, >> Joe >>=20 >> On 8/22/11 4:13 PM, "Matei Zaharia" wrote: >>=20 >>> This probably means that your task crashed. Take a look at the logs = Mesos >>> collects for your task, which will be in >>> MESOS_HOME/work/slave-id/framework-id/attempt-id/stdout and stderr. >>>=20 >>> Sometimes this happens because spark-env.sh isn't configured on all = the >>> nodes to contain SCALA_HOME, JAVA_HOME and MESOS_HOME. It can also = happen >>> because your code is not available on all the machines and you get a >>> ClassNotFoundError. You can either copy the code to the same place >>> everywhere and put that in the SPARK_CLASSPATH variable in = spark-env.sh, >>> or package your code into a JAR and use the "jars" parameter to >>> SparkContext to pass it (in which case Spark will copy it to all the >>> nodes). >>>=20 >>> Matei >>>=20 >>> On Aug 22, 2011, at 4:04 PM, Joe Xie wrote: >>>=20 >>>> Btw, I checkout my webui for master, it indicates "No offers are >>>> active" >>>> under "Resource Offers" while I have two machines as slave, so = there >>>> might >>>> be problem with my configuration. >>>> Best, >>>> JOE >>>>=20 >>>> On 8/22/11 3:59 PM, "Joe Xie" wrote: >>>>=20 >>>>> Thank you Matei, >>>>>=20 >>>>> it's running for me with Spark 0.3 + pre-protobuf, and I'm testing >>>>> with >>>>> provided example "run spark.examples.SparkPi >>>>> mesos://1@10.30.95.184:5050 >>>>> 3". However, it seems I keep losing TID after starting the task, = and >>>>> then >>>>> job aborted with 4 tries. It might be the problem on my side too, = did >>>>> this >>>>> happen before? I could go for trying masters for spark + mesos. >>>>> 11/08/22 15:48:27 INFO spark.SimpleJob: Lost TID 13 (task 0:2) >>>>> 11/08/22 15:48:27 ERROR spark.SimpleJob: Task 0:2 failed more than = 4 >>>>> times; aborting job >>>>> 11/08/22 15:48:28 INFO spark.MesosScheduler: Ignoring update from = TID >>>>> 12 >>>>> because its job is gone >>>>> 11/08/22 15:48:28 INFO spark.MesosScheduler: Ignoring update from = TID >>>>> 14 >>>>> because its job is gone >>>>>=20 >>>>> Thanks! >>>>> Joe >>>>>=20 >>>>>=20 >>>>>=20 >>>>> On 8/22/11 3:38 PM, "Joe Xie" wrote: >>>>>=20 >>>>>> Thank you Matei! I can go for Spark 0.3 + pre-protobuf. I = understand >>>>>> there >>>>>> might be lots of new updates on the master branch. Is there any >>>>>> significant difference in current master with Spark 0.3 + >>>>>> pre-protobuf? I >>>>>> could also try to keep a separate branch with stable masters if >>>>>> that's >>>>>> the >>>>>> case.=20 >>>>>> Best, >>>>>> Joe >>>>>> On 8/22/11 3:21 PM, "Matei Zaharia" = wrote: >>>>>>=20 >>>>>>> If you want the most stable versions right now, I recommend = Spark >>>>>>> 0.3 >>>>>>> (download it from the website or the 0.3-scala-2.9 tag in Git) = and >>>>>>> pre-protobuf Mesos. However, the current master Spark + master = Mesos >>>>>>> should also work OK; it's just that further commits may break = things >>>>>>> temporarily. >>>>>>>=20 >>>>>>> Matei >>>>>>>=20 >>>>>>> On Aug 22, 2011, at 3:17 PM, Joe Xie wrote: >>>>>>>=20 >>>>>>>> Hi Matei, >>>>>>>> Thanks for your feedback. I bet I'm using the master brach of = Spark >>>>>>>> and >>>>>>>> pre-protobuf version of Mesos. Do you mean I should go for = Spark >>>>>>>> (master) >>>>>>>> + protobuf (master). Let's me know the most stable combination = of >>>>>>>> braches >>>>>>>> from Spark and pre-protobuf, I can try them out. >>>>>>>>=20 >>>>>>>> Best, >>>>>>>> Joe >>>>>>>>=20 >>>>>>>>=20 >>>>>>>> On 8/22/11 3:09 PM, "Matei Zaharia" >>>>>>>> wrote: >>>>>>>>=20 >>>>>>>>> Are you using the master branch of Spark, or one of the = releases >>>>>>>>> (e.g. >>>>>>>>> 0.3)? The releases work with the pre-protobuf version of Mesos = but >>>>>>>>> the >>>>>>>>> master branch of Spark actually requires the master branch of >>>>>>>>> Mesos >>>>>>>>> now. >>>>>>>>> That could cause the kind of error you're seeing. >>>>>>>>>=20 >>>>>>>>> Matei >>>>>>>>>=20 >>>>>>>>> On Aug 22, 2011, at 3:06 PM, Joe Xie wrote: >>>>>>>>>=20 >>>>>>>>>> Sorry this should have been sent to user mail list. >>>>>>>>>>=20 >>>>>>>>>> On 8/22/11 2:19 PM, "Joe Xie" wrote: >>>>>>>>>>=20 >>>>>>>>>>> Hi there: >>>>>>>>>>>=20 >>>>>>>>>>> I has build and installed mesos (pre-protobuf branch for = spark) >>>>>>>>>>> and >>>>>>>>>>> spark, >>>>>>>>>>> and deployed them to a cluster. However, I have following = error >>>>>>>>>>> when >>>>>>>>>>> I >>>>>>>>>>> run >>>>>>>>>>> spark task on the mesos URL of my master, the spark task = runs >>>>>>>>>>> fine >>>>>>>>>>> in >>>>>>>>>>> local mode. Any suggestion or help? Thanks a lot! >>>>>>>>>>> Joe >>>>>>>>>>>=20 >>>>>>>>>>> My os: CentOS 5.2 >>>>>>>>>>> Python: 2.6 >>>>>>>>>>> Gcc: 4.2.1 >>>>>>>>>>> Swig:1.3.40 >>>>>>>>>>> ./run spark.examples.SparkPi mesos://1@xx.xx.xx.xx:5050 1 >>>>>>>>>>> 11/08/22 13:31:11 INFO spark.CacheTrackerActor: Registered = actor >>>>>>>>>>> on >>>>>>>>>>> port >>>>>>>>>>> 50501 >>>>>>>>>>> 11/08/22 13:31:11 INFO spark.MapOutputTrackerActor: = Registered >>>>>>>>>>> actor >>>>>>>>>>> on >>>>>>>>>>> port 50501 >>>>>>>>>>> 11/08/22 13:31:11 INFO spark.SparkContext: Starting job... >>>>>>>>>>> 11/08/22 13:31:11 INFO spark.CacheTracker: Registering RDD = ID 0 >>>>>>>>>>> with >>>>>>>>>>> cache >>>>>>>>>>> 11/08/22 13:31:11 INFO spark.CacheTrackerActor: Registering = RDD >>>>>>>>>>> 0 >>>>>>>>>>> with >>>>>>>>>>> 1 >>>>>>>>>>> partitions >>>>>>>>>>> 11/08/22 13:31:11 INFO spark.CacheTrackerActor: Asked for >>>>>>>>>>> current >>>>>>>>>>> cache >>>>>>>>>>> locations >>>>>>>>>>> 11/08/22 13:31:12 INFO spark.MesosScheduler: Final stage: = Stage >>>>>>>>>>> 0 >>>>>>>>>>> 11/08/22 13:31:12 INFO spark.MesosScheduler: Parents of = final >>>>>>>>>>> stage: >>>>>>>>>>> List() >>>>>>>>>>> 11/08/22 13:31:12 INFO spark.MesosScheduler: Missing = parents: >>>>>>>>>>> List() >>>>>>>>>>> 11/08/22 13:31:12 INFO spark.MesosScheduler: Submitting = Stage 0, >>>>>>>>>>> which >>>>>>>>>>> has >>>>>>>>>>> no missing parents >>>>>>>>>>> 11/08/22 13:31:12 INFO spark.MesosScheduler: Got a job with = 1 >>>>>>>>>>> tasks >>>>>>>>>>> Exception in thread "Spark scheduler" >>>>>>>>>>> java.lang.UnsatisfiedLinkError: >>>>>>>>>>> org.apache.mesos.MesosSchedulerDriver.initialize()V >>>>>>>>>>> at = org.apache.mesos.MesosSchedulerDriver.initialize(Native >>>>>>>>>>> Method) >>>>>>>>>>> at >>>>>>>>>>>=20 >>>>>>>>>>>=20 >>>>>>>>>>>=20 >>>>>>>>>>> = org.apache.mesos.MesosSchedulerDriver.(MesosSchedulerDriver >>>>>>>>>>> . >>>>>>>>>>> ja >>>>>>>>>>> v >>>>>>>>>>> a >>>>>>>>>>> :4 >>>>>>>>>>> 2) >>>>>>>>>>> at >>>>>>>>>>>=20 >>>>>>>>>>>=20 >>>>>>>>>>>=20 >>>>>>>>>>> = org.apache.mesos.MesosSchedulerDriver.(MesosSchedulerDriver >>>>>>>>>>> . >>>>>>>>>>> ja >>>>>>>>>>> v >>>>>>>>>>> a >>>>>>>>>>> :4 >>>>>>>>>>> 6) >>>>>>>>>>> at = spark.MesosScheduler$$anon$1.run(MesosScheduler.scala:94) >>>>>>>>>>>=20 >>>>>>>>>>> Sent to wrong address previously >>>>>>>>>>>=20 >>>>>>>>>>>=20 >>>>>>>>>>>>=20 >>>>>>>>>>>>=20 >>>>>>>>>>>> On 8/21/11 4:30 PM, "mesos-dev-help@incubator.apache.org" >>>>>>>>>>>> wrote: >>>>>>>>>>>>=20 >>>>>>>>>>>>> Hi! This is the ezmlm program. I'm managing the >>>>>>>>>>>>> mesos-dev@incubator.apache.org mailing list. >>>>>>>>>>>>>=20 >>>>>>>>>>>>> I'm working for my owner, who can be reached >>>>>>>>>>>>> at mesos-dev-owner@incubator.apache.org. >>>>>>>>>>>>>=20 >>>>>>>>>>>>> Acknowledgment: I have added the address >>>>>>>>>>>>>=20 >>>>>>>>>>>>> zhiyong@fb.com >>>>>>>>>>>>>=20 >>>>>>>>>>>>> to the mesos-dev mailing list. >>>>>>>>>>>>>=20 >>>>>>>>>>>>> Welcome to mesos-dev@incubator.apache.org! >>>>>>>>>>>>>=20 >>>>>>>>>>>>> Please save this message so that you know the address you = are >>>>>>>>>>>>> subscribed under, in case you later want to unsubscribe or >>>>>>>>>>>>> change >>>>>>>>>>>>> your >>>>>>>>>>>>> subscription address. >>>>>>>>>>>>>=20 >>>>>>>>>>>>>=20 >>>>>>>>>>>>> --- Administrative commands for the mesos-dev list --- >>>>>>>>>>>>>=20 >>>>>>>>>>>>> I can handle administrative requests automatically. Please >>>>>>>>>>>>> do not send them to the list address! Instead, send >>>>>>>>>>>>> your message to the correct command address: >>>>>>>>>>>>>=20 >>>>>>>>>>>>> To subscribe to the list, send a message to: >>>>>>>>>>>>> >>>>>>>>>>>>>=20 >>>>>>>>>>>>> To remove your address from the list, send a message to: >>>>>>>>>>>>> >>>>>>>>>>>>>=20 >>>>>>>>>>>>> Send mail to the following for info and FAQ for this list: >>>>>>>>>>>>> >>>>>>>>>>>>> >>>>>>>>>>>>>=20 >>>>>>>>>>>>> Similar addresses exist for the digest list: >>>>>>>>>>>>> >>>>>>>>>>>>> >>>>>>>>>>>>>=20 >>>>>>>>>>>>> To get messages 123 through 145 (a maximum of 100 per >>>>>>>>>>>>> request), >>>>>>>>>>>>> mail: >>>>>>>>>>>>> >>>>>>>>>>>>>=20 >>>>>>>>>>>>> To get an index with subject and author for messages = 123-456 , >>>>>>>>>>>>> mail: >>>>>>>>>>>>> >>>>>>>>>>>>>=20 >>>>>>>>>>>>> They are always returned as sets of 100, max 2000 per = request, >>>>>>>>>>>>> so you'll actually get 100-499. >>>>>>>>>>>>>=20 >>>>>>>>>>>>> To receive all messages with the same subject as message >>>>>>>>>>>>> 12345, >>>>>>>>>>>>> send a short message to: >>>>>>>>>>>>> >>>>>>>>>>>>>=20 >>>>>>>>>>>>> The messages should contain one line or word of text to = avoid >>>>>>>>>>>>> being >>>>>>>>>>>>> treated as sp@m, but I will ignore their content. >>>>>>>>>>>>> Only the ADDRESS you send to is important. >>>>>>>>>>>>>=20 >>>>>>>>>>>>> You can start a subscription for an alternate address, >>>>>>>>>>>>> for example "john@host.domain", just add a hyphen and your >>>>>>>>>>>>> address (with '=3D' instead of '@') after the command = word: >>>>>>>>>>>>> = >>>>>>>>>>>>>=20 >>>>>>>>>>>>> To stop subscription for this address, mail: >>>>>>>>>>>>> = >>>>>>>>>>>>>=20 >>>>>>>>>>>>> In both cases, I'll send a confirmation message to that >>>>>>>>>>>>> address. >>>>>>>>>>>>> When >>>>>>>>>>>>> you receive it, simply reply to it to complete your >>>>>>>>>>>>> subscription. >>>>>>>>>>>>>=20 >>>>>>>>>>>>> If despite following these instructions, you do not get = the >>>>>>>>>>>>> desired results, please contact my owner at >>>>>>>>>>>>> mesos-dev-owner@incubator.apache.org. Please be patient, = my >>>>>>>>>>>>> owner >>>>>>>>>>>>> is >>>>>>>>>>>>> a >>>>>>>>>>>>> lot slower than I am ;-) >>>>>>>>>>>>>=20 >>>>>>>>>>>>> --- Enclosed is a copy of the request I received. >>>>>>>>>>>>>=20 >>>>>>>>>>>>> Return-Path: >>>>>>>>>>>>> Received: (qmail 39962 invoked by uid 99); 21 Aug 2011 >>>>>>>>>>>>> 23:30:07 >>>>>>>>>>>>> -0000 >>>>>>>>>>>>> Received: from nike.apache.org (HELO nike.apache.org) >>>>>>>>>>>>> (192.87.106.230) >>>>>>>>>>>>> by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 21 Aug 2011 >>>>>>>>>>>>> 23:30:07 >>>>>>>>>>>>> +0000 >>>>>>>>>>>>> X-ASF-Spam-Status: No, hits=3D-0.0 required=3D5.0 >>>>>>>>>>>>> tests=3DSPF_PASS >>>>>>>>>>>>> X-Spam-Check-By: apache.org >>>>>>>>>>>>> Received-SPF: pass (nike.apache.org: domain of = zhiyong@fb.com >>>>>>>>>>>>> designates >>>>>>>>>>>>> 67.231.145.42 as permitted sender) >>>>>>>>>>>>> Received: from [67.231.145.42] (HELO >>>>>>>>>>>>> mx0a-00082601.pphosted.com) >>>>>>>>>>>>> (67.231.145.42) >>>>>>>>>>>>> by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 21 Aug 2011 >>>>>>>>>>>>> 23:30:00 >>>>>>>>>>>>> +0000 >>>>>>>>>>>>> Received: from pps.filterd (m0004348 [127.0.0.1]) >>>>>>>>>>>>> by m0004348.ppops.net (8.14.4/8.14.4) with SMTP id >>>>>>>>>>>>> p7LNTI6g015638 >>>>>>>>>>>>> for=20 >>>>>>>>>>>>>=20 >>>>>>>>>>>>>=20 >>>>>>>>>>>>>=20 >>>>>>>>>>>>> = >>>>>>>>>>>> c >>>>>>>>>>>>> ub >>>>>>>>>>>>> a >>>>>>>>>>>>> t >>>>>>>>>>>>> or >>>>>>>>>>>>> .a >>>>>>>>>>>>> p >>>>>>>>>>>>> a >>>>>>>>>>>>> che.org>; Sun, 21 Aug 2011 16:29:18 -0700 >>>>>>>>>>>>> Received: from mail.thefacebook.com = (corpout1.snc1.tfbnw.net >>>>>>>>>>>>> [66.220.144.38]) >>>>>>>>>>>>> by m0004348.ppops.net with ESMTP id yb5cerc88-2 >>>>>>>>>>>>> (version=3DTLSv1/SSLv3 cipher=3DAES128-SHA bits=3D128 = verify=3DNOT) >>>>>>>>>>>>> for=20 >>>>>>>>>>>>>=20 >>>>>>>>>>>>>=20 >>>>>>>>>>>>>=20 >>>>>>>>>>>>> = >>>>>>>>>>>> c >>>>>>>>>>>>> ub >>>>>>>>>>>>> a >>>>>>>>>>>>> t >>>>>>>>>>>>> or >>>>>>>>>>>>> .a >>>>>>>>>>>>> p >>>>>>>>>>>>> a >>>>>>>>>>>>> che.org>; Sun, 21 Aug 2011 16:29:18 -0700 >>>>>>>>>>>>> Received: from SC-MBX01-5.TheFacebook.com >>>>>>>>>>>>> ([fe80::f05e:c7f1:c7dd:e640]) >>>>>>>>>>>>> by >>>>>>>>>>>>> sc-hub04.TheFacebook.com ([192.168.18.212]) with mapi id >>>>>>>>>>>>> 14.01.0289.001; >>>>>>>>>>>>> Sun, >>>>>>>>>>>>> 21 Aug 2011 16:29:14 -0700 >>>>>>>>>>>>> From: Joe Xie >>>>>>>>>>>>> To: =20 >>>>>>>>>>>>>=20 >>>>>>>>>>>>>=20 >>>>>>>>>>>>>=20 >>>>>>>>>>>>> = "mesos-dev-sc.1313966607.anahdnaofbfbnfgijcem-zhiyong=3Dfb.com@in >>>>>>>>>>>>> c >>>>>>>>>>>>> ub >>>>>>>>>>>>> a >>>>>>>>>>>>> t >>>>>>>>>>>>> or >>>>>>>>>>>>> .a >>>>>>>>>>>>> p >>>>>>>>>>>>> a >>>>>>>>>>>>> che.org" >>>>>>>>>>>>>=20 >>>>>>>>>>>>>=20 >>>>>>>>>>>>>=20 >>>>>>>>>>>>> = >>>>>>>>>>>> n >>>>>>>>>>>>> cu >>>>>>>>>>>>> b >>>>>>>>>>>>> a >>>>>>>>>>>>> to >>>>>>>>>>>>> r. >>>>>>>>>>>>> a >>>>>>>>>>>>> p >>>>>>>>>>>>> ache.org> >>>>>>>>>>>>> Subject: Re: confirm subscribe to >>>>>>>>>>>>> mesos-dev@incubator.apache.org >>>>>>>>>>>>> Thread-Topic: confirm subscribe to >>>>>>>>>>>>> mesos-dev@incubator.apache.org >>>>>>>>>>>>> Thread-Index: AQHMYFO/ABVA64TXDkGEVkIetlsT6JUn85UA >>>>>>>>>>>>> Date: Sun, 21 Aug 2011 23:29:13 +0000 >>>>>>>>>>>>> Message-ID: >>>>>>>>>>>>> In-Reply-To: <1313966607.19992.ezmlm@incubator.apache.org> >>>>>>>>>>>>> Accept-Language: en-US >>>>>>>>>>>>> Content-Language: en-US >>>>>>>>>>>>> X-MS-Has-Attach: >>>>>>>>>>>>> X-MS-TNEF-Correlator: >>>>>>>>>>>>> x-originating-ip: [192.168.18.252] >>>>>>>>>>>>> Content-Type: text/plain; charset=3D"us-ascii" >>>>>>>>>>>>> Content-ID: >>>>>>>>>>>>> Content-Transfer-Encoding: quoted-printable >>>>>>>>>>>>> MIME-Version: 1.0 >>>>>>>>>>>>> X-Virus-Checked: Checked by ClamAV on apache.org >>>>>>>>>>>>>=20 >>>>>>>>>>>>> Thanks! >>>>>>>>>>>>> Joe >>>>>>>>>>>>> On 8/21/11 3:43 PM, "mesos-dev-help@incubator.apache.org" >>>>>>>>>>>>> wrote: >>>>>>>>>>>>>=20 >>>>>>>>>>>>>> Hi! This is the ezmlm program. I'm managing the >>>>>>>>>>>>>> mesos-dev@incubator.apache.org mailing list. >>>>>>>>>>>>>>=20 >>>>>>>>>>>>>> I'm working for my owner, who can be reached >>>>>>>>>>>>>> at mesos-dev-owner@incubator.apache.org. >>>>>>>>>>>>>>=20 >>>>>>>>>>>>>> To confirm that you would like >>>>>>>>>>>>>>=20 >>>>>>>>>>>>>> zhiyong@fb.com >>>>>>>>>>>>>>=20 >>>>>>>>>>>>>> added to the mesos-dev mailing list, please send >>>>>>>>>>>>>> a short reply to this address: >>>>>>>>>>>>>>=20 >>>>>>>>>>>>>> =3D20 >>>>>>>>>>>>>>=20 >>>>>>>>>>>>>>=20 >>>>>>>>>>>>>>=20 >>>>>>>>>>>>>> = mesos-dev-sc.1313966607.anahdnaofbfbnfgijcem-zhiyong=3D3Dfb.com@ >>>>>>>>>>>>>> i >>>>>>>>>>>>>> nc >>>>>>>>>>>>>> u >>>>>>>>>>>>>> b >>>>>>>>>>>>>> at >>>>>>>>>>>>>> or >>>>>>>>>>>>>> . >>>>>>>>>>>>>> a >>>>>>>>>>>>>> p=3D >>>>>>>>>>>>> ac >>>>>>>>>>>>>> he.org >>>>>>>>>>>>>>=20 >>>>>>>>>>>>>> Usually, this happens when you just hit the "reply" = button. >>>>>>>>>>>>>> If this does not work, simply copy the address and paste = it >>>>>>>>>>>>>> into >>>>>>>>>>>>>> the "To:" field of a new message. >>>>>>>>>>>>>>=20 >>>>>>>>>>>>>> or click here: >>>>>>>>>>>>>>=20 >>>>>>>>>>>>>>=20 >>>>>>>>>>>>>>=20 >>>>>>>>>>>>>> = mailto:mesos-dev-sc.1313966607.anahdnaofbfbnfgijcem-zhiyong=3D3 >>>>>>>>>>>>>> D >>>>>>>>>>>>>> fb >>>>>>>>>>>>>> . >>>>>>>>>>>>>> c >>>>>>>>>>>>>> om >>>>>>>>>>>>>> @i >>>>>>>>>>>>>> n >>>>>>>>>>>>>> c >>>>>>>>>>>>>> u=3D >>>>>>>>>>>>> ba >>>>>>>>>>>>>> tor.apache.org >>>>>>>>>>>>>>=20 >>>>>>>>>>>>>> This confirmation serves two purposes. First, it verifies >>>>>>>>>>>>>> that I >>>>>>>>>>>>>> am >>>>>>>>>>>>>> able >>>>>>>>>>>>>> to get mail through to you. Second, it protects you in = case >>>>>>>>>>>>>> someone >>>>>>>>>>>>>> forges a subscription request in your name. >>>>>>>>>>>>>>=20 >>>>>>>>>>>>>> Please note that ALL Apache dev- and user- mailing lists = are >>>>>>>>>>>>>> publicly >>>>>>>>>>>>>> archived. Do familiarize yourself with Apache's public >>>>>>>>>>>>>> archive >>>>>>>>>>>>>> policy >>>>>>>>>>>>>> at >>>>>>>>>>>>>>=20 >>>>>>>>>>>>>> http://www.apache.org/foundation/public-archives.html >>>>>>>>>>>>>>=20 >>>>>>>>>>>>>> prior to subscribing and posting messages to >>>>>>>>>>>>>> mesos-dev@incubator.apache.org. >>>>>>>>>>>>>> If you're not sure whether or not the policy applies to = this >>>>>>>>>>>>>> mailing >>>>>>>>>>>>>> list, >>>>>>>>>>>>>> assume it does unless the list name contains the word >>>>>>>>>>>>>> "private" >>>>>>>>>>>>>> in >>>>>>>>>>>>>> it. >>>>>>>>>>>>>>=20 >>>>>>>>>>>>>> Some mail programs are broken and cannot handle long >>>>>>>>>>>>>> addresses. >>>>>>>>>>>>>> If >>>>>>>>>>>>>> you >>>>>>>>>>>>>> cannot reply to this request, instead send a message to >>>>>>>>>>>>>> and put the >>>>>>>>>>>>>> entire address listed above into the "Subject:" line. >>>>>>>>>>>>>>=20 >>>>>>>>>>>>>>=20 >>>>>>>>>>>>>> --- Administrative commands for the mesos-dev list --- >>>>>>>>>>>>>>=20 >>>>>>>>>>>>>> I can handle administrative requests automatically. = Please >>>>>>>>>>>>>> do not send them to the list address! Instead, send >>>>>>>>>>>>>> your message to the correct command address: >>>>>>>>>>>>>>=20 >>>>>>>>>>>>>> To subscribe to the list, send a message to: >>>>>>>>>>>>>> >>>>>>>>>>>>>>=20 >>>>>>>>>>>>>> To remove your address from the list, send a message to: >>>>>>>>>>>>>> >>>>>>>>>>>>>>=20 >>>>>>>>>>>>>> Send mail to the following for info and FAQ for this = list: >>>>>>>>>>>>>> >>>>>>>>>>>>>> >>>>>>>>>>>>>>=20 >>>>>>>>>>>>>> Similar addresses exist for the digest list: >>>>>>>>>>>>>> >>>>>>>>>>>>>> >>>>>>>>>>>>>>=20 >>>>>>>>>>>>>> To get messages 123 through 145 (a maximum of 100 per >>>>>>>>>>>>>> request), >>>>>>>>>>>>>> mail: >>>>>>>>>>>>>> >>>>>>>>>>>>>>=20 >>>>>>>>>>>>>> To get an index with subject and author for messages = 123-456 >>>>>>>>>>>>>> , >>>>>>>>>>>>>> mail: >>>>>>>>>>>>>> >>>>>>>>>>>>>>=20 >>>>>>>>>>>>>> They are always returned as sets of 100, max 2000 per >>>>>>>>>>>>>> request, >>>>>>>>>>>>>> so you'll actually get 100-499. >>>>>>>>>>>>>>=20 >>>>>>>>>>>>>> To receive all messages with the same subject as message >>>>>>>>>>>>>> 12345, >>>>>>>>>>>>>> send a short message to: >>>>>>>>>>>>>> >>>>>>>>>>>>>>=20 >>>>>>>>>>>>>> The messages should contain one line or word of text to = avoid >>>>>>>>>>>>>> being >>>>>>>>>>>>>> treated as sp@m, but I will ignore their content. >>>>>>>>>>>>>> Only the ADDRESS you send to is important. >>>>>>>>>>>>>>=20 >>>>>>>>>>>>>> You can start a subscription for an alternate address, >>>>>>>>>>>>>> for example "john@host.domain", just add a hyphen and = your >>>>>>>>>>>>>> address (with '=3D3D' instead of '@') after the command = word: >>>>>>>>>>>>>> = >>>>>>>>>>>>>>=20 >>>>>>>>>>>>>> To stop subscription for this address, mail: >>>>>>>>>>>>>>=20 >>>>>>>>>>>>>> = >>>>>>>>>>>>>>=20 >>>>>>>>>>>>>>=20 >>>>>>>>>>>>>> In both cases, I'll send a confirmation message to that >>>>>>>>>>>>>> address. >>>>>>>>>>>>>> When >>>>>>>>>>>>>> you receive it, simply reply to it to complete your >>>>>>>>>>>>>> subscription. >>>>>>>>>>>>>>=20 >>>>>>>>>>>>>> If despite following these instructions, you do not get = the >>>>>>>>>>>>>> desired results, please contact my owner at >>>>>>>>>>>>>> mesos-dev-owner@incubator.apache.org. Please be patient, = my >>>>>>>>>>>>>> owner >>>>>>>>>>>>>> is a >>>>>>>>>>>>>> lot slower than I am ;-) >>>>>>>>>>>>>>=20 >>>>>>>>>>>>>> --- Enclosed is a copy of the request I received. >>>>>>>>>>>>>>=20 >>>>>>>>>>>>>> Return-Path: >>>>>>>>>>>>>> Received: (qmail 19986 invoked by uid 99); 21 Aug 2011 >>>>>>>>>>>>>> 22:43:26 >>>>>>>>>>>>>> -0000 >>>>>>>>>>>>>> Received: from athena.apache.org (HELO athena.apache.org) >>>>>>>>>>>>>> (140.211.11.136) >>>>>>>>>>>>>> by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 21 Aug 2011 >>>>>>>>>>>>>> 22:43:26 >>>>>>>>>>>>>> +0000 >>>>>>>>>>>>>> X-ASF-Spam-Status: No, hits=3D3D0.2 required=3D3D10.0 >>>>>>>>>>>>>> tests=3D3DASF_LIST_OPS,HTML_MESSAGE,SPF_PASS >>>>>>>>>>>>>> X-Spam-Check-By: apache.org >>>>>>>>>>>>>> Received-SPF: pass (athena.apache.org: domain of >>>>>>>>>>>>>> zhiyong@fb.com >>>>>>>>>>>>>> designates 67.231.145.42 as permitted sender) >>>>>>>>>>>>>> Received: from [67.231.145.42] (HELO >>>>>>>>>>>>>> mx0a-00082601.pphosted.com) >>>>>>>>>>>>>> (67.231.145.42) >>>>>>>>>>>>>> by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 21 Aug 2011 >>>>>>>>>>>>>> 22:43:19 >>>>>>>>>>>>>> +0000 >>>>>>>>>>>>>> Received: from pps.filterd (m0004347 [127.0.0.1]) >>>>>>>>>>>>>> by m0004347.ppops.net (8.14.4/8.14.4) with SMTP id >>>>>>>>>>>>>> p7LMcbSq017336 >>>>>>>>>>>>>> for ; Sun, 21 = Aug >>>>>>>>>>>>>> 2011 >>>>>>>>>>>>>> 15:42:58 -0700 >>>>>>>>>>>>>> Received: from mail.thefacebook.com = (corpout1.snc1.tfbnw.net >>>>>>>>>>>>>> [66.220.144.38]) >>>>>>>>>>>>>> by m0004347.ppops.net with ESMTP id yb0jhrkt9-1 >>>>>>>>>>>>>> (version=3D3DTLSv1/SSLv3 cipher=3D3DAES128-SHA = bits=3D3D128 >>>>>>>>>>>>>> verify=3D3DNOT) >>>>>>>>>>>>>> for ; Sun, 21 = Aug >>>>>>>>>>>>>> 2011 >>>>>>>>>>>>>> 15:42:58 -0700 >>>>>>>>>>>>>> Received: from SC-MBX01-5.TheFacebook.com >>>>>>>>>>>>>> ([fe80::f05e:c7f1:c7dd:e640]) >>>>>>>>>>>>>> by >>>>>>>>>>>>>> sc-hub03.TheFacebook.com ([192.168.18.198]) with mapi id >>>>>>>>>>>>>> 14.01.0289.001; >>>>>>>>>>>>>> Sun, >>>>>>>>>>>>>> 21 Aug 2011 15:42:53 -0700 >>>>>>>>>>>>>> From: Joe Xie >>>>>>>>>>>>>> To: "mesos-dev-subscribe@incubator.apache.org" >>>>>>>>>>>>>> >>>>>>>>>>>>>> Subject: can i join this >>>>>>>>>>>>>> Thread-Topic: can i join this >>>>>>>>>>>>>> Thread-Index: AQHMYFOp36obbNljKE2n3mexQg9sQQ=3D3D=3D3D >>>>>>>>>>>>>> Date: Sun, 21 Aug 2011 22:42:53 +0000 >>>>>>>>>>>>>> Message-ID: >>>>>>>>>>>>>> Accept-Language: en-US >>>>>>>>>>>>>> Content-Language: en-US >>>>>>>>>>>>>> X-MS-Has-Attach:=3D20 >>>>>>>>>>>>>> X-MS-TNEF-Correlator: >>>>>>>>>>>>>> x-originating-ip: [192.168.18.252] >>>>>>>>>>>>>> Content-Type: multipart/alternative; >>>>>>>>>>>>>> boundary=3D3D"_000_CA76D7F74256zhiyongfbcom_" >>>>>>>>>>>>>> MIME-Version: 1.0 >>>>>>>>>>>>>>=20 >>>>>>>>>>>>>> --_000_CA76D7F74256zhiyongfbcom_ >>>>>>>>>>>>>> Content-Type: text/plain; charset=3D3D"us-ascii" >>>>>>>>>>>>>> Content-Transfer-Encoding: quoted-printable >>>>>>>>>>>>>>=20 >>>>>>>>>>>>>> Best, >>>>>>>>>>>>>> Joe >>>>>>>>>>>>>>=20 >>>>>>>>>>>>>> --_000_CA76D7F74256zhiyongfbcom_ >>>>>>>>>>>>>> Content-Type: text/html; charset=3D3D"us-ascii" >>>>>>>>>>>>>> Content-ID: >>>>>>>>>>>>>> Content-Transfer-Encoding: quoted-printable >>>>>>>>>>>>>>=20 >>>>>>>>>>>>>> >>>>>>>>>>>>>> >>>>>>>>>>>>>> >>>>>>>>>>>>> charset=3D3D3Dus-ascii"=3D3D >>>>>>>>>>>>>>>=20 >>>>>>>>>>>>>> >>>>>>>>>>>>>> >>>>>>>>>>>>> space; >>>>>>>>>>>>>> -webkit-lin=3D3D >>>>>>>>>>>>>> e-break: after-white-space; color: rgb(0, 0, 0); = font-size: >>>>>>>>>>>>>> 14px; >>>>>>>>>>>>>> font-fami=3D3D >>>>>>>>>>>>>> ly: Calibri, sans-serif; "> >>>>>>>>>>>>>>
Best,
>>>>>>>>>>>>>>
Joe
>>>>>>>>>>>>>> >>>>>>>>>>>>>> >>>>>>>>>>>>>>=20 >>>>>>>>>>>>>> --_000_CA76D7F74256zhiyongfbcom_-- >>>>>>>>>>>>>=20 >>>>>>>>>>>>=20 >>>>>>>>>>>=20 >>>>>>>>>>=20 >>>>>>>>>=20 >>>>>>>>=20 >>>>>>>=20 >>>>>>=20 >>>>>=20 >>>>=20 >>>=20 >>=20 >=20