Re: Disk Resource Offer Control

2013-10-07 Thread Vinod Kone
Hey Phil. This was fixed in 0.12.1. I recommend upgrading to that or 0.13.0. @vinodkone On Mon, Oct 7, 2013 at 8:37 AM, Phil Siegrist wrote: > Hi Damien et al, > > This does not seem to exactly work: Let me explain. I'm on mesos 0.12.0 > > I've launched the slave with the following setting:

Re: Disk Resource Offer Control

2013-10-07 Thread Phil Siegrist
Hi Damien et al, This does not seem to exactly work: Let me explain. I'm on mesos 0.12.0 I've launched the slave with the following setting: --work_dir=/media/ephemeral0/tmp What this appears to have done is add the following symlink to /tmp mesos -> /media/ephemeral0/var/log/mesos-slaves Alt

Re: Bindings for other languages

2013-10-07 Thread Harry Wilkinson
Having thought about this a little more, since the code will need to be running on a server with Mesos running, I can probably treat this as a prerequisite, as long as the installed Mesos includes something that I can link to. Seems obvious in retrospect :o) On 6 October 2013 17:56, Harry Wilkin

Re: Ability to pass params to Task without TASK_LOST

2013-10-07 Thread Vinod Kone
Cool. LGTM. @vinodkone Sent from my mobile > On Oct 7, 2013, at 12:53 AM, Vladimir Vivien > wrote: > > @vinodkone > I was getting task rejection for the reasons you mentioned i think because I > was same ExecutorID chaning ExecutorInfo (Environment Vars were changing). I > changed the cod

Re: Ability to pass params to Task without TASK_LOST

2013-10-07 Thread Vladimir Vivien
@vinodkone I was getting task rejection for the reasons you mentioned i think because I was same ExecutorID chaning ExecutorInfo (Environment Vars were changing). I changed the code to the snippet below (hope formatting holds) . I am using setData() as you suggested. This works much better. Pro