workers.rst 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580
  1. .. _guide-worker:
  2. ===============
  3. Workers Guide
  4. ===============
  5. .. contents::
  6. :local:
  7. .. _worker-starting:
  8. Starting the worker
  9. ===================
  10. You can start celeryd to run in the foreground by executing the command::
  11. $ celeryd --loglevel=INFO
  12. You probably want to use a daemonization tool to start
  13. `celeryd` in the background. See :ref:`daemonizing` for help
  14. using `celeryd` with popular daemonization tools.
  15. For a full list of available command line options see
  16. :mod:`~celery.bin.celeryd`, or simply do::
  17. $ celeryd --help
  18. You can also start multiple workers on the same machine. If you do so
  19. be sure to give a unique name to each individual worker by specifying a
  20. host name with the :option:`--hostname|-n` argument::
  21. $ celeryd --loglevel=INFO --concurrency=10 -n worker1.example.com
  22. $ celeryd --loglevel=INFO --concurrency=10 -n worker2.example.com
  23. $ celeryd --loglevel=INFO --concurrency=10 -n worker3.example.com
  24. .. _worker-stopping:
  25. Stopping the worker
  26. ===================
  27. Shutdown should be accomplished using the :sig:`TERM` signal.
  28. When shutdown is initiated the worker will finish all currently executing
  29. tasks before it actually terminates, so if these tasks are important you should
  30. wait for it to finish before doing anything drastic (like sending the :sig:`KILL`
  31. signal).
  32. If the worker won't shutdown after considerate time, for example because
  33. of tasks stuck in an infinite-loop, you can use the :sig:`KILL` signal to
  34. force terminate the worker, but be aware that currently executing tasks will
  35. be lost (unless the tasks have the :attr:`~celery.task.base.Task.acks_late`
  36. option set).
  37. Also as processes can't override the :sig:`KILL` signal, the worker will
  38. not be able to reap its children, so make sure to do so manually. This
  39. command usually does the trick::
  40. $ ps auxww | grep celeryd | awk '{print $2}' | xargs kill -9
  41. .. _worker-restarting:
  42. Restarting the worker
  43. =====================
  44. Other than stopping then starting the worker to restart, you can also
  45. restart the worker using the :sig:`HUP` signal::
  46. $ kill -HUP $pid
  47. The worker will then replace itself with a new instance using the same
  48. arguments as it was started with.
  49. .. _worker-concurrency:
  50. Concurrency
  51. ===========
  52. By default multiprocessing is used to perform concurrent execution of tasks,
  53. but you can also use :ref:`Eventlet <concurrency-eventlet>`. The number
  54. of worker processes/threads can be changed using the :option:`--concurrency`
  55. argument and defaults to the number of CPUs available on the machine.
  56. .. admonition:: Number of processes (multiprocessing)
  57. More worker processes are usually better, but there's a cut-off point where
  58. adding more processes affects performance in negative ways.
  59. There is even some evidence to support that having multiple celeryd's running,
  60. may perform better than having a single worker. For example 3 celeryd's with
  61. 10 worker processes each. You need to experiment to find the numbers that
  62. works best for you, as this varies based on application, work load, task
  63. run times and other factors.
  64. .. _worker-persistent-revokes:
  65. Persistent revokes
  66. ==================
  67. Revoking tasks works by sending a broadcast message to all the workers,
  68. the workers then keep a list of revoked tasks in memory.
  69. If you want tasks to remain revoked after worker restart you need to
  70. specify a file for these to be stored in, either by using the `--statedb`
  71. argument to :mod:`~celery.bin.celeryd` or the :setting:`CELERYD_STATE_DB`
  72. setting. See :setting:`CELERYD_STATE_DB` for more information.
  73. .. _worker-time-limits:
  74. Time limits
  75. ===========
  76. .. versionadded:: 2.0
  77. A single task can potentially run forever, if you have lots of tasks
  78. waiting for some event that will never happen you will block the worker
  79. from processing new tasks indefinitely. The best way to defend against
  80. this scenario happening is enabling time limits.
  81. The time limit (`--time-limit`) is the maximum number of seconds a task
  82. may run before the process executing it is terminated and replaced by a
  83. new process. You can also enable a soft time limit (`--soft-time-limit`),
  84. this raises an exception the task can catch to clean up before the hard
  85. time limit kills it:
  86. .. code-block:: python
  87. from myapp import celery
  88. from celery.exceptions import SoftTimeLimitExceeded
  89. @celery.task()
  90. def mytask():
  91. try:
  92. do_work()
  93. except SoftTimeLimitExceeded:
  94. clean_up_in_a_hurry()
  95. Time limits can also be set using the :setting:`CELERYD_TASK_TIME_LIMIT` /
  96. :setting:`CELERYD_SOFT_TASK_TIME_LIMIT` settings.
  97. .. note::
  98. Time limits do not currently work on Windows and other
  99. platforms that do not support the ``SIGUSR1`` signal.
  100. Changing time limits at runtime
  101. -------------------------------
  102. .. versionadded:: 2.3
  103. You can change the soft and hard time limits for a task by using the
  104. ``time_limit`` remote control command.
  105. Example changing the time limit for the ``tasks.crawl_the_web`` task
  106. to have a soft time limit of one minute, and a hard time limit of
  107. two minutes::
  108. >>> celery.control.time_limit("tasks.crawl_the_web",
  109. soft=60, hard=120, reply=True)
  110. [{'worker1.example.com': {'ok': 'time limits set successfully'}}]
  111. Only tasks that starts executing after the time limit change will be affected.
  112. .. _worker-maxtasksperchild:
  113. Max tasks per child setting
  114. ===========================
  115. .. versionadded:: 2.0
  116. With this option you can configure the maximum number of tasks
  117. a worker can execute before it's replaced by a new process.
  118. This is useful if you have memory leaks you have no control over
  119. for example from closed source C extensions.
  120. The option can be set using the `--maxtasksperchild` argument
  121. to `celeryd` or using the :setting:`CELERYD_MAX_TASKS_PER_CHILD` setting.
  122. .. _worker-autoreload:
  123. Autoreloading
  124. =============
  125. .. versionadded:: 2.5
  126. Starting :program:`celeryd` with the :option:`--autoreload` option will
  127. enable the worker to watch for file system changes to all imported task
  128. modules imported (and also any non-task modules added to the
  129. :setting:`CELERY_IMPORTS` setting or the :option:`-I|--include` option).
  130. This is an experimental feature intended for use in development only,
  131. using auto-reload in production is discouraged as the behavior of reloading
  132. a module in Python is undefined, and may cause hard to diagnose bugs and
  133. crashes. Celery uses the same approach as the auto-reloader found in e.g.
  134. the Django ``runserver`` command.
  135. When auto-reload is enabled the worker starts an additional thread
  136. that watches for changes in the file system. New modules are imported,
  137. and already imported modules are reloaded whenever a change is detected,
  138. and if the processes pool is used the child processes will finish the work
  139. they are doing and exit, so that they can be replaced by fresh processes
  140. effectively reloading the code.
  141. File system notification backends are pluggable, and it comes with three
  142. implementations:
  143. * inotify (Linux)
  144. Used if the :mod:`pyinotify` library is installed.
  145. If you are running on Linux this is the recommended implementation,
  146. to install the :mod:`pyinotify` library you have to run the following
  147. command::
  148. $ pip install pyinotify
  149. * kqueue (OS X/BSD)
  150. * stat
  151. The fallback implementation simply polls the files using ``stat`` and is very
  152. expensive.
  153. You can force an implementation by setting the :envvar:`CELERYD_FSNOTIFY`
  154. environment variable::
  155. $ env CELERYD_FSNOTIFY=stat celeryd -l info --autoreload
  156. .. _worker-remote-control:
  157. Remote control
  158. ==============
  159. .. versionadded:: 2.0
  160. Workers have the ability to be remote controlled using a high-priority
  161. broadcast message queue. The commands can be directed to all, or a specific
  162. list of workers.
  163. Commands can also have replies. The client can then wait for and collect
  164. those replies. Since there's no central authority to know how many
  165. workers are available in the cluster, there is also no way to estimate
  166. how many workers may send a reply, so the client has a configurable
  167. timeout — the deadline in seconds for replies to arrive in. This timeout
  168. defaults to one second. If the worker doesn't reply within the deadline
  169. it doesn't necessarily mean the worker didn't reply, or worse is dead, but
  170. may simply be caused by network latency or the worker being slow at processing
  171. commands, so adjust the timeout accordingly.
  172. In addition to timeouts, the client can specify the maximum number
  173. of replies to wait for. If a destination is specified, this limit is set
  174. to the number of destination hosts.
  175. .. seealso::
  176. The :program:`celeryctl` program is used to execute remote control
  177. commands from the command line. It supports all of the commands
  178. listed below. See :ref:`monitoring-celeryctl` for more information.
  179. .. _worker-broadcast-fun:
  180. The :func:`~celery.task.control.broadcast` function.
  181. ----------------------------------------------------
  182. This is the client function used to send commands to the workers.
  183. Some remote control commands also have higher-level interfaces using
  184. :func:`~celery.task.control.broadcast` in the background, like
  185. :func:`~celery.task.control.rate_limit` and :func:`~celery.task.control.ping`.
  186. Sending the :control:`rate_limit` command and keyword arguments::
  187. >>> from celery.task.control import broadcast
  188. >>> celery.control.broadcast("rate_limit",
  189. ... arguments={"task_name": "myapp.mytask",
  190. ... "rate_limit": "200/m"})
  191. This will send the command asynchronously, without waiting for a reply.
  192. To request a reply you have to use the `reply` argument::
  193. >>> celery.control.broadcast("rate_limit", {
  194. ... "task_name": "myapp.mytask", "rate_limit": "200/m"}, reply=True)
  195. [{'worker1.example.com': 'New rate limit set successfully'},
  196. {'worker2.example.com': 'New rate limit set successfully'},
  197. {'worker3.example.com': 'New rate limit set successfully'}]
  198. Using the `destination` argument you can specify a list of workers
  199. to receive the command::
  200. >>> celery.control.broadcast("rate_limit", {
  201. ... "task_name": "myapp.mytask",
  202. ... "rate_limit": "200/m"}, reply=True,
  203. ... destination=["worker1.example.com"])
  204. [{'worker1.example.com': 'New rate limit set successfully'}]
  205. Of course, using the higher-level interface to set rate limits is much
  206. more convenient, but there are commands that can only be requested
  207. using :func:`~celery.task.control.broadcast`.
  208. .. _worker-rate-limits:
  209. .. control:: rate_limit
  210. Rate limits
  211. -----------
  212. Example changing the rate limit for the `myapp.mytask` task to accept
  213. 200 tasks a minute on all servers::
  214. >>> celery.control.rate_limit("myapp.mytask", "200/m")
  215. Example changing the rate limit on a single host by specifying the
  216. destination host name::
  217. >>> celery.control.rate_limit("myapp.mytask", "200/m",
  218. ... destination=["worker1.example.com"])
  219. .. warning::
  220. This won't affect workers with the
  221. :setting:`CELERY_DISABLE_RATE_LIMITS` setting on. To re-enable rate limits
  222. then you have to restart the worker.
  223. .. control:: revoke
  224. Revoking tasks
  225. --------------
  226. All worker nodes keeps a memory of revoked task ids, either in-memory or
  227. persistent on disk (see :ref:`worker-persistent-revokes`).
  228. When a worker receives a revoke request it will skip executing
  229. the task, but it won't terminate an already executing task unless
  230. the `terminate` option is set.
  231. If `terminate` is set the worker child process processing the task
  232. will be terminated. The default signal sent is `TERM`, but you can
  233. specify this using the `signal` argument. Signal can be the uppercase name
  234. of any signal defined in the :mod:`signal` module in the Python Standard
  235. Library.
  236. Terminating a task also revokes it.
  237. **Example**
  238. ::
  239. >>> celery.control.revoke("d9078da5-9915-40a0-bfa1-392c7bde42ed")
  240. >>> celery.control.revoke("d9078da5-9915-40a0-bfa1-392c7bde42ed",
  241. ... terminate=True)
  242. >>> celery.control.revoke("d9078da5-9915-40a0-bfa1-392c7bde42ed",
  243. ... terminate=True, signal="SIGKILL")
  244. .. control:: shutdown
  245. Remote shutdown
  246. ---------------
  247. This command will gracefully shut down the worker remotely::
  248. >>> celery.control.broadcast("shutdown") # shutdown all workers
  249. >>> celery.control.broadcast("shutdown, destination="worker1.example.com")
  250. .. control:: ping
  251. Ping
  252. ----
  253. This command requests a ping from alive workers.
  254. The workers reply with the string 'pong', and that's just about it.
  255. It will use the default one second timeout for replies unless you specify
  256. a custom timeout::
  257. >>> celery.control.ping(timeout=0.5)
  258. [{'worker1.example.com': 'pong'},
  259. {'worker2.example.com': 'pong'},
  260. {'worker3.example.com': 'pong'}]
  261. :func:`~celery.task.control.ping` also supports the `destination` argument,
  262. so you can specify which workers to ping::
  263. >>> ping(['worker2.example.com', 'worker3.example.com'])
  264. [{'worker2.example.com': 'pong'},
  265. {'worker3.example.com': 'pong'}]
  266. .. _worker-enable-events:
  267. .. control:: enable_events
  268. .. control:: disable_events
  269. Enable/disable events
  270. ---------------------
  271. You can enable/disable events by using the `enable_events`,
  272. `disable_events` commands. This is useful to temporarily monitor
  273. a worker using :program:`celeryev`/:program:`celerymon`.
  274. .. code-block:: python
  275. >>> celery.control.broadcast("enable_events")
  276. >>> celery.control.broadcast("disable_events")
  277. Adding/Reloading modules
  278. ------------------------
  279. .. versionadded:: 2.5
  280. The remote control command ``pool_restart`` sends restart requests to
  281. the workers child processes. It is particularly useful for forcing
  282. the worker to import new modules, or for reloading already imported
  283. modules. This command does not interrupt executing tasks.
  284. Example
  285. ~~~~~~~
  286. Running the following command will result in the `foo` and `bar` modules
  287. being imported by the worker processes:
  288. .. code-block:: python
  289. >>> from celery.task.control import broadcast
  290. >>> celery.control.broadcast("pool_restart",
  291. ... arguments={"modules": ["foo", "bar"]})
  292. Use the ``reload`` argument to reload modules it has already imported:
  293. .. code-block:: python
  294. >>> celery.control.broadcast("pool_restart",
  295. ... arguments={"modules": ["foo"],
  296. ... "reload": True})
  297. If you don't specify any modules then all known tasks modules will
  298. be imported/reloaded:
  299. .. code-block:: python
  300. >>> celery.control.broadcast("pool_restart", arguments={"reload": True})
  301. The ``modules`` argument is a list of modules to modify. ``reload``
  302. specifies whether to reload modules if they have previously been imported.
  303. By default ``reload`` is disabled. The `pool_restart` command uses the
  304. Python :func:`reload` function to reload modules, or you can provide
  305. your own custom reloader by passing the ``reloader`` argument.
  306. .. note::
  307. Module reloading comes with caveats that are documented in :func:`reload`.
  308. Please read this documentation and make sure your modules are suitable
  309. for reloading.
  310. .. seealso::
  311. - http://pyunit.sourceforge.net/notes/reloading.html
  312. - http://www.indelible.org/ink/python-reloading/
  313. - http://docs.python.org/library/functions.html#reload
  314. .. _worker-custom-control-commands:
  315. Writing your own remote control commands
  316. ----------------------------------------
  317. Remote control commands are registered in the control panel and
  318. they take a single argument: the current
  319. :class:`~celery.worker.control.ControlDispatch` instance.
  320. From there you have access to the active
  321. :class:`~celery.worker.consumer.Consumer` if needed.
  322. Here's an example control command that restarts the broker connection:
  323. .. code-block:: python
  324. from celery.worker.control import Panel
  325. @Panel.register
  326. def reset_connection(panel):
  327. panel.logger.critical("Connection reset by remote control.")
  328. panel.consumer.reset_connection()
  329. return {"ok": "connection reset"}
  330. These can be added to task modules, or you can keep them in their own module
  331. then import them using the :setting:`CELERY_IMPORTS` setting::
  332. CELERY_IMPORTS = ("myapp.worker.control", )
  333. .. _worker-inspect:
  334. Inspecting workers
  335. ==================
  336. :class:`celery.task.control.inspect` lets you inspect running workers. It
  337. uses remote control commands under the hood.
  338. .. code-block:: python
  339. # Inspect all nodes.
  340. >>> i = celery.control.inspect()
  341. # Specify multiple nodes to inspect.
  342. >>> i = celery.control.inspect(["worker1.example.com",
  343. "worker2.example.com"])
  344. # Specify a single node to inspect.
  345. >>> i = celery.control.inspect("worker1.example.com")
  346. .. _worker-inspect-registered-tasks:
  347. Dump of registered tasks
  348. ------------------------
  349. You can get a list of tasks registered in the worker using the
  350. :meth:`~celery.task.control.inspect.registered`::
  351. >>> i.registered()
  352. [{'worker1.example.com': ['celery.delete_expired_task_meta',
  353. 'celery.execute_remote',
  354. 'celery.map_async',
  355. 'celery.ping',
  356. 'celery.task.http.HttpDispatchTask',
  357. 'tasks.add',
  358. 'tasks.sleeptask']}]
  359. .. _worker-inspect-active-tasks:
  360. Dump of currently executing tasks
  361. ---------------------------------
  362. You can get a list of active tasks using
  363. :meth:`~celery.task.control.inspect.active`::
  364. >>> i.active()
  365. [{'worker1.example.com':
  366. [{"name": "tasks.sleeptask",
  367. "id": "32666e9b-809c-41fa-8e93-5ae0c80afbbf",
  368. "args": "(8,)",
  369. "kwargs": "{}"}]}]
  370. .. _worker-inspect-eta-schedule:
  371. Dump of scheduled (ETA) tasks
  372. -----------------------------
  373. You can get a list of tasks waiting to be scheduled by using
  374. :meth:`~celery.task.control.inspect.scheduled`::
  375. >>> i.scheduled()
  376. [{'worker1.example.com':
  377. [{"eta": "2010-06-07 09:07:52", "priority": 0,
  378. "request": {
  379. "name": "tasks.sleeptask",
  380. "id": "1a7980ea-8b19-413e-91d2-0b74f3844c4d",
  381. "args": "[1]",
  382. "kwargs": "{}"}},
  383. {"eta": "2010-06-07 09:07:53", "priority": 0,
  384. "request": {
  385. "name": "tasks.sleeptask",
  386. "id": "49661b9a-aa22-4120-94b7-9ee8031d219d",
  387. "args": "[2]",
  388. "kwargs": "{}"}}]}]
  389. Note that these are tasks with an eta/countdown argument, not periodic tasks.
  390. .. _worker-inspect-reserved:
  391. Dump of reserved tasks
  392. ----------------------
  393. Reserved tasks are tasks that has been received, but is still waiting to be
  394. executed.
  395. You can get a list of these using
  396. :meth:`~celery.task.control.inspect.reserved`::
  397. >>> i.reserved()
  398. [{'worker1.example.com':
  399. [{"name": "tasks.sleeptask",
  400. "id": "32666e9b-809c-41fa-8e93-5ae0c80afbbf",
  401. "args": "(8,)",
  402. "kwargs": "{}"}]}]