Github user lianhuiwang commented on a diff in the pull request:
https://github.com/apache/spark/pull/3245#discussion_r20504747
--- Diff:
yarn/stable/src/main/scala/org/apache/spark/deploy/yarn/YarnAllocationHandler.scala
---
@@ -43,10 +44,20 @@ private[yarn] class YarnAllocationHandler(
securityMgr: SecurityManager)
extends YarnAllocator(conf, sparkConf, appAttemptId, args,
preferredNodes, securityMgr) {
+
+ // ContainerRequests which have been added to AMRMClient.
+ private val containerRequestList = new
LinkedBlockingQueue[ContainerRequest]()
+
override protected def releaseContainer(container: Container) = {
amClient.releaseAssignedContainer(container.getId())
}
+ override protected def removeContainerRequest() = {
+ if(!containerRequestList.isEmpty()){
+ amClient.removeContainerRequest(containerRequestList.take())
--- End diff --
i donot think so. because it is FIFO, we can remove head of request queue
because head of queue is allocated by Yarn when we receive allocated Containers.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]