<@ULVA73B9P> can I create equal flow_run_names but...
# ask-marvin
m
@Marvin can I create equal flow_run_names but related to different deployments? do I create problems?
m
Yes, you can create flow run names that are equal but related to different deployments without causing any inherent problems. However, there are some considerations you should keep in mind: - Prefixing Deployment Names: It's a good practice to prefix the deployment name with its flow name to avoid confusion. For example, you can use
my_flow/deployment_1
and
my_other_flow/deployment_1
. - Unique Identification: Even if the flow run names are the same, they will still be uniquely identified by their deployment IDs. Sources: - Prefect Deployment Guide - Prefect Subflows If you prefix your deployment names properly, it will help manage and avoid any potential confusion related to tracking and logging. Would you like further clarification on this topic?