Niklas Quarfot Nielsen created MESOS-2844:
---------------------------------------------

             Summary: Add and document new labels field to framework info
                 Key: MESOS-2844
                 URL: https://issues.apache.org/jira/browse/MESOS-2844
             Project: Mesos
          Issue Type: Improvement
            Reporter: Niklas Quarfot Nielsen


Add and document new labels field to framework info:

{code}
message FrameworkInfo {
  // Used to determine the Unix user that an executor or task should
  // be launched as. If the user field is set to an empty string Mesos
  // will automagically set it to the current user.
  required string user = 1;

  // Name of the framework that shows up in the Mesos Web UI.
  required string name = 2;

  // Note that 'id' is only available after a framework has
  // registered, however, it is included here in order to facilitate
  // scheduler failover (i.e., if it is set then the
  // MesosSchedulerDriver expects the scheduler is performing
  // failover).
  optional FrameworkID id = 3;

  ...

  // This field allows a framework to advertise its set of
  // capabilities (e.g., ability to receive offers for revocable
  // resources).
  repeated Capability capabilities = 10;

  optional Labels labels = 11;
}
{code}



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

Reply via email to