Re: [VOTE] Release Apache Mesos 1.1.0 (rc3)

2016-11-07 Thread Evers Benno
+1 (non-binding) Built and installed on Ubuntu 10.04 + 14.04 Configured with --disable-java --enable-python --disable-bundled-pip --disable-python-dependency-install On 04.11.2016 14:15, Till Toenshoff wrote: > Hi all, > > Please vote on releasing the following candidate as Apache Mesos 1.1.0.

Re: [E] Re: Require GCC >= 4.9

2016-10-11 Thread Evers Benno
d stout that they were never set. > Good point about trusty not including gcc 4.9. Do you think it would be > acceptable to instruct people to take it from the toolchain PPA? > https://wiki.ubuntu.com/ToolChain#PPA_packages > > Thanks, > Aaron > > On 10/10/16, 2:18 PM, "E

Re: Require GCC >= 4.9

2016-10-10 Thread Evers Benno
Hi, I think this would break the build on ubuntu trusty, the latest natively available version there is 4.8.2 Also, glancing at your review, I feel like `-Wall -Werror` is somewhat of an anti-pattern, it just seems to guarantee that the build will break whenever the compiler writers decide to add

Re: Design Document for IPv6 support

2016-09-30 Thread Evers Benno
; for dual stack Mesos (possibly --ip and --ip6 both would be allowed), and > more importantly what would be the interaction between Mesos v6 masters, > with Mesos v4 clients or vice versa, would be really helpful. > > On Fri, Sep 23, 2016 at 7:41 AM, Evers Benno <ben...@yandex-

Re: Registering and framework failover

2016-07-14 Thread Evers Benno
MESOS-4548 > https://issues.apache.org/jira/browse/MESOS-5322 > > Neil > > > On Wed, Jul 13, 2016 at 3:27 PM, Evers Benno <ben...@yandex-team.ru> wrote: >> Let me try to clarify: >> >> The problem is that I don't get to decide manually if the framwork >&g

Re: Registering and framework failover

2016-07-13 Thread Evers Benno
) On 13.07.2016 14:50, Neil Conway wrote: > On Wed, Jul 13, 2016 at 2:44 PM, Evers Benno <ben...@yandex-team.ru> wrote: >> imagine the following situation: I am a framework with failover timeout >> of 1 hour, and 59 minutes and 55 seconds after shutting down I want to >> reg

Registering and framework failover

2016-07-13 Thread Evers Benno
Hi all, imagine the following situation: I am a framework with failover timeout of 1 hour, and 59 minutes and 55 seconds after shutting down I want to register with the master again. If my registration attempt arrives at the master within the time limit everything will be fine and I even get

Re: WebUI authentication in 1.0.0-rc1

2016-06-10 Thread Evers Benno
Sure, it looks like this, not very imaginative. There is currently no authorization on the agents. { "permissive": false, [...] // Here is the previous ACL with actions "run_tasks" and "register_frameworks" "get_endpoints": [ {

Re: WebUI authentication in 1.0.0-rc1

2016-06-06 Thread Evers Benno
gt; > On 3 June 2016 at 12:36, Evers Benno <ben...@yandex-team.ru> wrote: > >> >> I just tried building and running the 1.0.0-rc1, and it seems that the >> web UI is broken due to /metrics/snapshot returning a 403. (There's a >> popup continously displaying &qu

WebUI authentication in 1.0.0-rc1

2016-06-03 Thread Evers Benno
I just tried building and running the 1.0.0-rc1, and it seems that the web UI is broken due to /metrics/snapshot returning a 403. (There's a popup continously displaying "Failed to connect to mesos-master.example.org:5050!" I'm running mesos-master with options `--no-authenticate_http

Re: Documentation about debugging mesos-master : newbie

2016-06-03 Thread Evers Benno
A random guess, but gdb tends to load shared libraries only after you do "run" for the first time, maybe that's what's missing? Apart from this, after installation mesos is just a normal c++ binary, so you could bypass libtool by installing in some custom prefix (not sure how to do this on mac)

Re: Status acknowledgements in MesosExecutor

2016-06-01 Thread Evers Benno
on executor shutdown. It would be great if someone would like to shepherd this. Best regards, Benno On 03.05.2016 14:49, Evers Benno wrote: > Hi, > > I was wondering about the semantics of the Executor::sendStatusUpdate() > method. It is described as > > // Sen

Re: Status acknowledgements in MesosExecutor

2016-05-03 Thread Evers Benno
no— > > you may be seeing MESOS-4111 > <https://issues.apache.org/jira/browse/MESOS-4111>. Also, have a > look at this comment: > https://github.com/apache/mesos/blob/9f472b1eff904d0d96063d3bed535a8e81263d69/src/launcher/executor.cpp#L611-L617 > > > On Tue, May 3, 2

IPv6 progress / Default listening socket

2016-02-09 Thread Evers Benno
Hi all, sorry in advance for the wall of text below :) I went ahead and implemented a proof-of-concept, and things seem to work quite well so far: I have a mesos-master and a mesos-slave on different machines in an IPv6-only network, and I'm able run RENDLER jobs on them. The one unexpected

Contributor request

2016-02-03 Thread Evers Benno
Hi, can you please add me as a contributor in JIRA? My username is "bennoe". Thanks, Benno

Re: Install some 3rdparty packages needed for building Mesos modules

2016-02-02 Thread Evers Benno
I just wanted to note that there are some existing packages doing this already. For example the thunderbird-dev package on ubuntu (>= trusty) has several private library headers in e.g. /usr/include/thunderbird/gmock or /usr/include/thunderbird/google/protobuf On 27.01.2016 16:28, Kapil Arya

Some initial thoughts on IPv6

2016-01-31 Thread Evers Benno
Hi all, after looking through the mesos source code for a while, here are some of my initial thoughts. There seem to be at least two issues that can be tackled separately: - Communication between mesos daemons over the network - Communication in and out of containers when using network

IPv6 support in Mesos

2016-01-25 Thread Evers Benno
Hello all, We are currently planning to deploy a mesos cluster for internal use in Yandex.Maps. Since the ability to work on IPv6-only hosts is necessary for us, we are planning to start working on the necessary patches in the coming weeks, and to contribute our progress. Work towards full