-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from mdevilliers/v19_dev
Release for Mesos 0.19
- Loading branch information
Showing
5 changed files
with
313 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
/** | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
import "mesos.proto"; | ||
|
||
package mesos.containerizer; | ||
|
||
option java_package = "org.apache.mesos.containerizer"; | ||
option java_outer_classname = "Protos"; | ||
|
||
|
||
/** | ||
* Encodes the launch command sent to the external containerizer | ||
* program. | ||
*/ | ||
message Launch { | ||
required ContainerID container_id = 1; | ||
optional TaskInfo task_info = 2; | ||
optional ExecutorInfo executor_info = 3; | ||
optional string directory = 4; | ||
optional string user = 5; | ||
optional SlaveID slave_id = 6; | ||
optional string slave_pid = 7; | ||
optional bool checkpoint = 8; | ||
} | ||
|
||
|
||
/** | ||
* Encodes the update command sent to the external containerizer | ||
* program. | ||
*/ | ||
message Update { | ||
required ContainerID container_id = 1; | ||
repeated Resource resources = 2; | ||
} | ||
|
||
|
||
/** | ||
* Encodes the wait command sent to the external containerizer | ||
* program. | ||
*/ | ||
message Wait { | ||
required ContainerID container_id = 1; | ||
} | ||
|
||
|
||
/** | ||
* Encodes the destroy command sent to the external containerizer | ||
* program. | ||
*/ | ||
message Destroy { | ||
required ContainerID container_id = 1; | ||
} | ||
|
||
|
||
/** | ||
* Encodes the usage command sent to the external containerizer | ||
* program. | ||
*/ | ||
message Usage { | ||
required ContainerID container_id = 1; | ||
} | ||
|
||
|
||
/** | ||
* Information about a container termination, returned by the | ||
* containerizer to the slave. | ||
*/ | ||
message Termination { | ||
// A container may be killed if it exceeds its resources; this will | ||
// be indicated by killed=true and described by the message string. | ||
required bool killed = 1; | ||
required string message = 2; | ||
|
||
// Exit status of the process. | ||
optional int32 status = 3; | ||
} | ||
|
||
|
||
/** | ||
* Information on all active containers returned by the containerizer | ||
* to the slave. | ||
*/ | ||
message Containers { | ||
repeated ContainerID containers = 1; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.