docs/history/whatsnew-4.3.rst
.. _whatsnew-4.3:
:Author: Omer Katz (omer.drow at gmail.com)
.. sidebar:: Change history
What's new documents describe the changes in major versions,
we also have a :ref:`changelog` that lists the changes in bugfix
releases (0.0.x), while older series are archived under the :ref:`history`
section.
Celery is a simple, flexible, and reliable distributed system to process vast amounts of messages, while providing operations with the tools required to maintain such a system.
It's a task queue with focus on real-time processing, while also supporting task scheduling.
Celery has a large and diverse community of users and contributors,
you should come join us :ref:on IRC <irc-channel>
or :ref:our mailing-list <mailing-list>.
To read more about Celery you should go read the :ref:introduction <intro>.
While this version is backward compatible with previous versions it's important that you read the following section.
This version is officially supported on CPython 2.7, 3.4, 3.5, 3.6 & 3.7 and is also supported on PyPy2 & PyPy3.
.. _website: http://celeryproject.org/
.. topic:: Table of Contents
Make sure you read the important notes before upgrading to this version.
.. contents:: :local: :depth: 2
The 4.3.0 release continues to improve our efforts to provide you with the best task execution platform for Python.
This release has been codenamed Rhubarb <https://www.youtube.com/watch?v=_AWIqXzvX-U>_
which is one of my favorite tracks from Selected Ambient Works II.
This release focuses on new features like new result backends and a revamped security serializer along with bug fixes mainly for Celery Beat, Canvas, a number of critical fixes for hanging workers and fixes for several severe memory leaks.
Celery 4.3 is the first release to support Python 3.7.
We hope that 4.3 will be the last release to support Python 2.7 as we now begin to work on Celery 5, the next generation of our task execution platform.
However, if Celery 5 will be delayed for any reason we may release another 4.x minor version which will still support Python 2.7.
If another 4.x version will be released it will most likely drop support for Python 3.4 as it will reach it's EOL in March 2019.
We have also focused on reducing contribution friction.
Thanks to Josue Balandrano Coronel, one of our core contributors, we now have an
updated :ref:contributing document.
If you intend to contribute, please review it at your earliest convenience.
I have also added new issue templates, which we will continue to improve, so that the issues you open will have more relevant information which will allow us to help you to resolve them more easily.
— Omer Katz
Alexander Ioannidis [email protected] Amir Hossein Saeid Mehr [email protected] Andrea Rabbaglietti [email protected] Andrey Skabelin [email protected] Anthony Ruhier [email protected] Antonin Delpeuch [email protected] Artem Vasilyev [email protected] Asif Saif Uddin (Auvi) [email protected] aviadatsnyk [email protected] Axel Haustant [email protected] Bojan Jovanovic [email protected] Brett Jackson [email protected] Brett Randall [email protected] Brian Schrader [email protected] Bruno Alla [email protected] Buddy [email protected] Charles Chan [email protected] Christopher Dignam [email protected] Ciaran Courtney [email protected] Clemens Wolff [email protected] Colin Watson [email protected] Daniel Hahler [email protected] Dash Winterson [email protected] Derek Harland [email protected] Dilip Vamsi Moturi [email protected] Dmytro Litvinov [email protected] Douglas Rohde [email protected] Ed Morley [email protected] Fabian Becker [email protected] Federico Bond [email protected] Fengyuan Chen [email protected] Florian CHARDIN [email protected] George Psarakis [email protected] Guilherme Caminha [email protected] ideascf [email protected] Itay [email protected] Jamie Alessio [email protected] Jason Held [email protected] Jeremy Cohen [email protected] John Arnold [email protected] Jon Banafato [email protected] Jon Dufresne [email protected] Joshua Engelman [email protected] Joshua Schmid [email protected] Josue Balandrano Coronel [email protected] K Davis [email protected] kidoz [email protected] Kiyohiro Yamaguchi [email protected] Korijn van Golen [email protected] Lars Kruse [email protected] Lars Rinn [email protected] Lewis M. Kabui [email protected] madprogrammer [email protected] Manuel Vázquez Acosta [email protected] Marcus McHale [email protected] Mariatta [email protected] Mario Kostelac [email protected] Matt Wiens [email protected] Maximilien Cuony [email protected] Maximilien de Bayser [email protected] Meysam [email protected] Milind Shakya [email protected] na387 [email protected] Nicholas Pilon [email protected] Nick Parsons [email protected] Nik Molnar [email protected] Noah Hall [email protected] Noam [email protected] Omer Katz [email protected] Paweł Adamczak [email protected] peng weikang [email protected] Prathamesh Salunkhe [email protected] Przemysław Suliga [email protected] Raf Geens [email protected] (◕ᴥ◕) [email protected] Robert Kopaczewski [email protected] Samuel Huang [email protected] Sebastian Wojciechowski [email protected] Seunghun Lee [email protected] Shanavas M [email protected] Simon Charette [email protected] Simon Schmidt [email protected] srafehi [email protected] Steven Sklar [email protected] Tom Booth [email protected] Tom Clancy [email protected] Toni Ruža [email protected] tothegump [email protected] Victor Mireyev [email protected] Vikas Prasad [email protected] walterqian [email protected] Willem [email protected] Xiaodong [email protected] yywing [email protected]
.. note::
This wall was automatically generated from git history,
so sadly it doesn't not include the people who help with more important
things like answering mailing-list questions.
Please read the important notes below as there are several breaking changes.
.. _v430-important:
The supported Python Versions are:
pypy2)pypy3)Starting from this release, the minimum required version is Kombu 4.4.
New Compression Algorithms
Kombu 4.3 includes a few new optional compression methods:
- LZMA (available from stdlib if using Python 3 or from a backported package)
- Brotli (available if you install either the brotli or the brotlipy package)
- ZStandard (available if you install the zstandard package)
Unfortunately our current protocol generates huge payloads for complex canvases.
Until we migrate to our 3rd revision of the Celery protocol in Celery 5
which will resolve this issue, please use one of the new compression methods
as a workaround.
See :ref:`calling-compression` for details.
Billiard
--------
Starting from this release, the minimum required version is Billiard 3.6.
Eventlet Workers Pool
---------------------
We now require `eventlet>=0.24.1`.
If you are using the eventlet workers pool please install Celery using:
.. code-block:: console
$ pip install -U celery[eventlet]
MessagePack Serializer
----------------------
We've been using the deprecated `msgpack-python` package for a while.
This is now fixed as we depend on the `msgpack` instead.
If you are currently using the MessagePack serializer please uninstall the
previous package and reinstall the new one using:
.. code-block:: console
$ pip uninstall msgpack-python -y
$ pip install -U celery[msgpack]
MongoDB Result Backend
-----------------------
We now support the `DNS seedlist connection format <https://docs.mongodb.com/manual/reference/connection-string/#dns-seedlist-connection-format>`_ for the MongoDB result backend.
This requires the `dnspython` package.
If you are using the MongoDB result backend please install Celery using:
.. code-block:: console
$ pip install -U celery[mongodb]
Redis Message Broker
--------------------
Due to multiple bugs in earlier versions of py-redis that were causing
issues for Celery, we were forced to bump the minimum required version to 3.2.0.
Redis Result Backend
--------------------
Due to multiple bugs in earlier versions of py-redis that were causing
issues for Celery, we were forced to bump the minimum required version to 3.2.0.
Riak Result Backend
--------------------
The official Riak client does not support Python 3.7 as of yet.
In case you are using the Riak result backend, either attempt to install the
client from master or avoid upgrading to Python 3.7 until this matter is resolved.
In case you are using the Riak result backend with Python 3.7, we now emit
a warning.
Please track `basho/riak-python-client#534 <https://github.com/basho/riak-python-client/issues/534>`_
for updates.
Dropped Support for RabbitMQ 2.x
--------------------------------
Starting from this release, we officially no longer support RabbitMQ 2.x.
The last release of 2.x was in 2012 and we had to make adjustments to
correctly support high availability on RabbitMQ 3.x.
If for some reason, you are still using RabbitMQ 2.x we encourage you to upgrade
as soon as possible since security patches are no longer applied on RabbitMQ 2.x.
Django Support
--------------
Starting from this release, the minimum required Django version is 1.11.
Revamped auth Serializer
------------------------
The auth serializer received a complete overhaul.
It was previously horribly broken.
We now depend on `cryptography` instead of `pyOpenSSL` for this serializer.
See :ref:`message-signing` for details.
.. _v430-news:
News
====
Brokers
-------
Redis Broker Support for SSL URIs
The Redis broker now has support for SSL connections.
You can use :setting:broker_use_ssl as you normally did and use a
rediss:// URI.
You can also pass the SSL configuration parameters to the URI:
rediss://localhost:3456?ssl_keyfile=keyfile.key&ssl_certfile=certificate.crt&ssl_ca_certs=ca.pem&ssl_cert_reqs=CERT_REQUIRED
Configurable Events Exchange Name
Previously, the events exchange name was hardcoded.
You can use :setting:`event_exchange` to determine it.
The default value remains the same.
Configurable Pidbox Exchange Name
Previously, the Pidbox exchange name was hardcoded.
You can use :setting:control_exchange to determine it.
The default value remains the same.
Redis Result Backend Support for SSL URIs
The Redis result backend now has support for SSL connections.
You can use :setting:`redis_backend_use_ssl` to configure it and use a
`rediss://` URI.
You can also pass the SSL configuration parameters to the URI:
`rediss://localhost:3456?ssl_keyfile=keyfile.key&ssl_certfile=certificate.crt&ssl_ca_certs=ca.pem&ssl_cert_reqs=CERT_REQUIRED`
Store Extended Task Metadata in Result
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
When :setting:`result_extended` is `True` the backend will store the following
metadata:
- Task Name
- Arguments
- Keyword arguments
- The worker the task was executed on
- Number of retries
- The queue's name or routing key
In addition, :meth:`celery.app.task.update_state` now accepts keyword arguments
which allows you to store custom data with the result.
Encode Results Using A Different Serializer
The :setting:result_accept_content setting allows to configure different
accepted content for the result backend.
A special serializer (auth) is used for signed messaging,
however the result_serializer remains in json, because we don't want encrypted
content in our result backend.
To accept unsigned content from the result backend, we introduced this new configuration option to specify the accepted content from the backend.
New Result Backends
This release introduces four new result backends:
- S3 result backend
- ArangoDB result backend
- Azure Block Blob Storage result backend
- CosmosDB result backend
S3 Result Backend
~~~~~~~~~~~~~~~~~
Amazon Simple Storage Service (Amazon S3) is an object storage service by AWS.
The results are stored using the following path template:
| <:setting:`s3_bucket`>/<:setting:`s3_base_path`>/<key>
See :ref:`conf-s3-result-backend` for more information.
ArangoDB Result Backend
ArangoDB is a native multi-model database with search capabilities. The backend stores the result in the following document format:
| { | _key: {key}, | task: {task} | }
See :ref:conf-arangodb-result-backend for more information.
Azure Block Blob Storage Result Backend
Azure Block Blob Storage is an object storage service by Microsoft.
The backend stores the result in the following path template:
| <:setting:`azureblockblob_container_name`>/<key>
See :ref:`conf-azureblockblob-result-backend` for more information.
CosmosDB Result Backend
Azure Cosmos DB is Microsoft's globally distributed, multi-model database service.
The backend stores the result in the following document format:
| { | id: {key}, | value: {task} | }
See :ref:conf-cosmosdbsql-result-backend for more information.
Cythonized Tasks
Cythonized tasks are now supported.
You can generate C code from Cython that specifies a task using the `@task`
decorator and everything should work exactly the same.
Acknowledging Tasks on Failures or Timeouts
When :setting:task_acks_late is set to True tasks are acknowledged on failures or
timeouts.
This makes it hard to use dead letter queues and exchanges.
Celery 4.3 introduces the new :setting:task_acks_on_failure_or_timeout which
allows you to avoid acknowledging tasks if they failed or timed out even if
:setting:task_acks_late is set to True.
:setting:task_acks_on_failure_or_timeout is set to True by default.
Schedules Now Support Microseconds
When scheduling tasks using :program:`celery beat` microseconds
are no longer ignored.
Default Task Priority
~~~~~~~~~~~~~~~~~~~~~
You can now set the default priority of a task using
the :setting:`task_default_priority` setting.
The setting's value will be used if no priority is provided for a specific
task.
Tasks Optionally Inherit Parent's Priority
Setting the :setting:task_inherit_parent_priority configuration option to
True will make Celery tasks inherit the priority of the previous task
linked to it.
Examples:
.. code-block:: python
c = celery.chain( add.s(2), # priority=None add.s(3).set(priority=5), # priority=5 add.s(4), # priority=5 add.s(5).set(priority=3), # priority=3 add.s(6), # priority=3 )
.. code-block:: python
@app.task(bind=True) def child_task(self): pass
@app.task(bind=True) def parent_task(self): child_task.delay()
parent_task.apply_async(args=[], priority=5)
Chords can be Executed in Eager Mode
When :setting:`task_always_eager` is set to `True`, chords are executed eagerly
as well.
Configurable Chord Join Timeout
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Previously, :meth:`celery.result.GroupResult.join` had a fixed timeout of 3
seconds.
The :setting:`result_chord_join_timeout` setting now allows you to change it.
The default remains 3 seconds.