Skip to content

Commit

Permalink
docs: Finish describing memoization
Browse files Browse the repository at this point in the history
Complete my sentence from PR argoproj#11257

Signed-off-by: Alan Clucas <alan@clucas.org>
  • Loading branch information
Joibel committed Jul 14, 2023
1 parent 7883bf4 commit 1b77fe1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/work-avoidance.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
You can make workflows faster and more robust by employing **work avoidance**. A workflow that utilizes this is simply a workflow containing steps that do not run if the work has already been done.

This technique is similar to [memoization](memoization.md) but they have distinct use cases. Work avoidance is totally in your control and you make the decisions as to have to skip the work. [Memoization](memoization.md) is a feature of Argo Workflows to automatically skip steps which generate outputs - it is designed
This technique is similar to [memoization](memoization.md) but they have distinct use cases. Work avoidance is totally in your control and you make the decisions as to have to skip the work. [Memoization](memoization.md) is a feature of Argo Workflows to automatically skip steps which generate outputs - it is designed for pure steps which only generate output based on their inputs.

This simplest way to do this is to use **marker files**.

Expand Down

0 comments on commit 1b77fe1

Please sign in to comment.