Skip to content

Commit 385d658

Browse files
committed
Run gc.collect after every job
1 parent 5f1cc8c commit 385d658

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

bolt-jobs/bolt/jobs/workers.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import gc
12
import logging
23
import multiprocessing
34
import os
@@ -194,6 +195,8 @@ def process_job(job_uuid):
194195
job_result.source,
195196
duration,
196197
)
198+
199+
del job_result
197200
except Exception as e:
198201
# Raising exceptions inside the worker process doesn't
199202
# seem to be caught/shown anywhere as configured.
@@ -202,3 +205,4 @@ def process_job(job_uuid):
202205
logger.exception(e)
203206
finally:
204207
request_finished.send(sender=None)
208+
gc.collect()

0 commit comments

Comments
 (0)