| 1234567891011121314151617181920212223242526272829303132 |
- from celery.concurrency.base import apply_target, BasePool
- class TaskPool(BasePool):
- def __init__(self, *args, **kwargs):
- try:
- import threadpool
- except ImportError:
- raise ImportError(
- "The threaded pool requires the threadpool module.")
- self.WorkRequest = threadpool.WorkRequest
- self.ThreadPool = threadpool.ThreadPool
- super(TaskPool, self).__init__(*args, **kwargs)
- def on_start(self):
- self._pool = self.ThreadPool(self.limit)
- def on_stop(self):
- self._pool.dismissWorkers(self.limit, do_join=True)
- def on_apply(self, target, args=None, kwargs=None, callback=None,
- accept_callback=None, **_):
- req = self.WorkRequest(apply_target, (target, args, kwargs, callback,
- accept_callback))
- self._pool.putRequest(req)
- # threadpool also has callback support,
- # but for some reason the callback is not triggered
- # before you've collected the results.
- # Clear the results (if any), so it doesn't grow too large.
- self._pool._results_queue.queue.clear()
- return req
|