something I’ve noticed - it so happens that I have...
# pacc-june-14-2023
j
something I’ve noticed - it so happens that I have separate
.py
files between the two labs we’ve done, but without thinking I’ve named the top-level flows in each file
pipeline()
. In the Prefect UI I think they seem to be treated as one flow, but the flow runs will have different contents / tasks depending on which file I run. Seems like this could be helpful or really confusing - any thoughts about how this might work in practice?
s
Ideally, you want to programmatically modify the naming convention of your flows to help with searchability within the UI. So you can set the name for your flows you create like load_data_{production_region} to have a more hands on approach to see what your flows are doing
j
Deployments will be what you’ll use. You’ll see that after the break.
👍 1