-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/17567/
-----------------------------------------------------------
(Updated March 10, 2014, 3:18 p.m.)
Review request for mesos, Adam B, Benjamin Hindman, Ben Mahler, Ian Downes,
Niklas Nielsen, and Vinod Kone.
Changes
-------
Rebased.
Bugs: MESOS-816
https://issues.apache.org/jira/browse/MESOS-816
Repository: mesos-git
Description
-------
This patch adds the so-called pluggable containerizer. This
containerizer delegates all containerizer calls directly to
an external, pluggable containerizer program (which can be
specified on start-up). Few calls have internal fall-back
implementations such as wait(), destroy() and usage().
The protocol for the interactions with the external program
is as follows:
COMMAND (ADDITIONAL-PARAMETERS) < INPUT-PROTO > RESULT-PROTO
launch (ContainerID, --mesos-executor, <path>) < TaskInfo > PluggableStatus
update (ContainerID) < ResourceArray > PluggableStatus
usage (ContainerID) > ResourceStatistics
wait (ContainerID) > PluggableTermination
destroy (ContainerID) > PluggableStatus
When protocol buffers need to be provided, the Mesos side of
the pluggable containerizer implementation will serialize the
protos on stdin and vice-versa for reading protos on stdout as
drafted in the above scheme.
Diffs (updated)
-----
configure.ac 390f11b
include/mesos/mesos.proto 37f8a7f
src/Makefile.am 384b312
src/slave/containerizer/containerizer.cpp d0a1023
src/slave/flags.hpp c9a627b
Diff: https://reviews.apache.org/r/17567/diff/
Testing
-------
make check and functional testing.
Thanks,
Till Toenshoff