Re: Mesos cluster across a wide area network

2016-12-02 Thread Alexander Gallego
its own professional advisors, including those specializing in > legal, tax and accounting matters. Orchard does not provide legal, tax or > accounting advice. > -- Alexander Gallego Co-Founder & CTO

Authentication module

2016-12-02 Thread Alexander Gallego
For the authentication module: http://mesos.apache.org/documentation/latest/modules/ does it mean kerberos,ldap, etc for tasks or for framework registration or for machine registration are there any more docs on this?

Re: Initial Design Document Apache Mesos Federation (JIRA 3548)

2016-07-14 Thread Alexander Gallego
Ultimately DC federation is a hard problem to solve. We have plenty of > use cases which is why we wanted to reach out to the community, share our > experience and build something that is useful for all of us. > > Thanks !! excited about this work. > Regards, > Dhilip > >

Re: Initial Design Document Apache Mesos Federation (JIRA 3548)

2016-07-13 Thread Alexander Gallego
t; with you in the implementation. > > Regards, > Dhilip > > > Reference: > JIRA: https://issues.apache.org/jira/browse/MESOS-3548 > Slides: > http://www.slideshare.net/mKrishnaKumar1/federated-mesos-clusters-for-global-data-center-designs > Video : > https://www.youtube.com/watch?v=kqyVQzwwD5E=17=PLGeM09tlguZQVL7ZsfNMffX9h1rGNVqnC > > -- Alexander Gallego Co-Founder & CTO

How to get the web_ui to use --advertise_ip from the slaves

2016-04-14 Thread Alexander Gallego
Hello, I'm trying to get the web_ui to use the --advertise_ip to connect to master's instead of the --hostname passed into the slaves. running mesos 28 slaves run with a command like this: mesos-slave --master=zk://xxx/mesos --advertise_ip=y.y.y.y --containerizers=docker,mesos

Re: ERROR while installing mesos

2015-10-29 Thread Alexander Gallego
Did you add any ./configure flags? On Thu, Oct 29, 2015 at 3:04 AM, Sharma, Showvik wrote: > Hi, > > > > While installing mesos, first I configured mesos-0.25.0. Everything was > perfectly fine. > > But while doing make I am getting below error. > > > > > > /bin/sh

Re: Building portable binaries

2015-09-17 Thread Alexander Gallego
Also, do you do a `make install` > and then package up the contents? > > Cheers! > > > On 18/09/2015 10:06 AM, Alexander Gallego wrote: > > I run a custom build of mesos and it works pretty reliably, so I'll try to > share what I do in the hopes that it helps you. > &

Re: Building portable binaries

2015-09-17 Thread Alexander Gallego
mesosphere/hdfs/issues/194 > > Is there a definite way to build portable binaries that I can easily copy > to another machine to run? > -- Alexander Gallego | http://concord.io

Re: Build mesos failed when trying to dynamically linked against libgflags and libglog.

2015-09-09 Thread Alexander Gallego
This is my configure step inside my ansible script for building mesos: - name: configure mesos shell: "LIBS=-lglog LDFLAGS=-L/usr/local/lib /{{mesos_dir}}/configure --with-glog=/usr/local" Basically when you configure it, pass it the --with-* flags. On Wed, Sep 9, 2015 at 9:07

Re: MesosCon Seattle attendee introduction thread

2015-08-17 Thread Alexander Gallego
Hi, I'm Alex, I'm working on a distributed stream processor in c++ (concord.io). Looking forward to connecting with all of you. Would be great to meet with people doing large cluster load testing on mesos :) I'll be at the hackathon with some coworkers as well. On Mon, Aug 17, 2015 at 1:48

Re: High latency when scheduling and executing many tiny tasks.

2015-07-17 Thread Alexander Gallego
I use a similar pattern. I have my own scheduler as you have. I deploy my own executor which downloads a tar from some storage and effectively ` execvp ( ... ) ` a proc. It monitors the child proc and reports status of child pid exit status. Check out the Marathon code if you are writing in

Re: High latency when scheduling and executing many tiny tasks.

2015-07-17 Thread Alexander Gallego
(), argv); } Sorry for the missinformation about the executor in Marathon. On Fri, Jul 17, 2015 at 5:20 PM, Philip Weaver philip.wea...@gmail.com wrote: Ok, thanks! On Fri, Jul 17, 2015 at 2:18 PM, Alexander Gallego agall...@concord.io wrote: I use a similar pattern. I have my own

Re: Threading model of mesos API (C++)

2015-06-10 Thread Alexander Gallego
Jim, Let me prototype something small today. After reading my scheduler (in c++) i do have comments and synchronization on some state vars, but it might have to do with a more complex async code base I manage. I'll get back to you. - alex On Wed, Jun 10, 2015 at 6:15 AM, James Vanns

Re: Threading model of mesos API (C++)

2015-06-09 Thread Alexander Gallego
Jim, You do need to do your own synchronization. It's basically possible for ANY callback to call your code in any order. The API does not guarantee ordering. For example, say you launch a task, before the method returns (say you do some blocking stuff after, like sync update zookeeper), you

Re: Difficulties building mesos-21.1-rc2 {rc1, .1 , .0}. Linux

2015-02-05 Thread Alexander Gallego
requires the module and mesos use the same version of dependent libraries in many cases. On Wed, Feb 4, 2015 at 5:26 PM, Alexander Gallego agall...@rbonut.com wrote: In fact, I took the one from inside mesos (didn't apply the .patch file though), but other libs depend on it, that don't depend

Difficulties building mesos-21.1-rc2 {rc1, .1 , .0}. Linux

2015-02-04 Thread Alexander Gallego
I wanted to post configuration formatted, so gisted my issue. Thank you in advance. https://gist.github.com/senior7515/bc1a03edcbbe9b7cd7bf Not sure if I should inline the question too. Tips appreciated. -ag Sincerely, Alexander Gallego

Re: Difficulties building mesos-21.1-rc2 {rc1, .1 , .0}. Linux

2015-02-04 Thread Alexander Gallego
Ian, Thanks for taking a look. I am running 0.3.3 (latest i think) Sincerely, Alexander Gallego On Wed, Feb 4, 2015 at 8:09 PM, Ian Downes idow...@twitter.com wrote: What version of glog are you trying to us? It appears the CheckOpMessageBuilder class was introduced in 0.3.3 http

Re: Difficulties building mesos-21.1-rc2 {rc1, .1 , .0}. Linux

2015-02-04 Thread Alexander Gallego
/local \ --with-curl=/usr/local \ --with-zookeeper=/usr/local \ --enable-optimize Attached is my Makefile (./configure generates) the error log (glog mentioned in my earlier gist) Thanks! Sincerely, Alexander Gallego On Wed, Feb 4, 2015 at 4:28 PM, Alexander Gallego

Re: Difficulties building mesos-21.1-rc2 {rc1, .1 , .0}. Linux

2015-02-04 Thread Alexander Gallego
In fact, I took the one from inside mesos (didn't apply the .patch file though), but other libs depend on it, that don't depend on mesos (i.e. fbthrif ) Sincerely, Alexander Gallego On Wed, Feb 4, 2015 at 8:24 PM, Alexander Gallego agall...@rbonut.com wrote: Ian, Thanks for taking a look

Difficulties building libmesos.so

2014-06-07 Thread Alexander Gallego
libmesos.so in their projects successfully? (either remove their versions of the lib and be forced to use libmesos.so or ...?) Kindly let me know if I can provide clarification. Thanks in advance for reading. -Alex Sincerely, Alexander Gallego ---*--- --* * * *