Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions sql/core/src/main/scala/org/apache/spark/sql/Dataset.scala
Original file line number Diff line number Diff line change
Expand Up @@ -691,8 +691,8 @@ class Dataset[T] private[sql](
* @param eager Whether to checkpoint this dataframe immediately
*
* @note When checkpoint is used with eager = false, the final data that is checkpointed after
* the first action may be different from the data that was used during the job due to non
* deteminism of the underlying operation and retries. If checkpoint is used to achieve
* the first action may be different from the data that was used during the job due to
* non-determinism of the underlying operation and retries. If checkpoint is used to achieve
* saving a deterministic snapshot of the data, eager = true should be used. Otherwise,
* it is only deterministic after the first execution, after the checkpoint was finalized.
*
Expand Down Expand Up @@ -721,8 +721,8 @@ class Dataset[T] private[sql](
* @param eager Whether to checkpoint this dataframe immediately
*
* @note When checkpoint is used with eager = false, the final data that is checkpointed after
* the first action may be different from the data that was used during the job due to non
* deteminism of the underlying operation and retries. If checkpoint is used to achieve
* the first action may be different from the data that was used during the job due to
* non-determinism of the underlying operation and retries. If checkpoint is used to achieve
* saving a deterministic snapshot of the data, eager = true should be used. Otherwise,
* it is only deterministic after the first execution, after the checkpoint was finalized.
*
Expand Down