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
I'm using the Flyte sandbox on a PC have 20 cores and 32G memory.
I create a simple workflow with 2 nodes, and 1000 executions of it.
It takes about 40min before all workflows are in SUCCEEDED status.
Even the pods are all completed, the workflow is still RUNNING status for a long time.
Is the latency normal?
Durations:
Workflow code:
@task
def multiple(name: str, count: int) -> str:
return name * count
@task
def say_hello(name: str) -> str:
return f"hello world, {name}"
@workflow
def my_wf(name: str, count: int) -> str:
n = multiple(name=name, count=count)
res = say_hello(name=n)
return res
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I'm using the Flyte sandbox on a PC have 20 cores and 32G memory.
I create a simple workflow with 2 nodes, and 1000 executions of it.
It takes about 40min before all workflows are in
SUCCEEDED
status.Even the pods are all completed, the workflow is still
RUNNING
status for a long time.Is the latency normal?
Durations:
Workflow code:
Beta Was this translation helpful? Give feedback.
All reactions