We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebcde10 commit 1cf2d1eCopy full SHA for 1cf2d1e
yarn/common/src/main/scala/org/apache/spark/deploy/yarn/YarnAllocator.scala
@@ -118,9 +118,9 @@ private[yarn] abstract class YarnAllocator(
118
119
if (missing > 0) {
120
numPendingAllocate.addAndGet(missing)
121
- logInfo("Will Allocate %d executor containers, each with %d+%d MB memory".format(
+ logInfo("Will allocate %d executor containers, each with %d MB memory including %d MB overhead".format(
122
missing,
123
- executorMemory,
+ (executorMemory + memoryOverhead),
124
memoryOverhead))
125
} else {
126
logDebug("Empty allocation request ...")
0 commit comments