Re: Review Request 14669: launchTasks on list of offers

2013-10-16 Thread Sam Taha
This enhancement, is implying it is currently possible for Mesos to deliver, to a single Framework, multiple Offers (with mutually exclusive resources) from the same slave? I am curious why mesos wouldn't merge these resource offers when it delivers the Offers to the Framework. This would seem eas

[jira] [Commented] (MESOS-744) Possibly move /docs/ folder out of Mesos core, into separate repo

2013-10-16 Thread Jake Farrell (JIRA)
[ https://issues.apache.org/jira/browse/MESOS-744?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13796754#comment-13796754 ] Jake Farrell commented on MESOS-744: sites using rendered content like described are on

RE: Review Request 14669: launchTasks on list of offers

2013-10-16 Thread Pranay Tonpay
Hi, I am new to this group, so wasn't sure about the protocol to ask this question... Is there in road map of Mesos to add something like Kerberos security ? Thx pranay -Original Message- From: Sam Taha [mailto:taha...@gmail.com] Sent: Wednesday, October 16, 2013 5:40 PM To: dev@mesos.a

[jira] [Commented] (MESOS-744) Possibly move /docs/ folder out of Mesos core, into separate repo

2013-10-16 Thread Chris A. Mattmann (JIRA)
[ https://issues.apache.org/jira/browse/MESOS-744?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13796827#comment-13796827 ] Chris A. Mattmann commented on MESOS-744: - guys check with the infra team but I'm f

Re: Review Request 14669: launchTasks on list of offers

2013-10-16 Thread Benjamin Hindman
Hi Sam, > This enhancement, is implying it is currently possible for Mesos to > deliver, to a single Framework, multiple Offers (with mutually exclusive > resources) from the same slave? A single collection of offers delivered to a framework via the Scheduler.resourceOffers callback will not inc

Re: Review Request 14669: launchTasks on list of offers

2013-10-16 Thread Benjamin Hindman
Hey Pranay, We've got SASL support so in theory we should easily be able to do Kerberos via the GSSAPI mechanism of SASL. We currently only "support" (i.e., have tested) shared secrets (the CRAM-MD5 mechanism). We currently have MESOS-418 in JIRA. This has acted as the "roadmap" for authentica

Re: Review Request 14669: launchTasks on list of offers

2013-10-16 Thread Sam Taha
Hi Ben, I see. i was mistakenly assuming that once a got a new set of offers (via Scheduler.resourceOffers) that the previous set of Offers would be automatically rescinded or essentially no longer valid for my framework to use. Currently my Frameworks processes one set of offers at a time (withou

Re: [VOTE][Result] Release Apache Mesos 0.14.0 (rc6)

2013-10-16 Thread Dave Lester
Awesome! I've updated the Mesos website to reflect the new release. On Tue, Oct 15, 2013 at 6:46 PM, Vinod Kone wrote: > Hi, > > I'm happy to announce the passing of 0.14.0 vote with 3 +1 binding votes, > no -1 and no 0 votes: > > +1: > Benjamin Hindman (binding) > Benjamin Mahler (binding) > D

[jira] [Assigned] (MESOS-664) Type resolution issue on 32 bit systems

2013-10-16 Thread Vinod Kone (JIRA)
[ https://issues.apache.org/jira/browse/MESOS-664?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Vinod Kone reassigned MESOS-664: Assignee: Vinod Kone > Type resolution issue on 32 bit systems > ---

[jira] [Resolved] (MESOS-664) Type resolution issue on 32 bit systems

2013-10-16 Thread Vinod Kone (JIRA)
[ https://issues.apache.org/jira/browse/MESOS-664?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Vinod Kone resolved MESOS-664. -- Resolution: Fixed Fix Version/s: 0.15.0 Assignee: Benjamin Mahler (was: Vinod Kone) Fix

Re: [VOTE][Result] Release Apache Mesos 0.14.0 (rc6)

2013-10-16 Thread Benjamin Mahler
We have been running 0.14.0 on production clusters at Twitter and have found a small number of bugs. As such, I will be sending out a VOTE on a 0.14.1 release that will be based off of the 0.14.1-rc1 tag. The most important of these bugs are: MESOS-662: When running Mesos with cgroups memory enfo

Newbie question

2013-10-16 Thread Rawat
Hello there, I have been browsing Mesos for last few days. I have a simple question. I am running Mesos with Zookeeper. I am starting my Mesos server like this ./bin/mesos-master.sh --zk=server1:port;server2:port;server3:port It looks like mesos start, but why does it say "Waiting to be master"

Re: Newbie question

2013-10-16 Thread Benjamin Hindman
Hey Rawat, It's a bit arcane but you need to specify the ZooKeeper string like: ' zk://server1:port;server2:port;server3:port/path/to/port'. For example: mesos-master --zk=zk://host1:port1,host2:port2/path/to/mesos Hope that helps. Ben. On Wed, Oct 16, 2013 at 12:59 PM, Rawat wrote: > Hello

Re: Newbie question

2013-10-16 Thread Rawat
Okay. Sorry for the type in my command. It got fixed when i used the correct command params ./bin/mesos-master.sh --zk=zk://server1:2181,server2:2181,server3:2181/mesos But i still wonder what would be a corresponding stop command On Wed, Oct 16, 2013 at 12:59 PM, Rawat wrote: > Hello ther

Re: Newbie question

2013-10-16 Thread Benjamin Hindman
There isn't a corresponding stop command, you can just kill the process. We wanted to support running multiple masters and slaves on the same machine (at least for development) which makes it hard to know which master to "stop" if there was such a command. Plus, the operating system already provide

Re: Newbie question

2013-10-16 Thread Rawat
I am using kill in the mean time, but it kind of makes it hard to automate little bit. Is there a script that launches the mesos as daemon ? I understand that i can easily write one, but would be nice if there is one that already exists :-) On Wed, Oct 16, 2013 at 1:22 PM, Benjamin Hindman wrot

Re: Newbie question

2013-10-16 Thread Rawat
I guess i will just live with "> /dev/null 2>&1 &" for now. On Wed, Oct 16, 2013 at 1:34 PM, Rawat wrote: > I am using kill in the mean time, but it kind of makes it hard to automate > little bit. Is there a script that launches the mesos as daemon ? I > understand that i can easily write on

Re: Newbie question

2013-10-16 Thread Benjamin Hindman
There are some "deploy" scripts in src/deploy (or build/src/deploy) that might be helpful! On Wed, Oct 16, 2013 at 1:34 PM, Rawat wrote: > I am using kill in the mean time, but it kind of makes it hard to automate > little bit. Is there a script that launches the mesos as daemon ? I > understan

[VOTE] Release Apache Mesos 0.14.1 (rc1)

2013-10-16 Thread Benjamin Mahler
Hi all, Please vote on releasing the following candidate as Apache Mesos version 0.14.1. 0.14.1 is a bug fix release that includes fixes for a small number of bugs found while running 0.14.0 in production at Twitter

Review Request 14686: Catch-up Replicated Log 2: Fixed a Race Condition Caused by Passing Process Wrapper Pointers.

2013-10-16 Thread Jie Yu
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/14686/ --- Review request for mesos, Benjamin Hindman, Ben Mahler, and Vinod Kone. Reposit

[jira] [Commented] (MESOS-736) Support catch-up replicated log

2013-10-16 Thread Jie Yu (JIRA)
[ https://issues.apache.org/jira/browse/MESOS-736?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13797326#comment-13797326 ] Jie Yu commented on MESOS-736: -- Second patch: https://reviews.apache.org/r/14686/ > Support c

Re: Review Request 14669: launchTasks on list of offers

2013-10-16 Thread Vinod Kone
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/14669/#review27071 --- include/mesos/scheduler.hpp

Re: [VOTE] Release Apache Mesos 0.14.1 (rc1)

2013-10-16 Thread Vinod Kone
+1 (binding) Tested on Ubuntu 12.04 64-bit. On Wed, Oct 16, 2013 at 2:11 PM, Benjamin Mahler wrote: > Hi all, > > Please vote on releasing the following candidate as Apache Mesos version > 0.14.1. > > > > > 0.14.1

Re: Review Request 14686: Catch-up Replicated Log 2: Fixed a Race Condition Caused by Passing Process Wrapper Pointers.

2013-10-16 Thread Jie Yu
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/14686/ --- (Updated Oct. 17, 2013, 12:11 a.m.) Review request for mesos, Benjamin Hindman,

Review Request 14706: Fixed mesos.pom to work from inside the build directory.

2013-10-16 Thread Ben Mahler
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/14706/ --- Review request for mesos and Vinod Kone. Repository: mesos-git Description --

Re: Review Request 14662: Added os::utime() to update access/modification times.

2013-10-16 Thread Ben Mahler
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/14662/#review27109 --- Ship it! No tests? ;) 3rdparty/libprocess/3rdparty/stout/include/