File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -461,6 +461,9 @@ message PipelineTaskSpec {
461
461
message CachingOptions {
462
462
// Whether or not to enable cache for this task. Defaults to false.
463
463
bool enable_cache = 1 ;
464
+ // Customized cache key for this task. If set, the cache_key will be used
465
+ // as the key for the task's cache.
466
+ string cache_key = 2 ;
464
467
}
465
468
CachingOptions caching_options = 6 ;
466
469
@@ -620,7 +623,7 @@ message PipelineInfo {
620
623
// Required field. The name of the pipeline.
621
624
// The name will be used to create or find pipeline context in MLMD.
622
625
string name = 1 ;
623
-
626
+
624
627
// Optional fields. The readable display name for the pipeline template.
625
628
// Should not exceed 1024 characters.
626
629
string display_name = 2 ;
@@ -783,7 +786,7 @@ message PipelineDeploymentConfig {
783
786
string resource_count = 4 ;
784
787
}
785
788
AcceleratorConfig accelerator = 3 ;
786
-
789
+
787
790
reserved 4 ;
788
791
}
789
792
ResourceSpec resources = 5 ;
Original file line number Diff line number Diff line change 15
15
import setuptools
16
16
17
17
NAME = 'kfp-pipeline-spec'
18
- VERSION = '0.5 .0'
18
+ VERSION = '0.6 .0'
19
19
20
20
setuptools .setup (
21
21
name = NAME ,
You can’t perform that action at this time.
0 commit comments