Re: Experimentation harnesses?

2016-02-22 Thread Niklas Nielsen
Hi Michael, We are working on this in context of generating workloads (with many different combinations of latency critical workloads co-located with best-effort ones) and testing scenarios for oversubscription and would love to chat Cheers, Niklas On Mon, Feb 22, 2016 at 4:14 PM, James Peach

Re: Mesos supports to get the available total resource per-roles ?

2016-02-22 Thread Klaus Ma
So I think you need to calculate it from `/master/state`; `/master/state` has provided the reserved resources per-slave per-role. Da (Klaus), Ma (马达) | PMP® | Advisory Software Engineer Platform OpenSource Technology, STG, IBM GCG +86-10-8245 4084 | klaus1982...@gmail.com | http://k82.me

Design doc of isolator for Container Network Interface (CNI)

2016-02-22 Thread Qian Zhang
Hi Folks, We are currently working on MESOS-4641 to implement a network isolator to support Container Network Interface (CNI), here is the draft design doc: https://docs.google.com/document/d/1FFZwPHPZqS17cRQvsbbWyQbZpwIoHFR_N6AAApRv514/edit?usp=sharing Please feel free to post your review

Re: Mesos supports to get the available total resource per-roles ?

2016-02-22 Thread 陈强
@Klaus, The total resources reserved by this role I think. . On 2016年02月22日 19:33, Klaus Ma wrote: @陈强,How do you define the "total resources"? All resources of frameworks in the same role, the deserved resources of role it should get, or the total resources reserved by this role? Da

Re: Experimentation harnesses?

2016-02-22 Thread James Peach
> On Feb 22, 2016, at 11:57 AM, Michael Browning wrote: > > Hi all, > > I was curious if anyone with an active Mesos deployment knows of, has used, > or has developed a harness for integration and exploratory testing against > your installations. The sort of

[RESULT][VOTE] Release Apache Mesos 0.27.1 (rc1)

2016-02-22 Thread Michael Park
Hi all, The vote for Mesos 0.27.1 (rc1) has passed with the following votes. +1 (Binding) -- Bernd Mathiske Joris Van Remoortere Vinod Kone +1 (Non-binding) -- Zhitao Li Jörg Schad There were no 0 or -1 votes. Please find the release at:

Experimentation harnesses?

2016-02-22 Thread Michael Browning
Hi all, I was curious if anyone with an active Mesos deployment knows of, has used, or has developed a harness for integration and exploratory testing against your installations. The sort of capabilities I'm after include: - Sufficient flexibility to allow the launch of multiple frameworks in

[proposal] Generalized Authorized Interface

2016-02-22 Thread Alexander Rojas
Hey guys, After some extra thought, we came to what we think is a nice interface for the Mesos authorizer [1] which will allow users of Mesos to use to your custom backends in a nice way. Please share your thoughts with us in case we missed something or there are improvements we can make to

Re: Extend PerfEventIsolator to support all possible Perf Events.

2016-02-22 Thread haosdent
+1 For your patch! On Mon, Feb 22, 2016 at 9:03 PM, Bartłomiej Płotka wrote: > Hi, > > We want to introduce the support in PerfEventIsolator for all possible* > perf events*. > I'd love to have some feedback here! (: > > Please see JIRA issue for details: >

Extend PerfEventIsolator to support all possible Perf Events.

2016-02-22 Thread Bartłomiej Płotka
Hi, We want to introduce the support in PerfEventIsolator for all possible* perf events*. I'd love to have some feedback here! (: Please see JIRA issue for details: https://issues.apache.org/jira/browse/MESOS-4595 Patch: https://reviews.apache.org/r/43358/ Kind Regards, Bartlomiej Plotka

Re: I want to a contributor

2016-02-22 Thread Till Toenshoff
Hi Kreats, I have added you to the list of contributors in our JIRA - welcome to Mesos! best, Till > On Feb 22, 2016, at 10:05 AM, 周想想 wrote: > > Hi: > I’m a c++ programmer, and I want to be a contributor of mesos. > > Mesos is a great project, we have used

Re: Mesos supports to get the available total resource per-roles ?

2016-02-22 Thread Klaus Ma
@陈强,How do you define the "total resources"? All resources of frameworks in the same role, the deserved resources of role it should get, or the total resources reserved by this role? Da (Klaus), Ma (马达) | PMP® | Advisory Software Engineer Platform OpenSource Technology, STG, IBM GCG

Re: Mesos supports to get the available total resource per-roles ?

2016-02-22 Thread Guangya Liu
Does /master/state endpoint help? This can get all resources per-role in the cluster, including total, used, reserved etc per role. *"reserved_resources"*: { *"r2"*: { *"mem"*: 0, *"disk"*: 0, *"cpus"*: 8 }, *"r1"*: { *"mem"*:

Re: Mesos supports to get the available total resource per-roles ?

2016-02-22 Thread Yongqiao Wang
Yes, it shows the allocated resources(Used resources + offered resources) for the role, you can check the code for the details: master.hpp: // Information about an active role. struct Role { .. Resources resources() const { Resources resources; foreachvalue

Re: Mesos supports to get the available total resource per-roles ?

2016-02-22 Thread 陈强
Currently, no endpoint in Mesos can show the available total resource for each role, /roles endpoint now can only show the information about every role that is on the role whitelist (enabled by --roles flag), has one or more registered frameworks, or has a non-default weight or quota. For

Re: Mesos supports to get the available total resource per-roles ?

2016-02-22 Thread Yongqiao Wang
In addition, currently we plan to enhance the role-related endpoint in JIRA #MESOS-4213, if you have some use cases or requirements, you can append them there. Thanks! -- Regards! Grady YQ. Wang?? --

Re: Mesos supports to get the available total resource per-roles ?

2016-02-22 Thread 陈强
the "/roles" reports the "used resource" rather than the "available resource", and the "available resource" doesn't mean "total mesos cluster resource" minus "used resource", it should be "total mesos cluster resource per every roles" minus "the used resource", I think. So, there anyway to get

Re: Mesos supports to get the available total resource per-roles ?

2016-02-22 Thread Yongqiao Wang
Currently, no endpoint in Mesos can show the available total resource for each role, /roles endpoint now can only show the information about every role that is on the role whitelist (enabled by --roles flag), has one or more registered frameworks, or has a non-default weight or quota. For each

Re: Mesos supports to get the available total resource per-roles ?

2016-02-22 Thread haosdent
Oh, sorry. Should be /master/roles endpoint. On Mon, Feb 22, 2016 at 5:17 PM, haosdent wrote: > Hi, I think master state endpoint have already contain this. > > On Mon, Feb 22, 2016 at 5:11 PM, 陈强 wrote: > >> Hi all, >> >> Does Mesos support to get the

Re: Mesos supports to get the available total resource per-roles ?

2016-02-22 Thread haosdent
Hi, I think master state endpoint have already contain this. On Mon, Feb 22, 2016 at 5:11 PM, 陈强 wrote: > Hi all, > > Does Mesos support to get the available total resource for every roles > now? if don't, who are focusing on this? thanks. > > -- > > Best Regards, >

Mesos supports to get the available total resource per-roles ?

2016-02-22 Thread 陈强
Hi all, Does Mesos support to get the available total resource for every roles now? if don't, who are focusing on this? thanks. -- Best Regards, ChenQiang

I want to a contributor

2016-02-22 Thread 周想想
Hi: I’m a c++ programmer, and I want to be a contributor of mesos. Mesos is a great project, we have used it for a few months. I want to be a member of it. - - - - - - - - - - - - - - - - - Kreats 2.22 2016