srowen commented on a change in pull request #32800: URL: https://github.com/apache/spark/pull/32800#discussion_r647639442
########## 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: Do we need to document this anywhere else or is this kind or private? Seems reasonable to me. -- 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: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For additional commands, e-mail: reviews-h...@spark.apache.org