whatsnew-3.1.rst 43 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272
  1. .. _whatsnew-3.1:
  2. ===========================================
  3. What's new in Celery 3.1 (Cipater)
  4. ===========================================
  5. :Author: Ask Solem (ask at celeryproject.org)
  6. .. sidebar:: Change history
  7. What's new documents describe the changes in major versions,
  8. we also have a :ref:`changelog` that lists the changes in bugfix
  9. releases (0.0.x), while older series are archived under the :ref:`history`
  10. section.
  11. Celery is a simple, flexible and reliable distributed system to
  12. process vast amounts of messages, while providing operations with
  13. the tools required to maintain such a system.
  14. It's a task queue with focus on real-time processing, while also
  15. supporting task scheduling.
  16. Celery has a large and diverse community of users and contributors,
  17. you should come join us :ref:`on IRC <irc-channel>`
  18. or :ref:`our mailing-list <mailing-list>`.
  19. To read more about Celery you should go read the :ref:`introduction <intro>`.
  20. While this version is backward compatible with previous versions
  21. it's important that you read the following section.
  22. This version is officially supported on CPython 2.6, 2.7 and 3.3,
  23. and also supported on PyPy.
  24. .. _`website`: http://celeryproject.org/
  25. .. topic:: Table of Contents
  26. Make sure you read the important notes before upgrading to this version.
  27. .. contents::
  28. :local:
  29. :depth: 2
  30. Preface
  31. =======
  32. Deadlocks have long plagued our workers, and while uncommon they are
  33. not acceptable. They are also infamous for being extremely hard to diagnose
  34. and reproduce, so to make this job easier I wrote a stress test suite that
  35. bombards the worker with different tasks in an attempt to break it.
  36. What happens if thousands of worker child processes are killed every
  37. second? what if we also kill the broker connection every 10
  38. seconds? These are examples of what the stress test suite will do to the
  39. worker, and it reruns these tests using different configuration combinations
  40. to find edge case bugs.
  41. The end result was that I had to rewrite the prefork pool to avoid the use
  42. of the POSIX semaphore. This was extremely challenging, but after
  43. months of hard work the worker now finally passes the stress test suite.
  44. There's probably more bugs to find, but the good news is
  45. that we now have a tool to reproduce them, so should you be so unlucky to
  46. experience a bug then we'll write a test for it and squash it!
  47. Note that I have also moved many broker transports into experimental status:
  48. the only transports recommended for production use today is RabbitMQ and
  49. Redis.
  50. I don't have the resources to maintain all of them, so bugs are left
  51. unresolved. I wish that someone will step up and take responsibility for
  52. these transports or donate resources to improve them, but as the situation
  53. is now I don't think the quality is up to date with the rest of the code-base
  54. so I cannot recommend them for production use.
  55. The next version of Celery 4.0 will focus on performance and removing
  56. rarely used parts of the library. Work has also started on a new message
  57. protocol, supporting multiple languages and more. The initial draft can
  58. be found :ref:`here <message-protocol-task-v2>`.
  59. This has probably been the hardest release I've worked on, so no
  60. introduction to this changelog would be complete without a massive
  61. thank you to everyone who contributed and helped me test it!
  62. Thank you for your support!
  63. *— Ask Solem*
  64. .. _v310-important:
  65. Important Notes
  66. ===============
  67. Dropped support for Python 2.5
  68. ------------------------------
  69. Celery now requires Python 2.6 or later.
  70. The new dual code base runs on both Python 2 and 3, without
  71. requiring the ``2to3`` porting tool.
  72. .. note::
  73. This is also the last version to support Python 2.6! From Celery 4.0 and
  74. onwards Python 2.7 or later will be required.
  75. .. _last-version-to-enable-pickle:
  76. Last version to enable Pickle by default
  77. ----------------------------------------
  78. Starting from Celery 4.0 the default serializer will be json.
  79. If you depend on pickle being accepted you should be prepared
  80. for this change by explicitly allowing your worker
  81. to consume pickled messages using the :setting:`CELERY_ACCEPT_CONTENT`
  82. setting:
  83. .. code-block:: python
  84. CELERY_ACCEPT_CONTENT = ['pickle', 'json', 'msgpack', 'yaml']
  85. Make sure you only select the serialization formats you'll actually be using,
  86. and make sure you have properly secured your broker from unwanted access
  87. (see the :ref:`Security Guide <guide-security>`).
  88. The worker will emit a deprecation warning if you don't define this setting.
  89. .. topic:: for Kombu users
  90. Kombu 3.0 no longer accepts pickled messages by default, so if you
  91. use Kombu directly then you have to configure your consumers:
  92. see the :ref:`Kombu 3.0 Changelog <kombu:version-3.0.0>` for more
  93. information.
  94. Old command-line programs removed and deprecated
  95. ------------------------------------------------
  96. Everyone should move to the new :program:`celery` umbrella
  97. command, so we are incrementally deprecating the old command names.
  98. In this version we've removed all commands that are not used
  99. in init scripts. The rest will be removed in 4.0.
  100. +-------------------+--------------+-------------------------------------+
  101. | Program | New Status | Replacement |
  102. +===================+==============+=====================================+
  103. | ``celeryd`` | *DEPRECATED* | :program:`celery worker` |
  104. +-------------------+--------------+-------------------------------------+
  105. | ``celerybeat`` | *DEPRECATED* | :program:`celery beat` |
  106. +-------------------+--------------+-------------------------------------+
  107. | ``celeryd-multi`` | *DEPRECATED* | :program:`celery multi` |
  108. +-------------------+--------------+-------------------------------------+
  109. | ``celeryctl`` | **REMOVED** | :program:`celery inspect|control` |
  110. +-------------------+--------------+-------------------------------------+
  111. | ``celeryev`` | **REMOVED** | :program:`celery events` |
  112. +-------------------+--------------+-------------------------------------+
  113. | ``camqadm`` | **REMOVED** | :program:`celery amqp` |
  114. +-------------------+--------------+-------------------------------------+
  115. If this is not a new installation then you may want to remove the old
  116. commands:
  117. .. code-block:: console
  118. $ pip uninstall celery
  119. $ # repeat until it fails
  120. # ...
  121. $ pip uninstall celery
  122. $ pip install celery
  123. Please run :program:`celery --help` for help using the umbrella command.
  124. .. _v310-news:
  125. News
  126. ====
  127. Prefork Pool Improvements
  128. -------------------------
  129. These improvements are only active if you use an async capable
  130. transport. This means only RabbitMQ (AMQP) and Redis are supported
  131. at this point and other transports will still use the thread-based fallback
  132. implementation.
  133. - Pool is now using one IPC queue per child process.
  134. Previously the pool shared one queue between all child processes,
  135. using a POSIX semaphore as a mutex to achieve exclusive read and write
  136. access.
  137. The POSIX semaphore has now been removed and each child process
  138. gets a dedicated queue. This means that the worker will require more
  139. file descriptors (two descriptors per process), but it also means
  140. that performance is improved and we can send work to individual child
  141. processes.
  142. POSIX semaphores are not released when a process is killed, so killing
  143. processes could lead to a deadlock if it happened while the semaphore was
  144. acquired. There is no good solution to fix this, so the best option
  145. was to remove the semaphore.
  146. - Asynchronous write operations
  147. The pool now uses async I/O to send work to the child processes.
  148. - Lost process detection is now immediate.
  149. If a child process is killed or exits mysteriously the pool previously
  150. had to wait for 30 seconds before marking the task with a
  151. :exc:`~celery.exceptions.WorkerLostError`. It had to do this because
  152. the outqueue was shared between all processes, and the pool could not
  153. be certain whether the process completed the task or not. So an arbitrary
  154. timeout of 30 seconds was chosen, as it was believed that the outqueue
  155. would have been drained by this point.
  156. This timeout is no longer necessary, and so the task can be marked as
  157. failed as soon as the pool gets the notification that the process exited.
  158. - Rare race conditions fixed
  159. Most of these bugs were never reported to us, but were discovered while
  160. running the new stress test suite.
  161. Caveats
  162. ~~~~~~~
  163. .. topic:: Long running tasks
  164. The new pool will send tasks to a child process as long as the process
  165. inqueue is writable, and since the socket is buffered this means
  166. that the processes are, in effect, prefetching tasks.
  167. This benefits performance but it also means that other tasks may be stuck
  168. waiting for a long running task to complete::
  169. -> send T1 to Process A
  170. # A executes T1
  171. -> send T2 to Process B
  172. # B executes T2
  173. <- T2 complete
  174. -> send T3 to Process A
  175. # A still executing T1, T3 stuck in local buffer and
  176. # will not start until T1 returns
  177. The buffer size varies based on the operating system: some may
  178. have a buffer as small as 64kb but on recent Linux versions the buffer
  179. size is 1MB (can only be changed system wide).
  180. You can disable this prefetching behavior by enabling the :option:`-Ofair`
  181. worker option:
  182. .. code-block:: console
  183. $ celery -A proj worker -l info -Ofair
  184. With this option enabled the worker will only write to workers that are
  185. available for work, disabling the prefetch behavior.
  186. .. topic:: Max tasks per child
  187. If a process exits and pool prefetch is enabled the worker may have
  188. already written many tasks to the process inqueue, and these tasks
  189. must then be moved back and rewritten to a new process.
  190. This is very expensive if you have ``--maxtasksperchild`` set to a low
  191. value (e.g. less than 10), so if you need to enable this option
  192. you should also enable ``-Ofair`` to turn off the prefetching behavior.
  193. Django supported out of the box
  194. -------------------------------
  195. Celery 3.0 introduced a shiny new API, but unfortunately did not
  196. have a solution for Django users.
  197. The situation changes with this version as Django is now supported
  198. in core and new Django users coming to Celery are now expected
  199. to use the new API directly.
  200. The Django community has a convention where there's a separate
  201. django-x package for every library, acting like a bridge between
  202. Django and the library.
  203. Having a separate project for Django users has been a pain for Celery,
  204. with multiple issue trackers and multiple documentation
  205. sources, and then lastly since 3.0 we even had different APIs.
  206. With this version we challenge that convention and Django users will
  207. use the same library, the same API and the same documentation as
  208. everyone else.
  209. There is no rush to port your existing code to use the new API,
  210. but if you would like to experiment with it you should know that:
  211. - You need to use a Celery application instance.
  212. The new Celery API introduced in 3.0 requires users to instantiate the
  213. library by creating an application:
  214. .. code-block:: python
  215. from celery import Celery
  216. app = Celery()
  217. - You need to explicitly integrate Celery with Django
  218. Celery will not automatically use the Django settings, so you can
  219. either configure Celery separately or you can tell it to use the Django
  220. settings with:
  221. .. code-block:: python
  222. app.config_from_object('django.conf:settings')
  223. Neither will it automatically traverse your installed apps to find task
  224. modules. If you want this behavior, you must explictly pass a list of Django instances to the Celery app:
  225. .. code-block:: python
  226. from django.conf import settings
  227. app.autodiscover_tasks(lambda: settings.INSTALLED_APPS)
  228. - You no longer use ``manage.py``
  229. Instead you use the :program:`celery` command directly:
  230. .. code-block:: console
  231. $ celery -A proj worker -l info
  232. For this to work your app module must store the :envvar:`DJANGO_SETTINGS_MODULE`
  233. environment variable, see the example in the :ref:`Django
  234. guide <django-first-steps>`.
  235. To get started with the new API you should first read the :ref:`first-steps`
  236. tutorial, and then you should read the Django-specific instructions in
  237. :ref:`django-first-steps`.
  238. The fixes and improvements applied by the django-celery library are now
  239. automatically applied by core Celery when it detects that
  240. the :envvar:`DJANGO_SETTINGS_MODULE` environment variable is set.
  241. The distribution ships with a new example project using Django
  242. in :file:`examples/django`:
  243. https://github.com/celery/celery/tree/3.1/examples/django
  244. Some features still require the :pypi:`django-celery` library:
  245. - Celery does not implement the Django database or cache result backends.
  246. - Celery does not ship with the database-based periodic task
  247. scheduler.
  248. .. note::
  249. If you're still using the old API when you upgrade to Celery 3.1
  250. then you must make sure that your settings module contains
  251. the ``djcelery.setup_loader()`` line, since this will
  252. no longer happen as a side-effect of importing the :pypi:`django-celery`
  253. module.
  254. New users (or if you have ported to the new API) don't need the ``setup_loader``
  255. line anymore, and must make sure to remove it.
  256. Events are now ordered using logical time
  257. -----------------------------------------
  258. Keeping physical clocks in perfect sync is impossible, so using
  259. timestamps to order events in a distributed system is not reliable.
  260. Celery event messages have included a logical clock value for some time,
  261. but starting with this version that field is also used to order them.
  262. Also, events now record timezone information
  263. by including a new ``utcoffset`` field in the event message.
  264. This is a signed integer telling the difference from UTC time in hours,
  265. so e.g. an event sent from the Europe/London timezone in daylight savings
  266. time will have an offset of 1.
  267. :class:`@events.Receiver` will automatically convert the timestamps
  268. to the local timezone.
  269. .. note::
  270. The logical clock is synchronized with other nodes
  271. in the same cluster (neighbors), so this means that the logical
  272. epoch will start at the point when the first worker in the cluster
  273. starts.
  274. If all of the workers are shutdown the clock value will be lost
  275. and reset to 0. To protect against this, you should specify
  276. :option:`--statedb` so that the worker can persist the clock
  277. value at shutdown.
  278. You may notice that the logical clock is an integer value and
  279. increases very rapidly. Do not worry about the value overflowing
  280. though, as even in the most busy clusters it may take several
  281. millennia before the clock exceeds a 64 bits value.
  282. New worker node name format (``name@host``)
  283. -------------------------------------------
  284. Node names are now constructed by two elements: name and hostname separated by '@'.
  285. This change was made to more easily identify multiple instances running
  286. on the same machine.
  287. If a custom name is not specified then the
  288. worker will use the name 'celery' by default, resulting in a
  289. fully qualified node name of 'celery@hostname':
  290. .. code-block:: console
  291. $ celery worker -n example.com
  292. celery@example.com
  293. To also set the name you must include the @:
  294. .. code-block:: console
  295. $ celery worker -n worker1@example.com
  296. worker1@example.com
  297. The worker will identify itself using the fully qualified
  298. node name in events and broadcast messages, so where before
  299. a worker would identify itself as 'worker1.example.com', it will now
  300. use 'celery@worker1.example.com'.
  301. Remember that the ``-n`` argument also supports simple variable
  302. substitutions, so if the current hostname is *george.example.com*
  303. then the ``%h`` macro will expand into that:
  304. .. code-block:: console
  305. $ celery worker -n worker1@%h
  306. worker1@george.example.com
  307. The available substitutions are as follows:
  308. +---------------+---------------------------------------+
  309. | Variable | Substitution |
  310. +===============+=======================================+
  311. | ``%h`` | Full hostname (including domain name) |
  312. +---------------+---------------------------------------+
  313. | ``%d`` | Domain name only |
  314. +---------------+---------------------------------------+
  315. | ``%n`` | Hostname only (without domain name) |
  316. +---------------+---------------------------------------+
  317. | ``%%`` | The character ``%`` |
  318. +---------------+---------------------------------------+
  319. Bound tasks
  320. -----------
  321. The task decorator can now create "bound tasks", which means that the
  322. task will receive the ``self`` argument.
  323. .. code-block:: python
  324. @app.task(bind=True)
  325. def send_twitter_status(self, oauth, tweet):
  326. try:
  327. twitter = Twitter(oauth)
  328. twitter.update_status(tweet)
  329. except (Twitter.FailWhaleError, Twitter.LoginError) as exc:
  330. raise self.retry(exc=exc)
  331. Using *bound tasks* is now the recommended approach whenever
  332. you need access to the task instance or request context.
  333. Previously one would have to refer to the name of the task
  334. instead (``send_twitter_status.retry``), but this could lead to problems
  335. in some configurations.
  336. Mingle: Worker synchronization
  337. ------------------------------
  338. The worker will now attempt to synchronize with other workers in
  339. the same cluster.
  340. Synchronized data currently includes revoked tasks and logical clock.
  341. This only happens at startup and causes a one second startup delay
  342. to collect broadcast responses from other workers.
  343. You can disable this bootstep using the ``--without-mingle`` argument.
  344. Gossip: Worker <-> Worker communication
  345. ---------------------------------------
  346. Workers are now passively subscribing to worker related events like
  347. heartbeats.
  348. This means that a worker knows what other workers are doing and
  349. can detect if they go offline. Currently this is only used for clock
  350. synchronization, but there are many possibilities for future additions
  351. and you can write extensions that take advantage of this already.
  352. Some ideas include consensus protocols, reroute task to best worker (based on
  353. resource usage or data locality) or restarting workers when they crash.
  354. We believe that although this is a small addition, it opens
  355. amazing possibilities.
  356. You can disable this bootstep using the ``--without-gossip`` argument.
  357. Bootsteps: Extending the worker
  358. -------------------------------
  359. By writing bootsteps you can now easily extend the consumer part
  360. of the worker to add additional features, like custom message consumers.
  361. The worker has been using bootsteps for some time, but these were never
  362. documented. In this version the consumer part of the worker
  363. has also been rewritten to use bootsteps and the new :ref:`guide-extending`
  364. guide documents examples extending the worker, including adding
  365. custom message consumers.
  366. See the :ref:`guide-extending` guide for more information.
  367. .. note::
  368. Bootsteps written for older versions will not be compatible
  369. with this version, as the API has changed significantly.
  370. The old API was experimental and internal but should you be so unlucky
  371. to use it then please contact the mailing-list and we will help you port
  372. the bootstep to the new API.
  373. New RPC result backend
  374. ----------------------
  375. This new experimental version of the ``amqp`` result backend is a good
  376. alternative to use in classical RPC scenarios, where the process that initiates
  377. the task is always the process to retrieve the result.
  378. It uses Kombu to send and retrieve results, and each client
  379. uses a unique queue for replies to be sent to. This avoids
  380. the significant overhead of the original amqp result backend which creates
  381. one queue per task.
  382. By default results sent using this backend will not persist, so they won't
  383. survive a broker restart. You can enable
  384. the :setting:`CELERY_RESULT_PERSISTENT` setting to change that.
  385. .. code-block:: python
  386. CELERY_RESULT_BACKEND = 'rpc'
  387. CELERY_RESULT_PERSISTENT = True
  388. Note that chords are currently not supported by the RPC backend.
  389. Time limits can now be set by the client
  390. ----------------------------------------
  391. Two new options have been added to the Calling API: ``time_limit`` and
  392. ``soft_time_limit``:
  393. .. code-block:: pycon
  394. >>> res = add.apply_async((2, 2), time_limit=10, soft_time_limit=8)
  395. >>> res = add.subtask((2, 2), time_limit=10, soft_time_limit=8).delay()
  396. >>> res = add.s(2, 2).set(time_limit=10, soft_time_limit=8).delay()
  397. Contributed by Mher Movsisyan.
  398. Redis: Broadcast messages and virtual hosts
  399. -------------------------------------------
  400. Broadcast messages are currently seen by all virtual hosts when
  401. using the Redis transport. You can now fix this by enabling a prefix to all channels
  402. so that the messages are separated:
  403. .. code-block:: python
  404. BROKER_TRANSPORT_OPTIONS = {'fanout_prefix': True}
  405. Note that you'll not be able to communicate with workers running older
  406. versions or workers that does not have this setting enabled.
  407. This setting will be the default in a future version.
  408. Related to Issue #1490.
  409. :pypi:`pytz` replaces :pypi:`python-dateutil` dependency
  410. --------------------------------------------------------
  411. Celery no longer depends on the :pypi:`python-dateutil` library,
  412. but instead a new dependency on the :pypi:`pytz` library was added.
  413. The :pypi:`pytz` library was already recommended for accurate timezone support.
  414. This also means that dependencies are the same for both Python 2 and
  415. Python 3, and that the :file:`requirements/default-py3k.txt` file has
  416. been removed.
  417. Support for Setuptools extra requirements
  418. -----------------------------------------
  419. Pip now supports the :pypi:`setuptools` extra requirements format,
  420. so we have removed the old bundles concept, and instead specify
  421. setuptools extras.
  422. You install extras by specifying them inside brackets:
  423. .. code-block:: console
  424. $ pip install celery[redis,mongodb]
  425. The above will install the dependencies for Redis and MongoDB. You can list
  426. as many extras as you want.
  427. .. warning::
  428. You can't use the ``celery-with-*`` packages anymore, as these will not be
  429. updated to use Celery 3.1.
  430. +-------------+-------------------------+---------------------------+
  431. | Extension | Requirement entry | Type |
  432. +=============+=========================+===========================+
  433. | Redis | ``celery[redis]`` | transport, result backend |
  434. +-------------+-------------------------+---------------------------+
  435. | MongoDB | ``celery[mongodb]`` | transport, result backend |
  436. +-------------+-------------------------+---------------------------+
  437. | CouchDB | ``celery[couchdb]`` | transport |
  438. +-------------+-------------------------+---------------------------+
  439. | Beanstalk | ``celery[beanstalk]`` | transport |
  440. +-------------+-------------------------+---------------------------+
  441. | ZeroMQ | ``celery[zeromq]`` | transport |
  442. +-------------+-------------------------+---------------------------+
  443. | Zookeeper | ``celery[zookeeper]`` | transport |
  444. +-------------+-------------------------+---------------------------+
  445. | SQLAlchemy | ``celery[sqlalchemy]`` | transport, result backend |
  446. +-------------+-------------------------+---------------------------+
  447. | librabbitmq | ``celery[librabbitmq]`` | transport (C amqp client) |
  448. +-------------+-------------------------+---------------------------+
  449. The complete list with examples is found in the :ref:`bundles` section.
  450. ``subtask.__call__()`` now executes the task directly
  451. -----------------------------------------------------
  452. A misunderstanding led to ``Signature.__call__`` being an alias of
  453. ``.delay`` but this does not conform to the calling API of ``Task`` which
  454. calls the underlying task method.
  455. This means that:
  456. .. code-block:: python
  457. @app.task
  458. def add(x, y):
  459. return x + y
  460. add.s(2, 2)()
  461. now does the same as calling the task directly:
  462. .. code-block:: pycon
  463. >>> add(2, 2)
  464. In Other News
  465. -------------
  466. - Now depends on :ref:`Kombu 3.0 <kombu:version-3.0.0>`.
  467. - Now depends on :pypi:`billiard` version 3.3.
  468. - Worker will now crash if running as the root user with pickle enabled.
  469. - Canvas: ``group.apply_async`` and ``chain.apply_async`` no longer starts
  470. separate task.
  471. That the group and chord primitives supported the "calling API" like other
  472. subtasks was a nice idea, but it was useless in practice and often
  473. confused users. If you still want this behavior you can define a
  474. task to do it for you.
  475. - New method ``Signature.freeze()`` can be used to "finalize"
  476. signatures/subtask.
  477. Regular signature:
  478. .. code-block:: pycon
  479. >>> s = add.s(2, 2)
  480. >>> result = s.freeze()
  481. >>> result
  482. <AsyncResult: ffacf44b-f8a1-44e9-80a3-703150151ef2>
  483. >>> s.delay()
  484. <AsyncResult: ffacf44b-f8a1-44e9-80a3-703150151ef2>
  485. Group:
  486. .. code-block:: pycon
  487. >>> g = group(add.s(2, 2), add.s(4, 4))
  488. >>> result = g.freeze()
  489. <GroupResult: e1094b1d-08fc-4e14-838e-6d601b99da6d [
  490. 70c0fb3d-b60e-4b22-8df7-aa25b9abc86d,
  491. 58fcd260-2e32-4308-a2ea-f5be4a24f7f4]>
  492. >>> g()
  493. <GroupResult: e1094b1d-08fc-4e14-838e-6d601b99da6d [70c0fb3d-b60e-4b22-8df7-aa25b9abc86d, 58fcd260-2e32-4308-a2ea-f5be4a24f7f4]>
  494. - Chord exception behavior defined (Issue #1172).
  495. From this version the chord callback will change state to FAILURE
  496. when a task part of a chord raises an exception.
  497. See more at :ref:`chord-errors`.
  498. - New ability to specify additional command line options
  499. to the worker and beat programs.
  500. The :attr:`@user_options` attribute can be used
  501. to add additional command-line arguments, and expects
  502. optparse-style options:
  503. .. code-block:: python
  504. from celery import Celery
  505. from celery.bin import Option
  506. app = Celery()
  507. app.user_options['worker'].add(
  508. Option('--my-argument'),
  509. )
  510. See the :ref:`guide-extending` guide for more information.
  511. - All events now include a ``pid`` field, which is the process id of the
  512. process that sent the event.
  513. - Event heartbeats are now calculated based on the time when the event
  514. was received by the monitor, and not the time reported by the worker.
  515. This means that a worker with an out-of-sync clock will no longer
  516. show as 'Offline' in monitors.
  517. A warning is now emitted if the difference between the senders
  518. time and the internal time is greater than 15 seconds, suggesting
  519. that the clocks are out of sync.
  520. - Monotonic clock support.
  521. A monotonic clock is now used for timeouts and scheduling.
  522. The monotonic clock function is built-in starting from Python 3.4,
  523. but we also have fallback implementations for Linux and OS X.
  524. - :program:`celery worker` now supports a ``--detach`` argument to start
  525. the worker as a daemon in the background.
  526. - :class:`@events.Receiver` now sets a ``local_received`` field for incoming
  527. events, which is set to the time of when the event was received.
  528. - :class:`@events.Dispatcher` now accepts a ``groups`` argument
  529. which decides a white-list of event groups that will be sent.
  530. The type of an event is a string separated by '-', where the part
  531. before the first '-' is the group. Currently there are only
  532. two groups: ``worker`` and ``task``.
  533. A dispatcher instantiated as follows:
  534. .. code-block:: pycon
  535. >>> app.events.Dispatcher(connection, groups=['worker'])
  536. will only send worker related events and silently drop any attempts
  537. to send events related to any other group.
  538. - New :setting:`BROKER_FAILOVER_STRATEGY` setting.
  539. This setting can be used to change the transport failover strategy,
  540. can either be a callable returning an iterable or the name of a
  541. Kombu built-in failover strategy. Default is "round-robin".
  542. Contributed by Matt Wise.
  543. - ``Result.revoke`` will no longer wait for replies.
  544. You can add the ``reply=True`` argument if you really want to wait for
  545. responses from the workers.
  546. - Better support for link and link_error tasks for chords.
  547. Contributed by Steeve Morin.
  548. - Worker: Now emits warning if the :setting:`CELERYD_POOL` setting is set
  549. to enable the eventlet/gevent pools.
  550. The `-P` option should always be used to select the eventlet/gevent pool
  551. to ensure that the patches are applied as early as possible.
  552. If you start the worker in a wrapper (like Django's manage.py)
  553. then you must apply the patches manually, e.g. by creating an alternative
  554. wrapper that monkey patches at the start of the program before importing
  555. any other modules.
  556. - There's a now an 'inspect clock' command which will collect the current
  557. logical clock value from workers.
  558. - `celery inspect stats` now contains the process id of the worker's main
  559. process.
  560. Contributed by Mher Movsisyan.
  561. - New remote control command to dump a workers configuration.
  562. Example:
  563. .. code-block:: console
  564. $ celery inspect conf
  565. Configuration values will be converted to values supported by JSON
  566. where possible.
  567. Contributed by Mher Movisyan.
  568. - New settings :setting:`CELERY_EVENT_QUEUE_TTL` and
  569. :setting:`CELERY_EVENT_QUEUE_EXPIRES`.
  570. These control when a monitors event queue is deleted, and for how long
  571. events published to that queue will be visible. Only supported on
  572. RabbitMQ.
  573. - New Couchbase result backend.
  574. This result backend enables you to store and retrieve task results
  575. using `Couchbase`_.
  576. See :ref:`conf-couchbase-result-backend` for more information
  577. about configuring this result backend.
  578. Contributed by Alain Masiero.
  579. .. _`Couchbase`: http://www.couchbase.com
  580. - CentOS init script now supports starting multiple worker instances.
  581. See the script header for details.
  582. Contributed by Jonathan Jordan.
  583. - ``AsyncResult.iter_native`` now sets default interval parameter to 0.5
  584. Fix contributed by Idan Kamara
  585. - New setting :setting:`BROKER_LOGIN_METHOD`.
  586. This setting can be used to specify an alternate login method
  587. for the AMQP transports.
  588. Contributed by Adrien Guinet
  589. - The ``dump_conf`` remote control command will now give the string
  590. representation for types that are not JSON compatible.
  591. - Function `celery.security.setup_security` is now :func:`@setup_security`.
  592. - Task retry now propagates the message expiry value (Issue #980).
  593. The value is forwarded at is, so the expiry time will not change.
  594. To update the expiry time you would have to pass a new expires
  595. argument to ``retry()``.
  596. - Worker now crashes if a channel error occurs.
  597. Channel errors are transport specific and is the list of exceptions
  598. returned by ``Connection.channel_errors``.
  599. For RabbitMQ this means that Celery will crash if the equivalence
  600. checks for one of the queues in :setting:`CELERY_QUEUES` mismatches, which
  601. makes sense since this is a scenario where manual intervention is
  602. required.
  603. - Calling ``AsyncResult.get()`` on a chain now propagates errors for previous
  604. tasks (Issue #1014).
  605. - The parent attribute of ``AsyncResult`` is now reconstructed when using JSON
  606. serialization (Issue #1014).
  607. - Worker disconnection logs are now logged with severity warning instead of
  608. error.
  609. Contributed by Chris Adams.
  610. - ``events.State`` no longer crashes when it receives unknown event types.
  611. - SQLAlchemy Result Backend: New :setting:`CELERY_RESULT_DB_TABLENAMES`
  612. setting can be used to change the name of the database tables used.
  613. Contributed by Ryan Petrello.
  614. - SQLAlchemy Result Backend: Now calls ``enginge.dispose`` after fork
  615. (Issue #1564).
  616. If you create your own sqlalchemy engines then you must also
  617. make sure that these are closed after fork in the worker:
  618. .. code-block:: python
  619. from multiprocessing.util import register_after_fork
  620. engine = create_engine(…)
  621. register_after_fork(engine, engine.dispose)
  622. - A stress test suite for the Celery worker has been written.
  623. This is located in the ``funtests/stress`` directory in the git
  624. repository. There's a README file there to get you started.
  625. - The logger named ``celery.concurrency`` has been renamed to ``celery.pool``.
  626. - New command line utility ``celery graph``.
  627. This utility creates graphs in GraphViz dot format.
  628. You can create graphs from the currently installed bootsteps:
  629. .. code-block:: console
  630. # Create graph of currently installed bootsteps in both the worker
  631. # and consumer namespaces.
  632. $ celery graph bootsteps | dot -T png -o steps.png
  633. # Graph of the consumer namespace only.
  634. $ celery graph bootsteps consumer | dot -T png -o consumer_only.png
  635. # Graph of the worker namespace only.
  636. $ celery graph bootsteps worker | dot -T png -o worker_only.png
  637. Or graphs of workers in a cluster:
  638. .. code-block:: console
  639. # Create graph from the current cluster
  640. $ celery graph workers | dot -T png -o workers.png
  641. # Create graph from a specified list of workers
  642. $ celery graph workers nodes:w1,w2,w3 | dot -T png workers.png
  643. # also specify the number of threads in each worker
  644. $ celery graph workers nodes:w1,w2,w3 threads:2,4,6
  645. # …also specify the broker and backend URLs shown in the graph
  646. $ celery graph workers broker:amqp:// backend:redis://
  647. # …also specify the max number of workers/threads shown (wmax/tmax),
  648. # enumerating anything that exceeds that number.
  649. $ celery graph workers wmax:10 tmax:3
  650. - Changed the way that app instances are pickled.
  651. Apps can now define a ``__reduce_keys__`` method that is used instead
  652. of the old ``AppPickler`` attribute. E.g. if your app defines a custom
  653. 'foo' attribute that needs to be preserved when pickling you can define
  654. a ``__reduce_keys__`` as such:
  655. .. code-block:: python
  656. import celery
  657. class Celery(celery.Celery):
  658. def __init__(self, *args, **kwargs):
  659. super(Celery, self).__init__(*args, **kwargs)
  660. self.foo = kwargs.get('foo')
  661. def __reduce_keys__(self):
  662. return super(Celery, self).__reduce_keys__().update(
  663. foo=self.foo,
  664. )
  665. This is a much more convenient way to add support for pickling custom
  666. attributes. The old ``AppPickler`` is still supported but its use is
  667. discouraged and we would like to remove it in a future version.
  668. - Ability to trace imports for debugging purposes.
  669. The :envvar:`C_IMPDEBUG` can be set to trace imports as they
  670. occur:
  671. .. code-block:: console
  672. $ C_IMDEBUG=1 celery worker -l info
  673. .. code-block:: console
  674. $ C_IMPDEBUG=1 celery shell
  675. - Message headers now available as part of the task request.
  676. Example adding and retrieving a header value:
  677. .. code-block:: python
  678. @app.task(bind=True)
  679. def t(self):
  680. return self.request.headers.get('sender')
  681. >>> t.apply_async(headers={'sender': 'George Costanza'})
  682. - New :signal:`before_task_publish` signal dispatched before a task message
  683. is sent and can be used to modify the final message fields (Issue #1281).
  684. - New :signal:`after_task_publish` signal replaces the old :signal:`task_sent`
  685. signal.
  686. The :signal:`task_sent` signal is now deprecated and should not be used.
  687. - New :signal:`worker_process_shutdown` signal is dispatched in the
  688. prefork pool child processes as they exit.
  689. Contributed by Daniel M Taub.
  690. - ``celery.platforms.PIDFile`` renamed to :class:`celery.platforms.Pidfile`.
  691. - MongoDB Backend: Can now be configured using an URL:
  692. See :ref:`example-mongodb-result-config`.
  693. - MongoDB Backend: No longer using deprecated ``pymongo.Connection``.
  694. - MongoDB Backend: Now disables ``auto_start_request``.
  695. - MongoDB Backend: Now enables ``use_greenlets`` when eventlet/gevent is used.
  696. - ``subtask()`` / ``maybe_subtask()`` renamed to
  697. ``signature()``/``maybe_signature()``.
  698. Aliases still available for backwards compatibility.
  699. - The ``correlation_id`` message property is now automatically set to the
  700. id of the task.
  701. - The task message ``eta`` and ``expires`` fields now includes timezone
  702. information.
  703. - All result backends ``store_result``/``mark_as_*`` methods must now accept
  704. a ``request`` keyword argument.
  705. - Events now emit warning if the broken ``yajl`` library is used.
  706. - The :signal:`celeryd_init` signal now takes an extra keyword argument:
  707. ``option``.
  708. This is the mapping of parsed command line arguments, and can be used to
  709. prepare new preload arguments (``app.user_options['preload']``).
  710. - New callback: :meth:`@on_configure`.
  711. This callback is called when an app is about to be configured (a
  712. configuration key is required).
  713. - Worker: No longer forks on :sig:`HUP`.
  714. This means that the worker will reuse the same pid for better
  715. support with external process supervisors.
  716. Contributed by Jameel Al-Aziz.
  717. - Worker: The log message ``Got task from broker …`` was changed to
  718. ``Received task …``.
  719. - Worker: The log message ``Skipping revoked task …`` was changed
  720. to ``Discarding revoked task …``.
  721. - Optimization: Improved performance of ``ResultSet.join_native()``.
  722. Contributed by Stas Rudakou.
  723. - The :signal:`task_revoked` signal now accepts new ``request`` argument
  724. (Issue #1555).
  725. The revoked signal is dispatched after the task request is removed from
  726. the stack, so it must instead use the
  727. :class:`~celery.worker.request.Request` object to get information
  728. about the task.
  729. - Worker: New :option:`-X` command line argument to exclude queues
  730. (Issue #1399).
  731. The :option:`-X` argument is the inverse of the :option:`-Q` argument
  732. and accepts a list of queues to exclude (not consume from):
  733. .. code-block:: console
  734. # Consume from all queues in CELERY_QUEUES, but not the 'foo' queue.
  735. $ celery worker -A proj -l info -X foo
  736. - Adds :envvar:`C_FAKEFORK` envvar for simple init script/multi debugging.
  737. This means that you can now do:
  738. .. code-block:: console
  739. $ C_FAKEFORK=1 celery multi start 10
  740. or:
  741. .. code-block:: console
  742. $ C_FAKEFORK=1 /etc/init.d/celeryd start
  743. to avoid the daemonization step to see errors that are not visible
  744. due to missing stdout/stderr.
  745. A ``dryrun`` command has been added to the generic init script that
  746. enables this option.
  747. - New public API to push and pop from the current task stack:
  748. :func:`celery.app.push_current_task` and
  749. :func:`celery.app.pop_current_task``.
  750. - ``RetryTaskError`` has been renamed to :exc:`~celery.exceptions.Retry`.
  751. The old name is still available for backwards compatibility.
  752. - New semi-predicate exception :exc:`~celery.exceptions.Reject`.
  753. This exception can be raised to ``reject``/``requeue`` the task message,
  754. see :ref:`task-semipred-reject` for examples.
  755. - :ref:`Semipredicates <task-semipredicates>` documented: (Retry/Ignore/Reject).
  756. .. _v310-removals:
  757. Scheduled Removals
  758. ==================
  759. - The ``BROKER_INSIST`` setting and the ``insist`` argument
  760. to ``~@connection`` is no longer supported.
  761. - The ``CELERY_AMQP_TASK_RESULT_CONNECTION_MAX`` setting is no longer
  762. supported.
  763. Use :setting:`BROKER_POOL_LIMIT` instead.
  764. - The ``CELERY_TASK_ERROR_WHITELIST`` setting is no longer supported.
  765. You should set the :class:`~celery.utils.mail.ErrorMail` attribute
  766. of the task class instead. You can also do this using
  767. :setting:`CELERY_ANNOTATIONS`:
  768. .. code-block:: python
  769. from celery import Celery
  770. from celery.utils.mail import ErrorMail
  771. class MyErrorMail(ErrorMail):
  772. whitelist = (KeyError, ImportError)
  773. def should_send(self, context, exc):
  774. return isinstance(exc, self.whitelist)
  775. app = Celery()
  776. app.conf.CELERY_ANNOTATIONS = {
  777. '*': {
  778. 'ErrorMail': MyErrorMails,
  779. }
  780. }
  781. - Functions that creates a broker connections no longer
  782. supports the ``connect_timeout`` argument.
  783. This can now only be set using the :setting:`BROKER_CONNECTION_TIMEOUT`
  784. setting. This is because functions no longer create connections
  785. directly, but instead get them from the connection pool.
  786. - The ``CELERY_AMQP_TASK_RESULT_EXPIRES`` setting is no longer supported.
  787. Use :setting:`CELERY_TASK_RESULT_EXPIRES` instead.
  788. .. _v310-deprecations:
  789. Deprecations
  790. ============
  791. See the :ref:`deprecation-timeline`.
  792. .. _v310-fixes:
  793. Fixes
  794. =====
  795. - AMQP Backend: join did not convert exceptions when using the json
  796. serializer.
  797. - Non-abstract task classes are now shared between apps (Issue #1150).
  798. Note that non-abstract task classes should not be used in the
  799. new API. You should only create custom task classes when you
  800. use them as a base class in the ``@task`` decorator.
  801. This fix ensure backwards compatibility with older Celery versions
  802. so that non-abstract task classes works even if a module is imported
  803. multiple times so that the app is also instantiated multiple times.
  804. - Worker: Workaround for Unicode errors in logs (Issue #427).
  805. - Task methods: ``.apply_async`` now works properly if args list is None
  806. (Issue #1459).
  807. - Eventlet/gevent/solo/threads pools now properly handles :exc:`BaseException`
  808. errors raised by tasks.
  809. - :control:`autoscale` and :control:`pool_grow`/:control:`pool_shrink` remote
  810. control commands will now also automatically increase and decrease the
  811. consumer prefetch count.
  812. Fix contributed by Daniel M. Taub.
  813. - ``celery control pool_`` commands did not coerce string arguments to int.
  814. - Redis/Cache chords: Callback result is now set to failure if the group
  815. disappeared from the database (Issue #1094).
  816. - Worker: Now makes sure that the shutdown process is not initiated multiple
  817. times.
  818. - Multi: Now properly handles both ``-f`` and ``--logfile`` options
  819. (Issue #1541).
  820. .. _v310-internal:
  821. Internal changes
  822. ================
  823. - Module ``celery.task.trace`` has been renamed to :mod:`celery.app.trace`.
  824. - Module ``celery.concurrency.processes`` has been renamed to
  825. :mod:`celery.concurrency.prefork`.
  826. - Classes that no longer fall back to using the default app:
  827. - Result backends (:class:`celery.backends.base.BaseBackend`)
  828. - :class:`celery.worker.WorkController`
  829. - :class:`celery.worker.Consumer`
  830. - :class:`celery.worker.request.Request`
  831. This means that you have to pass a specific app when instantiating
  832. these classes.
  833. - ``EventDispatcher.copy_buffer`` renamed to
  834. :meth:`@events.Dispatcher.extend_buffer`.
  835. - Removed unused and never documented global instance
  836. ``celery.events.state.state``.
  837. - :class:`@events.Receiver` is now a :class:`kombu.mixins.ConsumerMixin`
  838. subclass.
  839. - :class:`celery.apps.worker.Worker` has been refactored as a subclass of
  840. :class:`celery.worker.WorkController`.
  841. This removes a lot of duplicate functionality.
  842. - The ``Celery.with_default_connection`` method has been removed in favor
  843. of ``with app.connection_or_acquire`` (:meth:`@connection_or_acquire`)
  844. - The ``celery.results.BaseDictBackend`` class has been removed and is replaced by
  845. :class:`celery.results.BaseBackend`.