Re: Deactivationg framework unexpectly

2016-08-08 Thread Anindya Sinha
Looks like your framework (chronos) is sending a DeactivateFrameworkMessage message to the master. The scheduler driver would also send a DeativateFramework message if it is aborted (https://github.com/apache/mesos/blob/master/src/sched/sched.cpp#L1224

Support for shared resources

2016-07-07 Thread Anindya Sinha
Hi This is a followup/update to the work that has been going on for the support for shared resources. For reference, the epic is MESOS-3421 (https://issues.apache.org/jira/browse/MESOS-3421 ). Support for shared resources involves the

Re: Persistent volume ownership issue

2016-06-21 Thread Anindya Sinha
Currently the volume is owned by say framework user A when a CREATE is done. When a task is launched, the ownership of the volume is changed recursively to say user B, which means the root directory and all of its content has now ownership of user B. This enables user B to write into this

Re: How to tell master which ip to connect.

2015-10-28 Thread Anindya Sinha
On Tue, Oct 27, 2015 at 7:43 PM, Xiaodong Zhang wrote: > It works! Thanks a lot. > Ok. So we should expose advertise_ip and advertise_port as command line options for mesos-slave as well (instead of using the environment variables)? Opened