https://prefect.io logo
b

BK Lau

02/02/2021, 10:34 PM
Q: Can the same workflow be submitted concurrently?. i.e. I want to run 2 instances of the same workflow at same time from a Prefect server. So I assume that some UUID must be generated under the hood by Prefect to allow this? I know in a
Argo Workflow
, some random string is generated and appended to a workflow to disambiquate 2 workflows having the same name.
j

Jim Crist-Harif

02/02/2021, 10:36 PM
Yes, the same flow can have multiple concurrent runs.
👍 1
b

BK Lau

02/02/2021, 10:37 PM
@Jim Crist-Harif So how does one distinguished one run from another? some UUID or...?
j

Jim Crist-Harif

02/02/2021, 10:37 PM
Each flow run has a flow run id associated with it, which is a uuid.
🙌 1
c

Chris White

02/02/2021, 10:55 PM
FYI you can also name your flow runs to help distinguish them
👍 2
2 Views