Skip to content

Commit

Permalink
feat: Introduce cache_key for cache key customization
Browse files Browse the repository at this point in the history
Signed-off-by: Ze Mao <[email protected]>
  • Loading branch information
Ze Mao committed Dec 5, 2024
1 parent 6ebf4aa commit 0a3b364
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions api/v2alpha1/pipeline_spec.proto
Original file line number Diff line number Diff line change
Expand Up @@ -461,6 +461,9 @@ message PipelineTaskSpec {
message CachingOptions {
// Whether or not to enable cache for this task. Defaults to false.
bool enable_cache = 1;
// Customized cache key for this task. If set, the cache_key will be used
// as the key for the task's cache.
string cache_key = 2;
}
CachingOptions caching_options = 6;

Expand Down Expand Up @@ -620,7 +623,7 @@ message PipelineInfo {
// Required field. The name of the pipeline.
// The name will be used to create or find pipeline context in MLMD.
string name = 1;

// Optional fields. The readable display name for the pipeline template.
// Should not exceed 1024 characters.
string display_name = 2;
Expand Down Expand Up @@ -783,7 +786,7 @@ message PipelineDeploymentConfig {
string resource_count = 4;
}
AcceleratorConfig accelerator = 3;

reserved 4;
}
ResourceSpec resources = 5;
Expand Down
2 changes: 1 addition & 1 deletion api/v2alpha1/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import setuptools

NAME = 'kfp-pipeline-spec'
VERSION = '0.5.0'
VERSION = '0.6.0'

setuptools.setup(
name=NAME,
Expand Down

0 comments on commit 0a3b364

Please sign in to comment.