Repository: mesos Updated Branches: refs/heads/master 0d5dc05b5 -> fcbb923e0
Updated upgrades.md about the new 'acceptOffers' API. Review: https://reviews.apache.org/r/36008 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/1cafa82f Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/1cafa82f Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/1cafa82f Branch: refs/heads/master Commit: 1cafa82f1742eaafbd423c1fb053f0233d31bca2 Parents: 0d5dc05 Author: Jie Yu <[email protected]> Authored: Mon Jun 29 10:46:23 2015 -0700 Committer: Jie Yu <[email protected]> Committed: Mon Jun 29 11:30:19 2015 -0700 ---------------------------------------------------------------------- docs/upgrades.md | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mesos/blob/1cafa82f/docs/upgrades.md ---------------------------------------------------------------------- diff --git a/docs/upgrades.md b/docs/upgrades.md index 35e893c..3eca7b8 100644 --- a/docs/upgrades.md +++ b/docs/upgrades.md @@ -12,6 +12,7 @@ This document serves as a guide for users who wish to upgrade an existing mesos **NOTE** Slave ping timeouts are now configurable on the master via `--slave_ping_timeout` and `--max_slave_ping_timeouts`. Slaves should be upgraded to 0.23.x before changing these flags. +**NOTE** A new scheduler driver API, `acceptOffers`, has been introduced. This is a more general version of the `launchTasks` API, which allows the scheduler to accept an offer and specify a list of operations (Offer.Operation) to perform using the resources in the offer. Currently, the supported operations include LAUNCH (launching tasks), RESERVE (making dynamic reservations), UNRESERVE (releasing dynamic reservations), CREATE (creating persistent volumes) and DESTROY (releasing persistent volumes). Similar to the `launchTasks` API, any unused resources will be considered declined, and the specified filters will be applied on all unused resources. ## Upgrading from 0.21.x to 0.22.x
