Adam
07/06/2025, 6:29 PMMarvin
07/06/2025, 6:30 PMMarvin
07/06/2025, 6:30 PMpython
flow.from_source(...).deploy(
name="my-deployment",
tags=["prod", "etl", "finance"]
)
2. Naming Conventions: While not a grouping mechanism per se, you can use consistent naming patterns with prefixes or suffixes. For example:
- finance-daily-etl
- finance-weekly-reports
- marketing-daily-metrics
This allows you to easily filter deployments using the search functionality in the UI.
3. Work Pools: While primarily for infrastructure organization, work pools can also serve as a way to logically group related deployments. You can filter deployments by their associated work pool in the UI.
The tags approach is probably the most flexible solution, as it allows for multiple overlapping categorizations and doesn't affect the deployment name itself. You can add or remove tags later without changing the deployment's identity.
For more details on deployments and their management, you can check out the deployments concepts documentation.