Matthew Wild
f5f2755b63
mod_cloud_notify, mod_cron, mod_invites: Add 'prosody.' prefix to requires
2025-02-15 10:31:37 +00:00
Matthew Wild
d58c6ae7ca
mod_cron: Don't run tasks if loaded inside prosodyctl
...
It's common for modules to depend on mod_cron, and this can lead to it loading
inside prosodyctl, where we don't really want to run any cron tasks.
2025-01-07 18:06:29 +00:00
Kim Alvefur
01a44e88db
mod_cron: Fix log format to account for float that was integer before
2024-02-24 14:35:17 +01:00
Matthew Wild
69dc40ac35
mod_cron: Allow configuring various "internal" delay parameters
...
Notably, it is now possible to add a randomized spread factor to the check
interval.
2024-02-20 17:31:17 +00:00
Kim Alvefur
8c53b06add
mod_cron: Rebuild with new LuaFormatter settings (tabs!)
2023-11-30 18:42:56 +01:00
Matthew Wild
56d45091bd
mod_cron: Update Teal source and rebuild
2023-11-30 12:41:26 +00:00
Matthew Wild
090f4830bb
mod_cron: Rename variable to fix shadowing (#luacheck)
2023-11-30 11:42:52 +00:00
Matthew Wild
2524736225
mod_cron: Add shell command to list registered cron tasks with status
2023-11-30 11:38:59 +00:00
Kim Alvefur
7b882e4405
mod_cron: Make task frequencies configurable in overly generic manner
...
Requested feature for many modules, notably MAM and file sharing.
2023-10-22 18:58:02 +02:00
Kim Alvefur
da4111b997
mod_cron: Remove unused import [luacheck]
...
Use of datetime was removed in 6ac5ad578565
2023-10-15 16:41:25 +02:00
Kim Alvefur
9f21d5487c
mod_cron: Load last task run time inside task runner to fix async
...
This ensures that all interactions with storage happen inside an async
thread, allowing async waiting to be performed in storage drivers.
2023-10-14 22:32:33 +02:00
Kim Alvefur
3a071d87b8
mod_cron: Revert bbd3ac65640d
...
Maybe it is better to run daily and weekly tasks 'now' on the theory
that people set these things up during times that are appropriate for
maintenance already, so the same time next day or next week might be
fine for periodic cleanup.
2023-07-30 13:03:40 +02:00
Kim Alvefur
98922d54b1
plugins: Prefix module imports with prosody namespace
2023-03-24 13:15:28 +01:00
Kim Alvefur
38c67064b3
mod_cron: Fix recording last task run time #1751
...
The type checks, they do nothing!
Observed: Tasks that were supposed to run weekly or daily were running
each hour.
2022-05-05 14:10:59 +02:00
Kim Alvefur
e0e180aa9d
mod_cron: Allow for a small amount of timer drift
...
If the timer activates a bit early then a task might be just a few
seconds short of being allowed to run. This would run such a task rather
than wait another hour.
The value 0.5% chosen so that a weekly task does not run an entire hour
earlier than last time.
2022-01-15 09:09:24 +01:00
Kim Alvefur
d48fa1de17
mod_cron: Expose the One Timer via module environment
...
This makes it easier to reschedule or otherwise manipulate the timer
from e.g. the shell, which is handy for debugging.
2021-12-04 17:46:37 +01:00
Kim Alvefur
8aa16eaec0
mod_cron: Add a 'weekly' job frequency
2021-12-03 09:05:41 +01:00
Kim Alvefur
d6070eea1f
mod_cron: Initialize timestamp of new tasks to start of period
...
Makes it more generic so new periods (e.g. weekly etc) can be added
easily.
2021-12-03 09:01:09 +01:00
Kim Alvefur
914d3acbd5
mod_cron: Follow convention of imports at the top
2021-12-03 08:57:40 +01:00
Kim Alvefur
6f3409f3f2
mod_cron: Initialize daily tasks so they run around midnight UTC
...
Eventually the goal is to have daily tasks run while there is little
activity, but that will vary with the server and the usage patterns of
its users. This is a start anyway.
2021-12-03 00:11:31 +01:00
Kim Alvefur
630035a369
mod_cron: Initial commit of periodic task runner
...
A number of modules now have periodic tasks that need to run, e.g. for
cleaning out old messages or files. This has highlighted a need for
coordinating and optimizing scheduling of such tasks.
2021-11-21 15:50:36 +01:00