You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using any control flows that require subdags like loops, nested pipelines, etc. the statuses update as soon as the first task within the dag completes. This is incorrect behavior as it should only show loading icon while sub tasks within the dag are still running.
Environment
How do you deploy Kubeflow Pipelines (KFP)? standalone and multi-user
KFP version: 2.4
To find the version number, See version number shows on bottom of KFP UI left sidenav. -->
KFP SDK version: 2.11
Steps to reproduce
Use a simple dag pipeline like the following:
@dsl.component()deffail():
importsyssys.exit(1)
@dsl.component()defhello_world():
print("hellow_world")
@dsl.component()defpost_msg():
print(f"this is a message")
@dsl.pipelinedefpipeline():
post_msg_task=post_msg().set_caching_options(enable_caching=False)
withdsl.ExitHandler(exit_task=post_msg_task):
hello_task=hello_world().set_caching_options(enable_caching=False)
fail_task=fail().set_caching_options(enable_caching=False)
fail_task.after(hello_task)
compiler.Compiler().compile(
pipeline_func=pipeline,
package_path=__file__.replace('.py', '-v2.yaml'))
Or any other control flow that utilizes sub dags, i.e. loops, nested pipelines, exit handlers, etc.
Expected result
The subdag status should stay as loading until all tasks are completed.
Materials and reference
dag-status-behavior.webm
Labels
/area backend
Impacted by this bug? Give it a 👍.
The text was updated successfully, but these errors were encountered:
Hello @HumairAK , can you please mention exact steps you used to deploy kubeflow pipeline. I was trying to deploy it locally standalone and multi-user but got problem at last when trying to access ui page or dashboard.
I followed instructions .
When using any control flows that require subdags like loops, nested pipelines, etc. the statuses update as soon as the first task within the dag completes. This is incorrect behavior as it should only show loading icon while sub tasks within the dag are still running.
Environment
How do you deploy Kubeflow Pipelines (KFP)? standalone and multi-user
KFP version: 2.4
To find the version number, See version number shows on bottom of KFP UI left sidenav. -->
Steps to reproduce
Or any other control flow that utilizes sub dags, i.e. loops, nested pipelines, exit handlers, etc.
Expected result
The subdag status should stay as loading until all tasks are completed.
Materials and reference
dag-status-behavior.webm
Labels
/area backend
Impacted by this bug? Give it a 👍.
The text was updated successfully, but these errors were encountered: