Skip to content
Snippets Groups Projects
Commit b57ecec5 authored by Justin Loew's avatar Justin Loew
Browse files

Add print statements to debug MemoryStore

parent 3ceefb6d
No related branches found
No related tags found
No related merge requests found
......@@ -399,9 +399,13 @@ private[spark] class MemoryStore(
val origEntry = entries.get(blockId)
print("Hello, world!\n")
logInfo(s"blockId: $blockId")
print("402\n")
if (origEntry != null) {
print("404\n")
blockIdAndSizeSet -= new OurBlockIdAndSizeType(blockId, origEntry.size)
print("406\n")
}
print("408\n")
entries.remove(blockId)
}
if (entry != null) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment