Re: Mesos & docker

2018-01-02 Thread Mauricio Garavaglia
On Sun, Dec 31, 2017 at 12:10 PM, Sameer Rahmani wrote: > Hi all. > > I have two questions: > > 1) Is it recommended to install mesos using docker ( mesos running inside > a container ) ? > It works ok > > 2) If yes, Can I still use the docker agent ? is there any

Re: Can Marathon ensure single instance of a service at any give time?

2016-02-24 Thread Mauricio Garavaglia
Right, Marathon can't provide uniqueness guarantees. As you said, network partitions are really common in distributed systems and shouldn't be considered edge cases. On Wed, Feb 24, 2016 at 8:49 AM, Petr Novak wrote: > Thanks everybody for the great input. If I understand

health checks and the command executor

2016-02-21 Thread Mauricio Garavaglia
Hi guys, What's the current status of using health checks with the command executor? I'm interested in using some sort of health checking with docker containers running with the command executor. I only found several issues saying it doesn't work but not sure what's the status today. Thanks

Re: AW: Feature request: move in-flight containers w/o stopping them

2016-02-19 Thread Mauricio Garavaglia
Mesos is not only about running stateless microservices to handle http requests. There are long duration workloads that would benefit from being rescheduled to a different host and not being interrupted; i.e. to implement dynamic bin packing in the cluster. The networking issues has been proved

Re: mesos-slave recover strategy

2016-01-19 Thread Mauricio Garavaglia
h the master or times > out, TASK_LOST is sent to the framework. > > @vinodkone > > > On Jan 19, 2016, at 6:46 AM, Mauricio Garavaglia < > mauriciogaravag...@gmail.com> wrote: > > > > Hi, > > In the case of the --recover=cleanup option, acording to the docs

Re: what's the best way to monitor mesos cluster

2015-11-11 Thread Mauricio Garavaglia
+1 for the collectd plugin On Wed, Nov 11, 2015 at 7:31 AM, tommy xiao wrote: > we build a (goalng client)app service to grab the snapshot json > > 2015-11-11 14:59 GMT+08:00 Du, Fan : > >> Hi Mesos experts >> >> There is server and client snapshot metrics in

manage jobs log files in sandboxes

2015-11-05 Thread Mauricio Garavaglia
Hi guys, How can I manage the stdout/err log files generated by jobs in mesos? for long running docker apps launched using marathon the log files can deplete the disk of an agent, and using quotas makes the jobs to be killed which is also not ideal. I'd like to have a way to rotate them. Is it

Re: manage jobs log files in sandboxes

2015-11-05 Thread Mauricio Garavaglia
anks. Cordially, Paul > On Nov 5, 2015, at 9:40 PM, Mauricio Garavaglia < mauriciogaravag...@gmail.com> wrote: > > Hi guys, > > How can I manage the stdout/err log files generated by jobs in mesos? for long running docker apps launched using marathon the log files can dep

Tasks not shown in "Completed Tasks" after agent reinstall.

2015-10-02 Thread Mauricio Garavaglia
Hi guys, If I remove the workdir (/var/lib/mesos) entries in the agents, does it mean I lost the "Completed Tasks" view in the masters dashboard? I'm debugging a case in which some agent nodes got recreated from scratch and the tasks that they ran disappeared from the dashboard. Thanks,

RE: Custom docker executor

2015-08-09 Thread Mauricio Garavaglia
The community has been contributing hooks that can be performed pre and post container launch, so like to see what your use cases are Hi, I'm interested on configuring iptables rules in the host after/before running my container in Mesos. Where can I find more information about this hooks? Thank