-
Notifications
You must be signed in to change notification settings - Fork 28.9k
[SPARK-10471] [CORE] [MESOS] prevent getting offers for unmet constraints #8639
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -63,6 +63,10 @@ private[spark] class MesosSchedulerBackend( | |
| private[this] val slaveOfferConstraints = | ||
| parseConstraintString(sc.conf.get("spark.mesos.constraints", "")) | ||
|
|
||
| // reject offers with mismatched constraints in seconds | ||
| private val rejectOfferDurationForUnmetConstraints = | ||
| getRejectOfferDurationForUnmetConstraints(sc) | ||
|
|
||
| @volatile var appId: String = _ | ||
|
|
||
| override def start() { | ||
|
|
@@ -212,29 +216,47 @@ private[spark] class MesosSchedulerBackend( | |
| */ | ||
| override def resourceOffers(d: SchedulerDriver, offers: JList[Offer]) { | ||
| inClassLoader() { | ||
| // Fail-fast on offers we know will be rejected | ||
| val (usableOffers, unUsableOffers) = offers.asScala.partition { o => | ||
| // Fail first on offers with unmet constraints | ||
| val (offersMatchingConstraints, offersNotMatchingConstraints) = | ||
| offers.asScala.partition { o => | ||
| val offerAttributes = toAttributeMap(o.getAttributesList) | ||
| val meetsConstraints = | ||
| matchesAttributeRequirements(slaveOfferConstraints, offerAttributes) | ||
|
|
||
| // add some debug messaging | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nit: remove (doesn't add any value). Also remove the random blank lines around this. |
||
| if (!meetsConstraints) { | ||
| val id = o.getId.getValue | ||
| logDebug(s"Declining offer: $id with attributes: $offerAttributes") | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nit: just inline it |
||
| } | ||
|
|
||
| meetsConstraints | ||
| } | ||
|
|
||
| // These offers do not meet constraints. We don't need to see them again. | ||
| // Decline the offer for a long period of time. | ||
| offersNotMatchingConstraints.foreach { o => | ||
| d.declineOffer(o.getId, Filters.newBuilder() | ||
| .setRefuseSeconds(rejectOfferDurationForUnmetConstraints).build()) | ||
| } | ||
|
|
||
| // Of the matching constraints, see which ones give us enough memory and cores | ||
| val (usableOffers, unUsableOffers) = offersMatchingConstraints.partition { o => | ||
| val mem = getResource(o.getResourcesList, "mem") | ||
| val cpus = getResource(o.getResourcesList, "cpus") | ||
| val slaveId = o.getSlaveId.getValue | ||
| val offerAttributes = toAttributeMap(o.getAttributesList) | ||
|
|
||
| // check if all constraints are satisfield | ||
| // 1. Attribute constraints | ||
| // 2. Memory requirements | ||
| // 3. CPU requirements - need at least 1 for executor, 1 for task | ||
| val meetsConstraints = matchesAttributeRequirements(slaveOfferConstraints, offerAttributes) | ||
| // check offers for | ||
| // 1. Memory requirements | ||
| // 2. CPU requirements - need at least 1 for executor, 1 for task | ||
| val meetsMemoryRequirements = mem >= calculateTotalMemory(sc) | ||
| val meetsCPURequirements = cpus >= (mesosExecutorCores + scheduler.CPUS_PER_TASK) | ||
|
|
||
| val meetsRequirements = | ||
| (meetsConstraints && meetsMemoryRequirements && meetsCPURequirements) || | ||
| (meetsMemoryRequirements && meetsCPURequirements) || | ||
| (slaveIdToExecutorInfo.contains(slaveId) && cpus >= scheduler.CPUS_PER_TASK) | ||
|
|
||
| // add some debug messaging | ||
| val debugstr = if (meetsRequirements) "Accepting" else "Declining" | ||
| val id = o.getId.getValue | ||
| logDebug(s"$debugstr offer: $id with attributes: $offerAttributes mem: $mem cpu: $cpus") | ||
| logDebug(s"$debugstr offer: ${o.getId.getValue} with attributes: " | ||
| + s"$offerAttributes mem: $mem cpu: $cpus") | ||
|
|
||
| meetsRequirements | ||
| } | ||
|
|
||
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's getting a bit messy now, but I think we can refactor this later as I'd like to introduce more fine grained reasons around rejecting offers.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I had already done some refactoring around this specific area in patch #8771