Skip to content

Commit

Permalink
feat(sdk) Add SemaphoreKey and MutexName fields to DSL
Browse files Browse the repository at this point in the history
  • Loading branch information
DharmitD committed Nov 16, 2024
1 parent cac3739 commit baee792
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 7 deletions.
12 changes: 7 additions & 5 deletions sdk/python/kfp/compiler/pipeline_spec_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -2011,11 +2011,13 @@ def write_pipeline_spec_to_file(

def _merge_pipeline_config(pipelineConfig: pipeline_config.PipelineConfig,
platformSpec: pipeline_spec_pb2.PlatformSpec):
# TODO: add pipeline config options (ttl, semaphore, etc.) to the dict
# json_format.ParseDict(
# {'pipelineConfig': {
# '<some pipeline config option>': pipelineConfig.<get that value>,
# }}, platformSpec.platforms['kubernetes'])
json_format.ParseDict(
{
'pipelineConfig': {
'semaphoreKey': pipelineConfig.semaphore_key,
'mutexName': pipelineConfig.mutex_name,
}
}, platformSpec.platforms['kubernetes'])

return platformSpec

Expand Down
19 changes: 17 additions & 2 deletions sdk/python/kfp/dsl/pipeline_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,21 @@ class PipelineConfig:
"""PipelineConfig contains pipeline-level config options."""

def __init__(self):
pass
self.semaphore_key = None
self.mutex_name = None

# TODO add pipeline level configs
def set_semaphore_key(self, semaphore_key: str):
"""Set the name of the semaphore to control pipeline concurrency.
Args:
semaphore_key (str): Name of the semaphore.
"""
self.semaphore_key = semaphore_key.strip()

def set_mutex_name(self, mutex_name: str):
"""Set the name of the mutex to ensure mutual exclusion.
Args:
mutex_name (str): Name of the mutex.
"""
self.mutex_name = mutex_name.strip()

0 comments on commit baee792

Please sign in to comment.