You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@mesos.apache.org by "Klaus Ma (JIRA)" <ji...@apache.org> on 2015/09/06 11:26:45 UTC

[jira] [Commented] (MESOS-2913) Scheduler driver should send Call messages to the master

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

Klaus Ma commented on MESOS-2913:
---------------------------------

After the patch, should we re-factor protobuf call to delegate to Call? And when will we remove the old call? e.g.

{code}
...
install<KillTaskMessage>(
      &Master::killTask,
      &KillTaskMessage::framework_id,
      &KillTaskMessage::task_id);
...
{code}

VS.

{code}
...
    case scheduler::Call::KILL:
      kill(framework, call.kill());
      break;
...
{code}

> Scheduler driver should send Call messages to the master
> --------------------------------------------------------
>
>                 Key: MESOS-2913
>                 URL: https://issues.apache.org/jira/browse/MESOS-2913
>             Project: Mesos
>          Issue Type: Task
>            Reporter: Vinod Kone
>            Assignee: Vinod Kone
>             Fix For: 0.24.0
>
>
> To vet the new Call protobufs, it is prudent to have the scheduler driver (sched.cpp) send Call messages to the master (similar to what we are doing with the scheduler library).



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