Re: Compute event at Twitter HQ - 03/31

2016-03-18 Thread haosdent
Would it have youtube live link? On Thu, Mar 17, 2016 at 12:38 AM, Ian Downes wrote: > Hello everyone, > > I'd like to call attention to an event the Compute group at Twitter is > holding at the end of the month where there will be a few > Aurora/Mesos-related talks: > > 1. David Robinson, one o

Re: [RESULT][VOTE] Release Apache Mesos 0.27.2 (rc1)

2016-03-18 Thread Joseph Wu
Cong Wang, The tags are sync'd. See: https://github.com/apache/mesos/releases You might not have done: git pull --tags On Wed, Mar 16, 2016 at 11:49 AM, Cong Wang wrote: > On Mon, Mar 7, 2016 at 8:29 PM, Michael Park wrote: > > Please find the release at: > > https://dist.apache.org/repos/di

Re: What are the invalid-user.log files?

2016-03-18 Thread haosdent
glog get the user name by environment variable "USER" in Linux. https://github.com/google/glog/blob/master/src/utilities.cc#L290-L302 I think you could check the environment variable "USER" before you start Mesos slave. On Fri, Mar 18, 2016 at 12:19 AM, haosdent wrote: > invalid-user is from glo

Re: [VOTE] Release Apache Mesos 0.24.2 (rc2)

2016-03-18 Thread Benjamin Mahler
+michael who is managing the release, he'll get back to you shortly, apologies for the delay! On Fri, Mar 11, 2016 at 11:35 AM, Evan Krall wrote: > I humbly request that the fixes for these issues are also included in > 0.24.2: > > https://issues.apache.org/jira/browse/MESOS-3738 > https://issue

Re: What are the invalid-user.log files?

2016-03-18 Thread Steven Schlansker
We are seeing the same thing, using Mesosphere .debs on Ubuntu: mesos-master.mesos1-qa-sf.invalid-user.log.WARNING.20160209-221625.12071 mesos-master.mesos1-qa-sf.invalid-user.log.WARNING.20160223-211310.1456 mesos-master.mesos1-qa-sf.invalid-user.log.WARNING.20160223-211857.5347 What if the fall

Re: How to kill tasks when memory exceeds the cgroup limit?

2016-03-18 Thread Benjamin Mahler
Interesting, why does it take down the slaves? Because a lot of organizations run with swap disabled (e.g. for more deterministic performance), we originally did not set the swap limit at all. When we introduced the '--cgroups_limit_swap' flag we had to make it default to false initially in case a

[RESULT][VOTE] Release Apache Mesos 0.28.0 (rc2)

2016-03-18 Thread Vinod Kone
Hi all, The vote for Mesos 0.28.0 (rc2) has passed with the following votes. +1 (Binding) -- Vinod Kone Michael Park Kapil Arya +1 (Non-binding) -- Greg Mann Daniel Osborne Jorg Schad Zhitao Li There were no 0 or -1 votes.

verbose logging with the docker executor

2016-03-18 Thread Clarke, Trevor
Looking in the docker executor, the docker command line is logged with VLOG(1) but I'm not sure how to generate that level of log output. Some googling suggests it's used in the google logging library and verbose logging would be enabled with something like --v=1 but that's not a valid mesos-sla

Re: Unstability on Mesos 0.27

2016-03-18 Thread Guillermo Rodriguez
Update to 0.27.2 or wait for 0.28.0. I experienced many crashes as well with 0.27.1 due to crashes in the frameworks bringing down the whole cluster (swarm specially). Also problems in the resource precision that also crashed the servers and crashes when nodes disconnected. I really found 0.

Re: Resource Isolation per Framework

2016-03-18 Thread haosdent
Seems common is not necessary in your case. The resources without role would share cross all frameworks. On Fri, Mar 18, 2016 at 9:43 PM, Pradeep Chhetri < pradeep.chhetr...@gmail.com> wrote: > Hello All, > > I am looking for ways to isolate resources per framework basis. Basically > what i want

Re: Vote on #MesosCon proposals, deadline Friday March 25

2016-03-18 Thread Jay JN Guo
Hi,   Thank you for this good work and I'm already looking forward to this MesosCon.   Although one minor suggestion here, Accept/Reject on a scale of 10 is a bit intimidating. Personally, I only have three feeling toward a topic: will go/maybe/not interested, whereas quantifying these feeling into

Vote on #MesosCon proposals, deadline Friday March 25

2016-03-18 Thread Kiersten Gaffney
Please take a few minutes the next few days and review what members of the community have submitted! Voting forms close Friday, March 25, 2016, 11:55 PST A total of 154 proposals were submitted in time for #MesosCon review, up significantly from 63 submitted for last year’s conference. Similar to

Re: What are the invalid-user.log files?

2016-03-18 Thread Pradeep Chhetri
I can see that USER environment variable is not set for mesos-slave process from /proc//environ. On Fri, Mar 18, 2016 at 2:19 PM, Pradeep Chhetri < pradeep.chhetr...@gmail.com> wrote: > My mesos cluster also produces logs > like mesos-slave.ip-172-31-45-33.invalid-user.log.ERROR. I guess log file

Re: What are the invalid-user.log files?

2016-03-18 Thread Pradeep Chhetri
My mesos cluster also produces logs like mesos-slave.ip-172-31-45-33.invalid-user.log.ERROR. I guess log file name shouldnt affect you all because generally you ship these logs in some centralized logging system like logstash/splunk and search there by tags On Fri, Mar 18, 2016 at 1:46 PM, Peter S

0.28.1

2016-03-18 Thread Jie Yu
Hi, We recently noticed two bugs in 0.28.0 related to the unified containerizer: Because of that, I propose we cut a point release (0.28.1) once these tw

Re: Unstability on Mesos 0.27

2016-03-18 Thread Klaus Ma
If Mesos daemon crashed, I'd suggest to log a JIRA and append more detail, e.g. steps, master/agent log. Da (Klaus), Ma (马达) | PMP® | Advisory Software Engineer Platform OpenSource Technology, STG, IBM GCG +86-10-8245 4084 | klaus1982...@gmail.com | http://k82.me On Thu, Mar 17, 2016 at 8:26

Re: What are the invalid-user.log files?

2016-03-18 Thread haosdent
According I test by systemctl. It didn't export $USER when start service. ``` [Unit] Description=test After=network.target [Service] ExecStart=/bin/env ExecStop=/bin/env [Install] WantedBy=multi-user.target ``` ``` $ systemctl status test.service Mar 19 01:45:24 localhost env[25754]: LANG=en_SG

Re: What are the invalid-user.log files?

2016-03-18 Thread Pradeep Chhetri
I installed mesos using mesosphere debian repository. On Fri, Mar 18, 2016 at 4:10 PM, haosdent wrote: > cool, you install mesos by deb or build it from source directly? > On Mar 19, 2016 12:06 AM, "Pradeep Chhetri" > wrote: > >> I think it is an upstart issue. I am noticing this issue in Ubunt