From c3ddce0bbf49864b55ade8562ebc6b144e4421d6 Mon Sep 17 00:00:00 2001 From: Peeter Piegaze <1153481+ppiegaze@users.noreply.github.com> Date: Wed, 24 Jul 2024 18:01:58 +0200 Subject: [PATCH] remove links to anchors, they don't work in Flyte dcos Signed-off-by: Peeter Piegaze <1153481+ppiegaze@users.noreply.github.com> --- docs/user_guide/development_lifecycle/caching.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/user_guide/development_lifecycle/caching.md b/docs/user_guide/development_lifecycle/caching.md index a86e1124c3..c2e1f8caab 100644 --- a/docs/user_guide/development_lifecycle/caching.md +++ b/docs/user_guide/development_lifecycle/caching.md @@ -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. @@ -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