cloud-fan commented on a change in pull request #32800:
URL: https://github.com/apache/spark/pull/32800#discussion_r647645615



##########
File path: core/src/main/java/org/apache/spark/api/java/StorageLevels.java
##########
@@ -36,6 +36,7 @@
   public static final StorageLevel MEMORY_AND_DISK_SER = create(true, true, 
false, false, 1);
   public static final StorageLevel MEMORY_AND_DISK_SER_2 = create(true, true, 
false, false, 2);
   public static final StorageLevel OFF_HEAP = create(true, true, true, false, 
1);
+  public static final StorageLevel OFF_HEAP_ONLY_DESER = create(false, true, 
true, true, 1);

Review comment:
       good point. Maybe I should remove it and the vendors should construct 
this storage level by themselves, if they have deserialized off-heap entries.
   
   It's not a user-facing thing.




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to