You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@mesos.apache.org by "Bartek Plotka (JIRA)" <ji...@apache.org> on 2015/05/22 19:23:17 UTC

[jira] [Commented] (MESOS-2760) Add correction message to inform slave about QoS Controller actions

    [ https://issues.apache.org/jira/browse/MESOS-2760?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14556471#comment-14556471 ] 

Bartek Plotka commented on MESOS-2760:
--------------------------------------

https://reviews.apache.org/r/34581/

> Add correction message to inform slave about QoS Controller actions
> -------------------------------------------------------------------
>
>                 Key: MESOS-2760
>                 URL: https://issues.apache.org/jira/browse/MESOS-2760
>             Project: Mesos
>          Issue Type: Task
>            Reporter: Szymon Konefal
>            Assignee: Bartek Plotka
>   Original Estimate: 1h
>  Remaining Estimate: 1h
>
> The QoS controller informs the slave about correcting actions (kill, resize, throttle best-effort containers, tasks, and so forth) through a protobuf message, called a QoSCorrection. This ticket tracks designing and creating this message.
> For example:
> {code}
> message QoSCorrection {
>   // NOTE: In future we can define more actions like
>   // resize or freeze, but for now we have:
>   // 1) kill - terminate the executor or task
>   enum Type {
>     KILL = 1;
>   }
>   //Kill action which will be performed on an executor
>   message Kill {
>     optional ExecutorID executor_id = 1;
>   }
>   required Type action = 1;
>   optional string reason = 2;
>   optional double timestamp = 3;
>   optional Kill kill = 4;
> }
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)