You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Avoid dropping a block back to disk if reading from disk
When the BlockManager reads a block from disk, it attempts to cache
it in memory. However, when we put the values in memory, it writes
them back out to disk, which is unnecessary and has confusing
semantics. Instead, we create a flag "allowPersistToDisk" for
memory store's putValues to identify cases we don't want to drop
the block to disk even if it doesn't fit in memory.
0 commit comments