<@ULVA73B9P> when i have scheduled 3 flows from a ...
# ask-marvin
d
@Marvin when i have scheduled 3 flows from a deployment. Only one gets triggered
m
It seems like you're experiencing issues with scheduled flows not being triggered as expected. Here are a few things to consider based on the Prefect documentation and GitHub issues: 1. Concurrency and Priority: Prefect uses work pools and queues to manage flow execution. If there's a concurrency limit or priority setting in your work pool, it might be affecting which flows are executed. Ensure that your work pool configuration does not inadvertently prioritize one flow over others or limit concurrent executions. Learn more about work pools and concurrency. 2. Deployment Configuration: Double-check your deployment configuration to ensure that all flows are correctly scheduled. It's possible that only one flow is correctly set up to trigger. Review the deployment setup. 3. Known Issues: There have been issues reported related to duplicate flow runs and flow runs being marked incorrectly. While these might not directly relate to your problem, they indicate that there could be unexpected behavior in certain configurations. You might want to check for any updates or patches that address these issues. If these suggestions don't resolve your issue, consider checking your Prefect logs for any errors or warnings that might provide more insight into why only one flow is being triggered.