-
Notifications
You must be signed in to change notification settings - Fork 150
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
schedule is not executed according to the schedule #639
Comments
I have 15 dags scheduled at |
Could you please share the scheduler's log? Are the DAGs on NFS or local disk? |
The dags are on nfs. We can move them to local directory. Does nfs has something to do about it? |
schedule: "*/30 * * * " schedule: "*/33 * * * *" |
The file event watcher may not function properly when DAG files are stored on NFS, which can prevent the scheduler from automatically reloading updated DAG files. In such cases, you'd need to manually restart the scheduler process to ensure it picks up the latest DAG files and their scheduling configurations. For a more robust solution in future versions, I'm considering reading DAGs directly from a GitHub branch or some type of database. This approach should resolve these issues. |
我用的不是nfs,我的问题不是没有调度起来,而是当调用频次不是整 十分钟 的时候 调度会近似到 整十分钟 |
我的 schedule: "*/33 * * * *"
但是执行时间表是: 00:00:00 00:33:00 01:00:00 01:33:00 ...
这并不是每33分钟执行一次
The text was updated successfully, but these errors were encountered: