You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This was accelerated by the fact that "Articles by Quality" and "Category class" templates were merged, which basically generated a superfluous log entry for every article. However, even if that hadn't happened, the logs table would have eventually run out of space, since it only grows over time.
Since we only ever show logs for the past 7 days, we don't need to hold data older than 7 days. Although #49 would make this easier and bring its own benefits, at the very least we could have a cron job that deletes data older than 7 days, or do it as part of generating the logs.
The text was updated successfully, but these errors were encountered:
The
logging
table is set up to grow indefinitely. Recently we had an outage because it got too full:This was accelerated by the fact that "Articles by Quality" and "Category class" templates were merged, which basically generated a superfluous log entry for every article. However, even if that hadn't happened, the logs table would have eventually run out of space, since it only grows over time.
Since we only ever show logs for the past 7 days, we don't need to hold data older than 7 days. Although #49 would make this easier and bring its own benefits, at the very least we could have a cron job that deletes data older than 7 days, or do it as part of generating the logs.
The text was updated successfully, but these errors were encountered: