From 49f102c91324561ccaa2efd04a4e774323aa88642da05807f46e1f06c5ad8027 Mon Sep 17 00:00:00 2001 From: Alexandre Rogoski Date: Thu, 26 Jul 2012 22:25:25 +0000 Subject: [PATCH] - Update to 3.0.4: - Now depends on Kombu 2.3 - New experimental standalone Celery monitor: Flower See monitoring-flower to read more about it! Contributed by Mher Movsisyan. - Now supports AMQP heartbeats if using the new pyamqp:// transport. - The py-amqp transport requires the amqp library to be installed: $ pip install amqp - Then you need to set the transport URL prefix to pyamqp://. - The default heartbeat value is 10 seconds, but this can be changed using the BROKER_HEARTBEAT setting BROKER_HEARTBEAT = 5.0 - If the broker heartbeat is set to 10 seconds, the heartbeats will be monitored every 5 seconds (double the hertbeat rate). See the Kombu 2.3 changelog for more information. - Now supports RabbitMQ Consumer Cancel Notifications, using the pyamqp:// transport. This is essential when running RabbitMQ in a cluster. See the Kombu 2.3 changelog for more information. - Delivery info is no longer passed directly through. It was discovered that the SQS transport adds objects that can't be pickled to the delivery info mapping, so we had to go back to using the whitelist again. Fixing this bug also means that the SQS transport is now working again. - The semaphore was not properly released when a task was revoked (Issue #877). This could lead to tasks being swallowed and not released until a worker restart. Thanks to Hynek Schlawack for debugging the issue. - Retrying a task now also forwards any linked tasks. This means that if a task is part of a chain (or linked in some other OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-celery?expand=0&rev=63 --- celery-3.0.3.tar.bz2 | 3 -- celery-3.0.4.tar.bz2 | 3 ++ python-celery.changes | 117 ++++++++++++++++++++++++++++++++++++++++++ python-celery.spec | 4 +- 4 files changed, 122 insertions(+), 5 deletions(-) delete mode 100644 celery-3.0.3.tar.bz2 create mode 100644 celery-3.0.4.tar.bz2 diff --git a/celery-3.0.3.tar.bz2 b/celery-3.0.3.tar.bz2 deleted file mode 100644 index fb51522..0000000 --- a/celery-3.0.3.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:57eb32392d30bfadca0f10ba8dbedc2483473386446d23a7f5932eb8f9c78d98 -size 874811 diff --git a/celery-3.0.4.tar.bz2 b/celery-3.0.4.tar.bz2 new file mode 100644 index 0000000..ff81e2f --- /dev/null +++ b/celery-3.0.4.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7136211dac3a46ebcbf2bbbae33654837fd99fee852c7ef63de4962f9065528e +size 973604 diff --git a/python-celery.changes b/python-celery.changes index 5fdb570..54b4ace 100644 --- a/python-celery.changes +++ b/python-celery.changes @@ -1,3 +1,120 @@ +------------------------------------------------------------------- +Thu Jul 26 22:18:34 UTC 2012 - alexandre@exatati.com.br + +- Update to 3.0.4: + - Now depends on Kombu 2.3 + - New experimental standalone Celery monitor: Flower + See monitoring-flower to read more about it! + + Contributed by Mher Movsisyan. + - Now supports AMQP heartbeats if using the new pyamqp:// transport. + - The py-amqp transport requires the amqp library to be installed: + + $ pip install amqp + + - Then you need to set the transport URL prefix to pyamqp://. + + - The default heartbeat value is 10 seconds, but this can be changed using + the BROKER_HEARTBEAT setting + + BROKER_HEARTBEAT = 5.0 + + - If the broker heartbeat is set to 10 seconds, the heartbeats will be + monitored every 5 seconds (double the hertbeat rate). + + See the Kombu 2.3 changelog for more information. + + - Now supports RabbitMQ Consumer Cancel Notifications, using the pyamqp:// + transport. + This is essential when running RabbitMQ in a cluster. + + See the Kombu 2.3 changelog for more information. + + - Delivery info is no longer passed directly through. + + It was discovered that the SQS transport adds objects that can't + be pickled to the delivery info mapping, so we had to go back + to using the whitelist again. + + Fixing this bug also means that the SQS transport is now working again. + + - The semaphore was not properly released when a task was revoked (Issue #877). + + This could lead to tasks being swallowed and not released until a worker + restart. + + Thanks to Hynek Schlawack for debugging the issue. + + - Retrying a task now also forwards any linked tasks. + + This means that if a task is part of a chain (or linked in some other + way) and that even if the task is retried, then the next task in the chain + will be executed when the retry succeeds. + + - Chords: Now supports setting the interval and other keyword arguments + to the chord unlock task. + - The interval can now be set as part of the chord subtasks kwargs:: + + chord(header)(body, interval=10.0) + + - In addition the chord unlock task now honors the Task.default_retry_delay + option, used when none is specified, which also means that the default + interval can also be changed using annotations: + + CELERY_ANNOTATIONS = { + 'celery.chord_unlock': { + 'default_retry_delay': 10.0, + } + } + + - New @Celery.add_defaults method can add new default configuration + dicts to the applications configuration. + + For example: + + config = {'FOO': 10} + + celery.add_defaults(config) + + is the same as celery.conf.update(config) except that data will not be + copied, and that it will not be pickled when the worker spawns child + processes. + + In addition the method accepts a callable: + + def initialize_config(): + # insert heavy stuff that can't be done at import time here. + + celery.add_defaults(initialize_config) + + which means the same as the above except that it will not happen + until the celery configuration is actually used. + + As an example, Celery can lazily use the configuration of a Flask app:: + + flask_app = Flask() + celery = Celery() + celery.add_defaults(lambda: flask_app.config) + + - Revoked tasks were not marked as revoked in the result backend (Issue #871). + + Fix contributed by Hynek Schlawack. + + - Eventloop now properly handles the case when the epoll poller object + has been closed (Issue #882). + + - Fixed syntax error in funtests/test_leak.py + + Fix contributed by Catalin Iacob. + + - group/chunks: Now accepts empty task list (Issue #873). + - New method names: + + - Celery.default_connection() ➠ @Celery.connection_or_acquire. + - Celery.default_producer() ➠ @Celery.producer_or_acquire. + + The old names still work for backward compatibility. + ------------------------------------------------------------------- Fri Jul 20 21:12:59 UTC 2012 - alexandre@exatati.com.br diff --git a/python-celery.spec b/python-celery.spec index 4ea6ffb..d28e247 100644 --- a/python-celery.spec +++ b/python-celery.spec @@ -17,7 +17,7 @@ Name: python-celery -Version: 3.0.3 +Version: 3.0.4 Release: 0 Url: http://celeryproject.org Summary: Distributed Task Queue @@ -33,7 +33,7 @@ BuildRequires: python-devel BuildRequires: python-distribute BuildRequires: python-eventlet BuildRequires: python-gevent -BuildRequires: python-kombu >= 2.1.8 +BuildRequires: python-kombu >= 2.3 BuildRequires: python-mock BuildRequires: python-nose-cover3 BuildRequires: python-pyOpenSSL