Channels
datahub-flyte
scipy-2023-workshop
flyte-school
flyte-build
flyte-users-berlin
scipy-2023-sprint
auth
flyte-bazel
large-language-models
contribute
great-content
in-flyte-conversations
flyte-on-gcp
show-and-tell
flyte-github
linkedin-flyte
random
deployment
feature-discussions
flytelab
flytekit-java
integrations
ray-on-flyte
conference-talks
release
flyte-ui-ux
workflow-building-ui-proj
writing-w-sfloris
jobs
hacktoberfest-2022
torch-elastic
flyte-console
engineeringlabs
helsing-flyte
flyte-documentation
konan-integration
databricks-integration
ray-integration
wg-gpu-types
flytekit
ecosystem-unionml
scipy-2022-sprint
announcements
ask-the-community
flyte-deployment
introductions
events
Powered by
#announcements
Title
a
Alex Bain
05/11/2022, 1:13 AM
I am running a bunch of subworkflows from my parent workflow. I want to run them in serial (instead of in parallel). Can I chain them together like I can chain together normal Flyte tasks (i.e.
https://docs.flyte.org/projects/cookbook/en/latest/auto/core/control_flow/chain_tasks.html
)?
k
Kevin Su
05/11/2022, 1:44 AM
yes, you can chain subworkflow
Just like regular tasks
Copy code
@workflow def wf(): a = sub_wf() b = sub_wf() a >> b
7 Views
Post