Skip to content

Commit

Permalink
remove links to anchors, they don't work in Flyte dcos
Browse files Browse the repository at this point in the history
Signed-off-by: Peeter Piegaze <[email protected]>
  • Loading branch information
ppiegaze committed Jul 24, 2024
1 parent 096e228 commit c3ddce0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/user_guide/development_lifecycle/caching.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ To enable caching set `cache=True`.
A change to this parameter will invalidate the cache.
This allows you to explicitly indicate when a change has been made to the task that should invalidate any existing cached results.
Note that this is not the only change that will invalidate the cache (see below).
Also, note that you can manually trigger cache invalidation per execution using the [`overwrite-cache` flag](#overwrite-cache-flag).
Also, note that you can manually trigger cache invalidation per execution using the `overwrite-cache` flag.
* `cache_serialize` (`bool`): Enables or disables [cache serialization](./cache_serializing).
When enabled, Flyte ensures that a single instance of the task is run before any other instances that would otherwise run concurrently.
This allows the initial instance to cache its result and lets the later instances reuse the resulting cached outputs.
Expand All @@ -43,7 +43,7 @@ Task caching parameters can be specified at task definition time within `@task`

* `overwrite-cache` (`bool`): Invalidates the cache and forces re-execution of the task.

This flag can be used when launching an execution from [the command line](#overwrite-cache-on-the-command-line), [the UI](#overwrite-cache-in-the-ui), or [programmatically through `FlyteRemote`](#overwrite-cache-programmatically).
This flag can be used when launching an execution from the command line, the UI, or programmatically through `FlyteRemote`.

### Overwrite cache on the command line

Expand Down

0 comments on commit c3ddce0

Please sign in to comment.