Skip to content

Commit

Permalink
Merge pull request #270 from roytman/workflow_timeouts
Browse files Browse the repository at this point in the history
remove entire pipeline timeouts
  • Loading branch information
roytman authored Jun 18, 2024
2 parents 3b80bfb + a0b79b5 commit 6276e19
Show file tree
Hide file tree
Showing 10 changed files with 0 additions and 35 deletions.
3 changes: 0 additions & 3 deletions transforms/code/code_quality/kfp_ray/code_quality_wf.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,9 +215,6 @@ def code_quality(

execute_job.after(ray_cluster)

# Configure the pipeline level to one week (in seconds)
dsl.get_pipeline_conf().set_timeout(ONE_WEEK_SEC)


if __name__ == "__main__":
# Compiling the pipeline
Expand Down
3 changes: 0 additions & 3 deletions transforms/code/malware/kfp_ray/malware_wf.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,9 +197,6 @@ def malware(
ComponentUtils.set_s3_env_vars_to_component(execute_job, data_s3_access_secret)
execute_job.after(ray_cluster)

# Configure the pipeline level to one week (in seconds)
dsl.get_pipeline_conf().set_timeout(ONE_WEEK_SEC)


if __name__ == "__main__":
# Compiling the pipeline
Expand Down
3 changes: 0 additions & 3 deletions transforms/code/proglang_select/kfp_ray/proglang_select_wf.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,9 +204,6 @@ def lang_select(
ComponentUtils.set_s3_env_vars_to_component(execute_job, proglang_select_s3_access_secret, prefix=PREFIX)
execute_job.after(ray_cluster)

# Configure the pipeline level to one week (in seconds)
# dsl.get_pipeline_conf().set_timeout(ONE_WEEK_SEC)


if __name__ == "__main__":
# Compiling the pipeline
Expand Down
4 changes: 0 additions & 4 deletions transforms/universal/doc_id/kfp_ray/doc_id_wf.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,10 +213,6 @@ def doc_id(
ComponentUtils.set_s3_env_vars_to_component(execute_job, data_s3_access_secret)
execute_job.after(ray_cluster)

# TODO
# Configure the pipeline level to one week (in seconds)
# dsl.get_pipeline_conf().set_timeout(ONE_WEEK_SEC)


if __name__ == "__main__":
# Compiling the pipeline
Expand Down
4 changes: 0 additions & 4 deletions transforms/universal/ededup/kfp_ray/ededup_wf.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,10 +176,6 @@ def ededup(
ComponentUtils.set_s3_env_vars_to_component(execute_job, data_s3_access_secret)
execute_job.after(ray_cluster)

# TODO
# Configure the pipeline level to one week (in seconds)
# dsl.get_pipeline_conf().set_timeout(ONE_WEEK_SEC)


if __name__ == "__main__":
# Compiling the pipeline
Expand Down
4 changes: 0 additions & 4 deletions transforms/universal/fdedup/kfp_ray/fdedup_wf.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,10 +217,6 @@ def fdedup(
ComponentUtils.set_s3_env_vars_to_component(execute_job, data_s3_access_secret)
execute_job.after(ray_cluster)

# TODO
# Configure the pipeline level to one week (in seconds)
# dsl.get_pipeline_conf().set_timeout(ONE_WEEK_SEC)


if __name__ == "__main__":
# Compiling the pipeline
Expand Down
3 changes: 0 additions & 3 deletions transforms/universal/filter/kfp_ray/filter_wf.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,9 +205,6 @@ def filtering(

execute_job.after(ray_cluster)

# Configure the pipeline level to one week (in seconds)
dsl.get_pipeline_conf().set_timeout(ONE_WEEK_SEC)


if __name__ == "__main__":
# Compiling the pipeline
Expand Down
4 changes: 0 additions & 4 deletions transforms/universal/noop/kfp_ray/noop_multiple_wf.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,10 +193,6 @@ def noop(
ComponentUtils.set_s3_env_vars_to_component(execute_job, data_s3_access_secret)
execute_job.after(ray_cluster)

# TODO
# Configure the pipeline level to one week (in seconds)
# dsl.get_pipeline_conf().set_timeout(ONE_WEEK_SEC)


if __name__ == "__main__":
# Compiling the pipeline
Expand Down
4 changes: 0 additions & 4 deletions transforms/universal/noop/kfp_ray/noop_wf.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,10 +193,6 @@ def noop(
ComponentUtils.set_s3_env_vars_to_component(execute_job, data_s3_access_secret)
execute_job.after(ray_cluster)

# TODO
# Configure the pipeline level to one week (in seconds)
# dsl.get_pipeline_conf().set_timeout(ONE_WEEK_SEC)


if __name__ == "__main__":
# Compiling the pipeline
Expand Down
3 changes: 0 additions & 3 deletions transforms/universal/tokenization/kfp_ray/tokenization_wf.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,9 +221,6 @@ def tokenization(
ComponentUtils.set_s3_env_vars_to_component(execute_job, data_s3_access_secret)
execute_job.after(ray_cluster)

# Configure the pipeline level to one week (in seconds)
dsl.get_pipeline_conf().set_timeout(ONE_WEEK_SEC)


if __name__ == "__main__":
# Compiling the pipeline
Expand Down

0 comments on commit 6276e19

Please sign in to comment.