Koen
02/20/2025, 9:51 AMMarvin
02/20/2025, 9:52 AMprefect.yaml
file. This file contains a schedules
section that defines when to execute runs for your deployments. You can create or modify this file using the prefect deploy
command, which will guide you through setting up schedules interactively.
For more detailed information on how to add schedules, you might want to refer to the Prefect documentation here.
If you're looking for the actual scheduling service, it is a built-in service of Prefect Cloud and starts automatically when you run prefect server start
. This service evaluates each deployment's schedules and creates new runs as needed.Koen
02/20/2025, 9:53 AMMarvin
02/20/2025, 9:53 AMprefect.yaml
file is typically located in the root directory of your repository or project where your flow code resides. It is created when you initialize your deployment configuration using the CLI command prefect init
. This command can be run in any directory or repository that stores your flow code.
For more details on how to use and configure the prefect.yaml
file, you can refer to the Prefect documentation here.