Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 29.4k
[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
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| 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 | ||
| } | ||
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