summaryrefslogtreecommitdiff
path: root/site/docs/documentation/Input/CheckpointModel.md
diff options
context:
space:
mode:
authorDante Niewenhuis <d.niewenhuis@hotmail.com>2025-05-19 13:31:34 +0200
committerGitHub <noreply@github.com>2025-05-19 13:31:34 +0200
commite9a1b6078e366a8ee071f5d423a1874608618e4d (patch)
treeef539af46703cd25fb66775b4580c3460c72be91 /site/docs/documentation/Input/CheckpointModel.md
parentd70312f122d9ef7c31b05757239ffc66af832dee (diff)
Removing gh-pages site from master branch (#338)
* Removing site from master branch * Updated README.md
Diffstat (limited to 'site/docs/documentation/Input/CheckpointModel.md')
-rw-r--r--site/docs/documentation/Input/CheckpointModel.md25
1 files changed, 0 insertions, 25 deletions
diff --git a/site/docs/documentation/Input/CheckpointModel.md b/site/docs/documentation/Input/CheckpointModel.md
deleted file mode 100644
index 7c622ea0..00000000
--- a/site/docs/documentation/Input/CheckpointModel.md
+++ /dev/null
@@ -1,25 +0,0 @@
-Checkpointing is a technique to reduce the impact of machine failure.
-When using Checkpointing, tasks make periodical snapshots of their state.
-If a task fails, it can be restarted from the last snapshot instead of starting from the beginning.
-
-A user can define a checkpoint model using the following parameters:
-
-| Variable | Type | Required? | Default | Description |
-|---------------------------|--------|-----------|---------|----------------------------------------------------------------------------------------------------------------------|
-| checkpointInterval | Int64 | no | 3600000 | The time between checkpoints in ms |
-| checkpointDuration | Int64 | no | 300000 | The time to create a snapshot in ms |
-| checkpointIntervalScaling | Double | no | 1.0 | The scaling of the checkpointInterval after each successful checkpoint. The default of 1.0 means no scaling happens. |
-
-### Example
-
-```json
-{
- "checkpointInterval": 3600000,
- "checkpointDuration": 300000,
- "checkpointIntervalScaling": 1.5
-}
-```
-
-In this example, a snapshot is created every hour, and the snapshot creation takes 5 minutes.
-The checkpointIntervalScaling is set to 1.5, which means that after each successful checkpoint,
-the interval between checkpoints will be increased by 50% (for example from 1 to 1.5 hours).