-
- Downloads
[SPARK-15260] Atomically resize memory pools
## What changes were proposed in this pull request? When we acquire execution memory, we do a lot of things between shrinking the storage memory pool and enlarging the execution memory pool. In particular, we call `memoryStore.evictBlocksToFreeSpace`, which may do a lot of I/O and can throw exceptions. If an exception is thrown, the pool sizes on that executor will be in a bad state. This patch minimizes the things we do between the two calls to make the resizing more atomic. ## How was this patch tested? Jenkins. Author: Andrew Or <andrew@databricks.com> Closes #13039 from andrewor14/safer-pool.
Showing
- core/src/main/scala/org/apache/spark/memory/StorageMemoryPool.scala 5 additions, 6 deletions...ain/scala/org/apache/spark/memory/StorageMemoryPool.scala
- core/src/main/scala/org/apache/spark/memory/UnifiedMemoryManager.scala 3 additions, 2 deletions.../scala/org/apache/spark/memory/UnifiedMemoryManager.scala
- core/src/test/scala/org/apache/spark/memory/MemoryManagerSuite.scala 15 additions, 0 deletions...st/scala/org/apache/spark/memory/MemoryManagerSuite.scala
- core/src/test/scala/org/apache/spark/memory/UnifiedMemoryManagerSuite.scala 23 additions, 0 deletions...a/org/apache/spark/memory/UnifiedMemoryManagerSuite.scala
Please register or sign in to comment