I am having a problem with my djang_q_task
table. It saves too many records than expected.
I have config like below:
Q_CLUSTER = {
'name': 'xxxx',
'workers': 8,
'recycle': 500,
'timeout': 600,
'compress': True,
'save_limit': 250,
'queue_limit': 500,
'cpu_affinity': 1,
'label': 'Django Q',....
With the save_limit
as 250, I am having more than 1M records in the django_q_task
table.
Anyone knows why does it save too many records? That causes me some memory issues.
best regards, Thanh Tran