Skip to content
Merged
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
2 changes: 1 addition & 1 deletion explore-analyze/transforms/transform-checkpoints.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

1. Checks for changes to source indices.

Using a simple periodic timer, the transform checks for changes to the source indices. This check is done based on the interval defined in the transform’s `frequency` property.
Using a simple periodic timer, the transform checks for changes to the source indices. This check is done based on the interval defined in the transform’s `frequency` property. If an earlier transform check is in progress, the current check will abort to try again on next `frequency` interval.

Check notice on line 22 in explore-analyze/transforms/transform-checkpoints.md

View workflow job for this annotation

GitHub Actions / vale

Elastic.WordChoice: Consider using 'stop, cancel, end' instead of 'abort', unless the term is in the UI.

Check notice on line 22 in explore-analyze/transforms/transform-checkpoints.md

View workflow job for this annotation

GitHub Actions / vale

Elastic.FutureTense: 'will abort' might be in future tense. Write in the present tense to describe the state of the product as it is now.

Check notice on line 22 in explore-analyze/transforms/transform-checkpoints.md

View workflow job for this annotation

GitHub Actions / vale

Elastic.WordChoice: Consider using 'efficient' instead of 'simple', unless the term is in the UI.

If new data is ingested with a slight delay, it might not be immediately available when the transform runs. To prevent missing documents, you can use the `delay` parameter in the `sync` configuration. This shifts the search window backward, ensuring that late-arriving data is included before a checkpoint processes it. Adjusting this value based on your data ingestion patterns can help ensure completeness.

Expand Down
Loading