Workspace search and a command palette in Prefect Cloud
Find any object in your workspace by ID or search term, view and filter results on a dedicated page, and jump to any page or run common actions from a command palette.
New in Prefect: features, improvements, and fixes. For the complete record of every open source release, see the release notes.
Find any object in your workspace by ID or search term, view and filter results on a dedicated page, and jump to any page or run common actions from a command palette.
Prefect Cloud's spring launch week brought first-class dbt orchestration, infrastructure debugging in the run page, managed automations, config plugins, and per-workspace rate limits.
Replace @task with @materialize and Prefect tracks the tables, models, and files your workflows produce, and how they all connect.
Find relevant objects in your workspace by ID or a regular search term, view and filter results on a dedicated page, and navigate directly to any page in the application. A command palette runs common actions without leaving the keyboard, including:
...and many more.
Read the full story on the launch page.
When a dashboard throws garbage numbers at quarter-end, someone has to follow the breadcrumbs back through tasks, tables, and stray CSVs. That is asset lineage in the real world, and Prefect now tracks it without asking you to contort your workflow around asset definitions. Tell Prefect what a function produces:
@materialize("s3://bucket/important-data.csv")
def write_data():
# writes s3://bucket/important-data.csv
...Prefect builds the lineage graph from there: what each workflow produces, when it last ran, and how your outputs depend on each other.
Read the announcement post for the full story, or start with the assets documentation.