----------------------------------------------------------- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/14669/ -----------------------------------------------------------
(Updated Nov. 14, 2013, 10:31 p.m.) Review request for mesos, Benjamin Hindman, Ben Mahler, and Vinod Kone. Changes ------- Addressed Ben's latest comments and reintroduced CHECK() Bugs: MESOS-749 https://issues.apache.org/jira/browse/MESOS-749 Repository: mesos-git Description ------- Running tasks on more than one offer belonging to a single slave can be useful in situations with multiple out-standing offers. This patch extends the usual launchTasks() to accept a vector of OfferIDs. The previous launchTasks (accepting a single OfferID) has been kept for backward compatibility, but this now calls the new launchTasks() with a one-element list. This also applied for the JNI and python interfaces, which accepts both formats as well. Offers are verified to belong to the same slave and framework, before resources are merged and used. Diffs (updated) ----- include/mesos/scheduler.hpp 380e087 src/java/jni/org_apache_mesos_MesosSchedulerDriver.cpp 9869929 src/java/src/org/apache/mesos/MesosSchedulerDriver.java ed4b4a3 src/java/src/org/apache/mesos/SchedulerDriver.java 5b0ca39 src/master/master.hpp e377af8 src/master/master.cpp abab6ce src/messages/messages.proto 71f68a0 src/python/native/mesos_scheduler_driver_impl.cpp 059ed5d src/sched/sched.cpp 3abe72f src/tests/master_tests.cpp bf790d2 src/tests/resource_offers_tests.cpp 2864c9a Diff: https://reviews.apache.org/r/14669/diff/ Testing ------- Three new tests has been added: LaunchCombinedOfferTest, LaunchAcrossSlavesTest and LaunchDuplicateOfferTest This test ensures that: 1) Multiple offers can be used to run a single task (requesting the sum of offer resources). 2) Offers cannot span multiple slaves. 3) No offers can appear more than once in offer list. $ make check ... [ RUN ] MasterTest.LaunchCombinedOfferTest [ OK ] MasterTest.LaunchCombinedOfferTest (2010 ms) [ RUN ] MasterTest.LaunchAcrossSlavesTest [ OK ] MasterTest.LaunchAcrossSlavesTest (3 ms) [ RUN ] MasterTest.LaunchDuplicateOfferTest [ OK ] MasterTest.LaunchDuplicateOfferTest (3 ms) ... Thanks, Niklas Nielsen