aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZhang, Liye <liye.zhang@intel.com>2014-10-16 19:07:37 -0700
committerAndrew Or <andrewor14@gmail.com>2014-10-16 19:07:37 -0700
commit642b246beb7879978d31f2e6e97de7e06c74dcb7 (patch)
treebba8a63ea908cc1c0d85510b41c9059e2262ec82
parentbe2ec4a91d14f48e6323989fb0e0226a9d65bf7e (diff)
downloadspark-642b246beb7879978d31f2e6e97de7e06c74dcb7.tar.gz
spark-642b246beb7879978d31f2e6e97de7e06c74dcb7.tar.bz2
spark-642b246beb7879978d31f2e6e97de7e06c74dcb7.zip
[SPARK-3941][CORE] _remainingmem should not increase twice when updateBlockInfo
In BlockManagermasterActor, _remainingMem would increase memSize for twice when updateBlockInfo if new storageLevel is invalid and old storageLevel is "useMemory". Also, _remainingMem should increase with original memory size instead of new memSize. Author: Zhang, Liye <liye.zhang@intel.com> Closes #2792 from liyezhang556520/spark-3941-remainMem and squashes the following commits: 3d487cc [Zhang, Liye] make the code concise 0380a32 [Zhang, Liye] [SPARK-3941][CORE] _remainingmem should not increase twice when updateBlockInfo
-rw-r--r--core/src/main/scala/org/apache/spark/storage/BlockManagerMasterActor.scala9
1 files changed, 5 insertions, 4 deletions
diff --git a/core/src/main/scala/org/apache/spark/storage/BlockManagerMasterActor.scala b/core/src/main/scala/org/apache/spark/storage/BlockManagerMasterActor.scala
index 6a06257ed0..088f06e389 100644
--- a/core/src/main/scala/org/apache/spark/storage/BlockManagerMasterActor.scala
+++ b/core/src/main/scala/org/apache/spark/storage/BlockManagerMasterActor.scala
@@ -457,16 +457,18 @@ private[spark] class BlockManagerInfo(
if (_blocks.containsKey(blockId)) {
// The block exists on the slave already.
- val originalLevel: StorageLevel = _blocks.get(blockId).storageLevel
+ val blockStatus: BlockStatus = _blocks.get(blockId)
+ val originalLevel: StorageLevel = blockStatus.storageLevel
+ val originalMemSize: Long = blockStatus.memSize
if (originalLevel.useMemory) {
- _remainingMem += memSize
+ _remainingMem += originalMemSize
}
}
if (storageLevel.isValid) {
/* isValid means it is either stored in-memory, on-disk or on-Tachyon.
- * But the memSize here indicates the data size in or dropped from memory,
+ * The memSize here indicates the data size in or dropped from memory,
* tachyonSize here indicates the data size in or dropped from Tachyon,
* and the diskSize here indicates the data size in or dropped to disk.
* They can be both larger than 0, when a block is dropped from memory to disk.
@@ -493,7 +495,6 @@ private[spark] class BlockManagerInfo(
val blockStatus: BlockStatus = _blocks.get(blockId)
_blocks.remove(blockId)
if (blockStatus.storageLevel.useMemory) {
- _remainingMem += blockStatus.memSize
logInfo("Removed %s on %s in memory (size: %s, free: %s)".format(
blockId, blockManagerId.hostPort, Utils.bytesToString(blockStatus.memSize),
Utils.bytesToString(_remainingMem)))