Skip to content

Commit 1cf2d1e

Browse files
committed
Update YarnAllocator.scala
1 parent ebcde10 commit 1cf2d1e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

yarn/common/src/main/scala/org/apache/spark/deploy/yarn/YarnAllocator.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,9 +118,9 @@ private[yarn] abstract class YarnAllocator(
118118

119119
if (missing > 0) {
120120
numPendingAllocate.addAndGet(missing)
121-
logInfo("Will Allocate %d executor containers, each with %d+%d MB memory".format(
121+
logInfo("Will allocate %d executor containers, each with %d MB memory including %d MB overhead".format(
122122
missing,
123-
executorMemory,
123+
(executorMemory + memoryOverhead),
124124
memoryOverhead))
125125
} else {
126126
logDebug("Empty allocation request ...")

0 commit comments

Comments
 (0)