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

    https://github.com/apache/spark/pull/96#discussion_r10386330
  
    --- Diff: core/src/main/scala/org/apache/spark/storage/MemoryStore.scala ---
    @@ -236,13 +236,23 @@ private class MemoryStore(blockManager: BlockManager, 
maxMemory: Long)
             while (maxMemory - (currentMemory - selectedMemory) < space && 
iterator.hasNext) {
               val pair = iterator.next()
               val blockId = pair.getKey
    -          if (rddToAdd.isDefined && rddToAdd == getRddId(blockId)) {
    -            logInfo("Will not store " + blockIdToAdd + " as it would 
require dropping another " +
    -              "block from the same RDD")
    --- End diff --
    
    Copy over this log message to L267/L277 - when there blocks in entries and 
eviction wont help store this block.


---
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.
---

Reply via email to