-
Beta Was this translation helpful? Give feedback.
Answered by
GDay
Nov 22, 2023
Replies: 1 comment 4 replies
-
Do you think that's all from django-q2? Because that sounds very high. Django-q2 does poll the database quite often for new tasks. You can indeed change the |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks a lot for reporting back. I wasn't aware that django-q(2) is so heavy on bandwidth calls. 36GB is absolutely insane.
The status saving on the guard cycle is in most cases excessive, especially with very few schedules/tasks. I will rewrite that to first check (compared to a local object) if we actually need to update the status. With that, bandwidth would likely get even lower for you as it would only need to update 2 times a day for your daily scheduled tasks, instead of every 20 seconds now.