Changes between Version 13 and Version 14 of Workshops/JobCheckpointing/Examples
- Timestamp:
- 04/10/2026 11:00:09 AM (3 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Workshops/JobCheckpointing/Examples
v13 v14 14 14 == Before you adopt checkpointing == 15 15 16 '''Before you adopt a checkpointing workflow''', make a determination of whether your workflow consists - either entirely or in large part - of data elements or other components that can be processed '''entirely independently''' of each other - rather than each one depending onthe previous. This is also referred to as '''embarrassingly parallel'''. (See also [https://www.freecodecamp.org/news/embarrassingly-parallel-algorithms-explained-with-examples/ Embarrassingly Parallel Algorithms Explained].)16 '''Before you adopt a checkpointing workflow''', make a determination of whether your workflow consists - either entirely or in large part - of data elements or other components that can be processed '''entirely independently''' of each other - rather than each element depending on the result of the previous. This is also referred to as '''embarrassingly parallel'''. (See also [https://www.freecodecamp.org/news/embarrassingly-parallel-algorithms-explained-with-examples/ Embarrassingly Parallel Algorithms Explained].) 17 17 18 18 In order to make the above determination, you may need to '''consult your software provider's user forum''', such as [https://github.com GitHub]. … … 58 58 == Checkpoint workflow implementation == 59 59 60 === Execution Model ===60 === Execution Model (Diagram) === 61 61 62 62 {{{
