Github user andrewor14 commented on a diff in the pull request:

    https://github.com/apache/spark/pull/10170#discussion_r47021855
  
    --- Diff: 
core/src/test/scala/org/apache/spark/memory/UnifiedMemoryManagerSuite.scala ---
    @@ -117,25 +118,29 @@ class UnifiedMemoryManagerSuite extends 
MemoryManagerSuite with PrivateMethodTes
         val (mm, ms) = makeThings(maxMemory)
         // Acquire enough storage memory to exceed the storage region
         assert(mm.acquireStorageMemory(dummyBlock, 750L, evictedBlocks))
    -    assertEnsureFreeSpaceCalled(ms, 750L)
    +    assertEvictBlocksToFreeSpaceNotCalled(ms)
         assert(mm.executionMemoryUsed === 0L)
         assert(mm.storageMemoryUsed === 750L)
    +    assert(evictedBlocks.isEmpty)
         // Execution needs to request 250 bytes to evict storage memory
         assert(mm.acquireExecutionMemory(100L, taskAttemptId, 
MemoryMode.ON_HEAP) === 100L)
         assert(mm.executionMemoryUsed === 100L)
         assert(mm.storageMemoryUsed === 750L)
    -    assertEnsureFreeSpaceNotCalled(ms)
    +    assertEvictBlocksToFreeSpaceNotCalled(ms)
    +    assert(evictedBlocks.isEmpty)
         // Execution wants 200 bytes but only 150 are free, so storage is 
evicted
         assert(mm.acquireExecutionMemory(200L, taskAttemptId, 
MemoryMode.ON_HEAP) === 200L)
         assert(mm.executionMemoryUsed === 300L)
    -    assertEnsureFreeSpaceCalled(ms, 50L)
    +    assertEvictBlocksToFreeSpaceCalled(ms, 50L)
         assert(mm.executionMemoryUsed === 300L)
    --- End diff --
    
    duplicated assert? This should check `mm.storageMemoryUsed === 700L` instead


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to