juliuszsompolski commented on code in PR #57310:
URL: https://github.com/apache/spark/pull/57310#discussion_r3614977969


##########
core/src/main/scala/org/apache/spark/rdd/RDD.scala:
##########
@@ -1834,6 +1834,13 @@ abstract class RDD[T: ClassTag](
    */
   def isCheckpointed: Boolean = isCheckpointedAndMaterialized
 
+  /**
+   * The `spark.checkpoint.local.verifyChecksum.enabled` config (not the
+   * `verifyCheckpointChecksums` mark).
+   */
+  def localCheckpointVerifyChecksumEnabled: Boolean =
+    conf.get(LOCAL_CHECKPOINT_VERIFY_CHECKSUM_ENABLED)

Review Comment:
   I want to be able to access this config in the future from Delta code. The 
config itself is private[spark], and there are no good utils for getting it and 
respect the default etc. I think exposing it here is the cleanest way to do it.



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

To unsubscribe, e-mail: [email protected]

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