Changelog 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887
  1. ==============
  2. Change history
  3. ==============
  4. 1.0.0 [xxxx-xx-xx xx:xx x.x xxx]
  5. ================================
  6. BACKWARD INCOMPATIBLE CHANGES
  7. -----------------------------
  8. * Default celeryd loglevel is now ``WARN``, to enable the previous log level
  9. start celeryd with ``--loglevel=INFO``.
  10. * Tasks are automatically registered.
  11. This means you no longer have to register your tasks manually.
  12. You don't have to change your old code right away, as it doesn't matter if
  13. a task is registered twice.
  14. If you don't want your task to be automatically registered you can set
  15. the ``abstract`` attribute
  16. .. code-block:: python
  17. class MyTask(Task):
  18. abstract = True
  19. By using ``abstract`` only tasks subclassing this task will be automatically
  20. registered (this works like the Django ORM).
  21. Incidentally, this change also fixes the problems with automatic name
  22. assignment and relative imports. So you also don't have to specify a task name
  23. anymore if you use relative imports.
  24. * You can no longer use regular functions as tasks. This change was added
  25. because it makes the internals a lot more clean and simple. However, you can
  26. now turn functions into tasks by using the ``@task`` decorator:
  27. .. code-block:: python
  28. from celery.decorators import task
  29. @task()
  30. def add(x, y):
  31. return x + y
  32. See the User Guide: :doc:`userguide/tasks` for more information.
  33. * The periodic task system has been rewritten to a centralized solution, this
  34. means ``celeryd`` no longer schedules periodic tasks by default, but a new
  35. daemon has been introduced: ``celerybeat``.
  36. To launch the periodic task scheduler you have to run celerybeat::
  37. $ celerybeat --detach
  38. Make sure this is running on one server only, if you run it twice, all
  39. periodic tasks will also be executed twice.
  40. If you only have one worker server you can embed it into celeryd like this::
  41. $ celeryd --detatch --beat # Embed celerybeat in celeryd.
  42. * The supervisor has been removed, please use something like
  43. http://supervisord.org instead. This means the ``-S`` and ``--supervised``
  44. options to ``celeryd`` is no longer supported.
  45. * ``TaskSet.join`` has been removed, use ``TaskSetResult.join`` instead.
  46. * The task status ``"DONE"`` has been renamed to `"SUCCESS"`.
  47. * ``AsyncResult.is_done`` has been removed, use ``AsyncResult.successful``
  48. instead.
  49. * The worker no longer stores errors if ``Task.ignore_result`` is set, to
  50. revert to the previous behaviour set
  51. ``CELERY_STORE_ERRORS_EVEN_IF_IGNORED`` to ``True``.
  52. * The staticstics functionality has been removed in favor of events,
  53. so the ``-S`` and ``--statistics`` switches has been removed.
  54. NEWS
  55. ----
  56. * Rate limiting support (per task type, or globally).
  57. * New periodic task system.
  58. * Automatic registration.
  59. * New cool task decorator syntax.
  60. * celeryd now sends events if enabled with the ``-E`` argument.
  61. Excellent for monitoring tools, one is already in the making
  62. (http://github.com/ask/celerymon).
  63. Current events include: worker-heartbeat,
  64. task-[received/succeeded/failed/retried],
  65. worker-online, worker-offline.
  66. * You can now delete (revoke) tasks that has already been applied.
  67. * Message format has been standardized and now uses ISO-8601 format
  68. for dates instead of datetime.
  69. CHANGES
  70. -------
  71. * New dependencies: billiard, python-dateutil, django-picklefield
  72. * ETA no longer sends datetime objects, but uses ISO 8601 date format in a
  73. string for better compatibility with other platforms.
  74. * Task can now override the backend used to store results.
  75. * Refactored the ExecuteWrapper, ``apply`` and ``CELERY_ALWAYS_EAGER`` now
  76. also executes the task callbacks and signals.
  77. * Now using a proper scheduler for the tasks with an ETA. This means waiting
  78. eta tasks are sorted by time, so we don't have to poll the whole list all the
  79. time.
  80. * Does not longer use the python-daemon pidfile implementation, but a custom
  81. one that doesn't create those weird ``.lock`` and thread files.
  82. * The ``--uid`` and ``--gid`` arguments now support supplying the uid and gid
  83. as a username or group name.
  84. * Now ignores permission denied errors when removing the pidfile so it's
  85. possible to shutdown when running as an unprivileged user.
  86. * ImportErrors are now properly propogated when autodiscovering tasks.
  87. * You can now use ``celery.messaging.establish_connection`` to establish a
  88. connection to the broker.
  89. * When running as a separate service the periodic task scheduler does some
  90. smart moves to not poll too regularly, if you need faster poll times you
  91. can lower the value of ``CELERYBEAT_MAX_LOOP_INTERVAL``.
  92. * You can now change periodic task intervals at runtime, by making
  93. ``run_every`` a property, or subclassing ``PeriodicTask.is_due``.
  94. * The worker now supports control commands enabled through the use of a
  95. broadcast queue, you can remotely revoke tasks or set the rate limit for
  96. a task type.
  97. * The services now sets informative process names (as shown in ``ps``
  98. listings) if the :mod:`setproctitle` module is installed.
  99. DOCUMENTATION
  100. -------------
  101. * Reference now split into two sections; API reference and internal module
  102. reference.
  103. 0.8.1 [2009-11-16 05:21 P.M CEST]
  104. =================================
  105. VERY IMPORTANT NOTE
  106. -------------------
  107. This release (with carrot 0.8.0) enables AMQP QoS (quality of service), which
  108. means the workers will only receive as many messages as it can handle at a
  109. time. As with any release, you should test this version upgrade on your
  110. development servers before rolling it out to production!
  111. IMPORTANT CHANGES
  112. -----------------
  113. * If you're using Python < 2.6 and you use the multiprocessing backport, then
  114. multiprocessing version 2.6.2.1 is required.
  115. * All AMQP_* settings has been renamed to BROKER_*, and in addition
  116. AMQP_SERVER has been renamed to BROKER_HOST, so before where you had::
  117. AMQP_SERVER = "localhost"
  118. AMQP_PORT = 5678
  119. AMQP_USER = "myuser"
  120. AMQP_PASSWORD = "mypassword"
  121. AMQP_VHOST = "celery"
  122. You need to change that to::
  123. BROKER_HOST = "localhost"
  124. BROKER_PORT = 5678
  125. BROKER_USER = "myuser"
  126. BROKER_PASSWORD = "mypassword"
  127. BROKER_VHOST = "celery"
  128. * Custom carrot backends now need to include the backend class name, so before
  129. where you had::
  130. CARROT_BACKEND = "mycustom.backend.module"
  131. you need to change it to::
  132. CARROT_BACKEND = "mycustom.backend.module.Backend"
  133. where ``Backend`` is the class name. This is probably ``"Backend"``, as
  134. that was the previously implied name.
  135. * New version requirement for carrot: 0.8.0
  136. CHANGES
  137. -------
  138. * Incorporated the multiprocessing backport patch that fixes the
  139. ``processName`` error.
  140. * Ignore the result of PeriodicTask's by default.
  141. * Added a Redis result store backend
  142. * Allow /etc/default/celeryd to define additional options for the celeryd init
  143. script.
  144. * MongoDB periodic tasks issue when using different time than UTC fixed.
  145. * Windows specific: Negate test for available os.fork (thanks miracle2k)
  146. * Now tried to handle broken PID files.
  147. * Added a Django test runner to contrib that sets CELERY_ALWAYS_EAGER = True for testing with the database backend
  148. * Added a CELERY_CACHE_BACKEND setting for using something other than the django-global cache backend.
  149. * Use custom implementation of functools.partial (curry) for Python 2.4 support
  150. (Probably still problems with running on 2.4, but it will eventually be
  151. supported)
  152. * Prepare exception to pickle when saving RETRY status for all backends.
  153. * SQLite no concurrency limit should only be effective if the db backend is used.
  154. 0.8.0 [2009-09-22 03:06 P.M CEST]
  155. =================================
  156. BACKWARD INCOMPATIBLE CHANGES
  157. -----------------------------
  158. * Add traceback to result value on failure.
  159. **NOTE** If you use the database backend you have to re-create the
  160. database table ``celery_taskmeta``.
  161. Contact the mailinglist or IRC channel listed in README for help
  162. doing this.
  163. * Database tables are now only created if the database backend is used,
  164. so if you change back to the database backend at some point,
  165. be sure to initialize tables (django: ``syncdb``, python: ``celeryinit``).
  166. (Note: This is only the case when using Django 1.1 or higher)
  167. * Now depends on ``carrot`` version 0.6.0.
  168. * Now depends on python-daemon 1.4.8
  169. IMPORTANT CHANGES
  170. -----------------
  171. * Celery can now be used in pure Python (outside of a Django project).
  172. This means celery is no longer Django specific.
  173. For more information see the FAQ entry
  174. `Can I use celery without Django?`_.
  175. .. _`Can I use celery without Django?`:
  176. http://ask.github.com/celery/faq.html#can-i-use-celery-without-django
  177. * Celery now supports task retries.
  178. See `Cookbook: Retrying Tasks`_ for more information.
  179. .. _`Cookbook: Retrying Tasks`:
  180. http://ask.github.com/celery/cookbook/task-retries.html
  181. * We now have an AMQP result store backend.
  182. It uses messages to publish task return value and status. And it's
  183. incredibly fast!
  184. See http://github.com/ask/celery/issues/closed#issue/6 for more info!
  185. * AMQP QoS (prefetch count) implemented:
  186. This to not receive more messages than we can handle.
  187. * Now redirects stdout/stderr to the celeryd logfile when detached
  188. * Now uses ``inspect.getargspec`` to only pass default arguments
  189. the task supports.
  190. * Add Task.on_success, .on_retry, .on_failure handlers
  191. See :meth:`celery.task.base.Task.on_success`,
  192. :meth:`celery.task.base.Task.on_retry`,
  193. :meth:`celery.task.base.Task.on_failure`,
  194. * ``celery.utils.gen_unique_id``: Workaround for
  195. http://bugs.python.org/issue4607
  196. * You can now customize what happens at worker start, at process init, etc
  197. by creating your own loaders. (see :mod:`celery.loaders.default`,
  198. :mod:`celery.loaders.djangoapp`, :mod:`celery.loaders`.)
  199. * Support for multiple AMQP exchanges and queues.
  200. This feature misses documentation and tests, so anyone interested
  201. is encouraged to improve this situation.
  202. * celeryd now survives a restart of the AMQP server!
  203. Automatically re-establish AMQP broker connection if it's lost.
  204. New settings:
  205. * AMQP_CONNECTION_RETRY
  206. Set to ``True`` to enable connection retries.
  207. * AMQP_CONNECTION_MAX_RETRIES.
  208. Maximum number of restarts before we give up. Default: ``100``.
  209. NEWS
  210. ----
  211. * Fix an incompatibility between python-daemon and multiprocessing,
  212. which resulted in the ``[Errno 10] No child processes`` problem when
  213. detaching.
  214. * Fixed a possible DjangoUnicodeDecodeError being raised when saving pickled
  215. data to Django's memcached cache backend.
  216. * Better Windows compatibility.
  217. * New version of the pickled field (taken from
  218. http://www.djangosnippets.org/snippets/513/)
  219. * New signals introduced: ``task_sent``, ``task_prerun`` and
  220. ``task_postrun``, see :mod:`celery.signals` for more information.
  221. * ``TaskSetResult.join`` caused ``TypeError`` when ``timeout=None``.
  222. Thanks Jerzy Kozera. Closes #31
  223. * ``views.apply`` should return ``HttpResponse`` instance.
  224. Thanks to Jerzy Kozera. Closes #32
  225. * ``PeriodicTask``: Save conversion of ``run_every`` from ``int``
  226. to ``timedelta`` to the class attribute instead of on the instance.
  227. * Exceptions has been moved to ``celery.exceptions``, but are still
  228. available in the previous module.
  229. * Try to rollback transaction and retry saving result if an error happens
  230. while setting task status with the database backend.
  231. * jail() refactored into :class:`celery.execute.ExecuteWrapper`.
  232. * ``views.apply`` now correctly sets mimetype to "application/json"
  233. * ``views.task_status`` now returns exception if status is RETRY
  234. * ``views.task_status`` now returns traceback if status is "FAILURE"
  235. or "RETRY"
  236. * Documented default task arguments.
  237. * Add a sensible __repr__ to ExceptionInfo for easier debugging
  238. * Fix documentation typo ``.. import map`` -> ``.. import dmap``.
  239. Thanks mikedizon
  240. 0.6.0 [2009-08-07 06:54 A.M CET]
  241. ================================
  242. IMPORTANT CHANGES
  243. -----------------
  244. * Fixed a bug where tasks raising unpickleable exceptions crashed pool
  245. workers. So if you've had pool workers mysteriously dissapearing, or
  246. problems with celeryd stopping working, this has been fixed in this
  247. version.
  248. * Fixed a race condition with periodic tasks.
  249. * The task pool is now supervised, so if a pool worker crashes,
  250. goes away or stops responding, it is automatically replaced with
  251. a new one.
  252. * Task.name is now automatically generated out of class module+name, e.g.
  253. ``"djangotwitter.tasks.UpdateStatusesTask"``. Very convenient. No idea why
  254. we didn't do this before. Some documentation is updated to not manually
  255. specify a task name.
  256. NEWS
  257. ----
  258. * Tested with Django 1.1
  259. * New Tutorial: Creating a click counter using carrot and celery
  260. * Database entries for periodic tasks are now created at ``celeryd``
  261. startup instead of for each check (which has been a forgotten TODO/XXX
  262. in the code for a long time)
  263. * New settings variable: ``CELERY_TASK_RESULT_EXPIRES``
  264. Time (in seconds, or a `datetime.timedelta` object) for when after
  265. stored task results are deleted. For the moment this only works for the
  266. database backend.
  267. * ``celeryd`` now emits a debug log message for which periodic tasks
  268. has been launched.
  269. * The periodic task table is now locked for reading while getting
  270. periodic task status. (MySQL only so far, seeking patches for other
  271. engines)
  272. * A lot more debugging information is now available by turning on the
  273. ``DEBUG`` loglevel (``--loglevel=DEBUG``).
  274. * Functions/methods with a timeout argument now works correctly.
  275. * New: ``celery.strategy.even_time_distribution``:
  276. With an iterator yielding task args, kwargs tuples, evenly distribute
  277. the processing of its tasks throughout the time window available.
  278. * Log message ``Unknown task ignored...`` now has loglevel ``ERROR``
  279. * Log message ``"Got task from broker"`` is now emitted for all tasks, even if
  280. the task has an ETA (estimated time of arrival). Also the message now
  281. includes the ETA for the task (if any).
  282. * Acknowledgement now happens in the pool callback. Can't do ack in the job
  283. target, as it's not pickleable (can't share AMQP connection, etc)).
  284. * Added note about .delay hanging in README
  285. * Tests now passing in Django 1.1
  286. * Fixed discovery to make sure app is in INSTALLED_APPS
  287. * Previously overrided pool behaviour (process reap, wait until pool worker
  288. available, etc.) is now handled by ``multiprocessing.Pool`` itself.
  289. * Convert statistics data to unicode for use as kwargs. Thanks Lucy!
  290. 0.4.1 [2009-07-02 01:42 P.M CET]
  291. ================================
  292. * Fixed a bug with parsing the message options (``mandatory``,
  293. ``routing_key``, ``priority``, ``immediate``)
  294. 0.4.0 [2009-07-01 07:29 P.M CET]
  295. ================================
  296. * Adds eager execution. ``celery.execute.apply``|``Task.apply`` executes the
  297. function blocking until the task is done, for API compatiblity it
  298. returns an ``celery.result.EagerResult`` instance. You can configure
  299. celery to always run tasks locally by setting the
  300. ``CELERY_ALWAYS_EAGER`` setting to ``True``.
  301. * Now depends on ``anyjson``.
  302. * 99% coverage using python ``coverage`` 3.0.
  303. 0.3.20 [2009-06-25 08:42 P.M CET]
  304. =================================
  305. * New arguments to ``apply_async`` (the advanced version of
  306. ``delay_task``), ``countdown`` and ``eta``;
  307. >>> # Run 10 seconds into the future.
  308. >>> res = apply_async(MyTask, countdown=10);
  309. >>> # Run 1 day from now
  310. >>> res = apply_async(MyTask, eta=datetime.now() +
  311. ... timedelta(days=1)
  312. * Now unlinks the pidfile if it's stale.
  313. * Lots of more tests.
  314. * Now compatible with carrot >= 0.5.0.
  315. * **IMPORTANT** The ``subtask_ids`` attribute on the ``TaskSetResult``
  316. instance has been removed. To get this information instead use:
  317. >>> subtask_ids = [subtask.task_id for subtask in ts_res.subtasks]
  318. * ``Taskset.run()`` now respects extra message options from the task class.
  319. * Task: Add attribute ``ignore_result``: Don't store the status and
  320. return value. This means you can't use the
  321. ``celery.result.AsyncResult`` to check if the task is
  322. done, or get its return value. Only use if you need the performance
  323. and is able live without these features. Any exceptions raised will
  324. store the return value/status as usual.
  325. * Task: Add attribute ``disable_error_emails`` to disable sending error
  326. emails for that task.
  327. * Should now work on Windows (although running in the background won't
  328. work, so using the ``--detach`` argument results in an exception
  329. being raised.)
  330. * Added support for statistics for profiling and monitoring.
  331. To start sending statistics start ``celeryd`` with the
  332. ``--statistics`` option. Then after a while you can dump the results
  333. by running ``python manage.py celerystats``. See
  334. ``celery.monitoring`` for more information.
  335. * The celery daemon can now be supervised (i.e it is automatically
  336. restarted if it crashes). To use this start celeryd with the
  337. ``--supervised`` option (or alternatively ``-S``).
  338. * views.apply: View applying a task. Example::
  339. http://e.com/celery/apply/task_name/arg1/arg2//?kwarg1=a&kwarg2=b
  340. **NOTE** Use with caution, preferably not make this publicly
  341. accessible without ensuring your code is safe!
  342. * Refactored ``celery.task``. It's now split into three modules:
  343. * celery.task
  344. Contains ``apply_async``, ``delay_task``, ``discard_all``, and task
  345. shortcuts, plus imports objects from ``celery.task.base`` and
  346. ``celery.task.builtins``
  347. * celery.task.base
  348. Contains task base classes: ``Task``, ``PeriodicTask``,
  349. ``TaskSet``, ``AsynchronousMapTask``, ``ExecuteRemoteTask``.
  350. * celery.task.builtins
  351. Built-in tasks: ``PingTask``, ``DeleteExpiredTaskMetaTask``.
  352. 0.3.7 [2008-06-16 11:41 P.M CET]
  353. --------------------------------
  354. * **IMPORTANT** Now uses AMQP's ``basic.consume`` instead of
  355. ``basic.get``. This means we're no longer polling the broker for
  356. new messages.
  357. * **IMPORTANT** Default concurrency limit is now set to the number of CPUs
  358. available on the system.
  359. * **IMPORTANT** ``tasks.register``: Renamed ``task_name`` argument to
  360. ``name``, so
  361. >>> tasks.register(func, task_name="mytask")
  362. has to be replaced with:
  363. >>> tasks.register(func, name="mytask")
  364. * The daemon now correctly runs if the pidlock is stale.
  365. * Now compatible with carrot 0.4.5
  366. * Default AMQP connnection timeout is now 4 seconds.
  367. * ``AsyncResult.read()`` was always returning ``True``.
  368. * Only use README as long_description if the file exists so easy_install
  369. doesn't break.
  370. * ``celery.view``: JSON responses now properly set its mime-type.
  371. * ``apply_async`` now has a ``connection`` keyword argument so you
  372. can re-use the same AMQP connection if you want to execute
  373. more than one task.
  374. * Handle failures in task_status view such that it won't throw 500s.
  375. * Fixed typo ``AMQP_SERVER`` in documentation to ``AMQP_HOST``.
  376. * Worker exception e-mails sent to admins now works properly.
  377. * No longer depends on ``django``, so installing ``celery`` won't affect
  378. the preferred Django version installed.
  379. * Now works with PostgreSQL (psycopg2) again by registering the
  380. ``PickledObject`` field.
  381. * ``celeryd``: Added ``--detach`` option as an alias to ``--daemon``, and
  382. it's the term used in the documentation from now on.
  383. * Make sure the pool and periodic task worker thread is terminated
  384. properly at exit. (So ``Ctrl-C`` works again).
  385. * Now depends on ``python-daemon``.
  386. * Removed dependency to ``simplejson``
  387. * Cache Backend: Re-establishes connection for every task process
  388. if the Django cache backend is memcached/libmemcached.
  389. * Tyrant Backend: Now re-establishes the connection for every task
  390. executed.
  391. 0.3.3 [2009-06-08 01:07 P.M CET]
  392. ================================
  393. * The ``PeriodicWorkController`` now sleeps for 1 second between checking
  394. for periodic tasks to execute.
  395. 0.3.2 [2009-06-08 01:07 P.M CET]
  396. ================================
  397. * celeryd: Added option ``--discard``: Discard (delete!) all waiting
  398. messages in the queue.
  399. * celeryd: The ``--wakeup-after`` option was not handled as a float.
  400. 0.3.1 [2009-06-08 01:07 P.M CET]
  401. ================================
  402. * The `PeriodicTask`` worker is now running in its own thread instead
  403. of blocking the ``TaskController`` loop.
  404. * Default ``QUEUE_WAKEUP_AFTER`` has been lowered to ``0.1`` (was ``0.3``)
  405. 0.3.0 [2009-06-08 12:41 P.M CET]
  406. ================================
  407. **NOTE** This is a development version, for the stable release, please
  408. see versions 0.2.x.
  409. **VERY IMPORTANT:** Pickle is now the encoder used for serializing task
  410. arguments, so be sure to flush your task queue before you upgrade.
  411. * **IMPORTANT** TaskSet.run() now returns a celery.result.TaskSetResult
  412. instance, which lets you inspect the status and return values of a
  413. taskset as it was a single entity.
  414. * **IMPORTANT** Celery now depends on carrot >= 0.4.1.
  415. * The celery daemon now sends task errors to the registered admin e-mails.
  416. To turn off this feature, set ``SEND_CELERY_TASK_ERROR_EMAILS`` to
  417. ``False`` in your ``settings.py``. Thanks to Grégoire Cachet.
  418. * You can now run the celery daemon by using ``manage.py``::
  419. $ python manage.py celeryd
  420. Thanks to Grégoire Cachet.
  421. * Added support for message priorities, topic exchanges, custom routing
  422. keys for tasks. This means we have introduced
  423. ``celery.task.apply_async``, a new way of executing tasks.
  424. You can use ``celery.task.delay`` and ``celery.Task.delay`` like usual, but
  425. if you want greater control over the message sent, you want
  426. ``celery.task.apply_async`` and ``celery.Task.apply_async``.
  427. This also means the AMQP configuration has changed. Some settings has
  428. been renamed, while others are new::
  429. CELERY_AMQP_EXCHANGE
  430. CELERY_AMQP_PUBLISHER_ROUTING_KEY
  431. CELERY_AMQP_CONSUMER_ROUTING_KEY
  432. CELERY_AMQP_CONSUMER_QUEUE
  433. CELERY_AMQP_EXCHANGE_TYPE
  434. See the entry `Can I send some tasks to only some servers?`_ in the
  435. `FAQ`_ for more information.
  436. .. _`Can I send some tasks to only some servers?`:
  437. http://bit.ly/celery_AMQP_routing
  438. .. _`FAQ`: http://ask.github.com/celery/faq.html
  439. * Task errors are now logged using loglevel ``ERROR`` instead of ``INFO``,
  440. and backtraces are dumped. Thanks to Grégoire Cachet.
  441. * Make every new worker process re-establish it's Django DB connection,
  442. this solving the "MySQL connection died?" exceptions.
  443. Thanks to Vitaly Babiy and Jirka Vejrazka.
  444. * **IMOPORTANT** Now using pickle to encode task arguments. This means you
  445. now can pass complex python objects to tasks as arguments.
  446. * Removed dependency to ``yadayada``.
  447. * Added a FAQ, see ``docs/faq.rst``.
  448. * Now converts any unicode keys in task ``kwargs`` to regular strings.
  449. Thanks Vitaly Babiy.
  450. * Renamed the ``TaskDaemon`` to ``WorkController``.
  451. * ``celery.datastructures.TaskProcessQueue`` is now renamed to
  452. ``celery.pool.TaskPool``.
  453. * The pool algorithm has been refactored for greater performance and
  454. stability.
  455. 0.2.0 [2009-05-20 05:14 P.M CET]
  456. ================================
  457. * Final release of 0.2.0
  458. * Compatible with carrot version 0.4.0.
  459. * Fixes some syntax errors related to fetching results
  460. from the database backend.
  461. 0.2.0-pre3 [2009-05-20 05:14 P.M CET]
  462. =====================================
  463. * *Internal release*. Improved handling of unpickled exceptions,
  464. ``get_result`` now tries to recreate something looking like the
  465. original exception.
  466. 0.2.0-pre2 [2009-05-20 01:56 P.M CET]
  467. =====================================
  468. * Now handles unpickleable exceptions (like the dynimically generated
  469. subclasses of ``django.core.exception.MultipleObjectsReturned``).
  470. 0.2.0-pre1 [2009-05-20 12:33 P.M CET]
  471. =====================================
  472. * It's getting quite stable, with a lot of new features, so bump
  473. version to 0.2. This is a pre-release.
  474. * ``celery.task.mark_as_read()`` and ``celery.task.mark_as_failure()`` has
  475. been removed. Use ``celery.backends.default_backend.mark_as_read()``,
  476. and ``celery.backends.default_backend.mark_as_failure()`` instead.
  477. 0.1.15 [2009-05-19 04:13 P.M CET]
  478. =================================
  479. * The celery daemon was leaking AMQP connections, this should be fixed,
  480. if you have any problems with too many files open (like ``emfile``
  481. errors in ``rabbit.log``, please contact us!
  482. 0.1.14 [2009-05-19 01:08 P.M CET]
  483. =================================
  484. * Fixed a syntax error in the ``TaskSet`` class. (No such variable
  485. ``TimeOutError``).
  486. 0.1.13 [2009-05-19 12:36 P.M CET]
  487. =================================
  488. * Forgot to add ``yadayada`` to install requirements.
  489. * Now deletes all expired task results, not just those marked as done.
  490. * Able to load the Tokyo Tyrant backend class without django
  491. configuration, can specify tyrant settings directly in the class
  492. constructor.
  493. * Improved API documentation
  494. * Now using the Sphinx documentation system, you can build
  495. the html documentation by doing ::
  496. $ cd docs
  497. $ make html
  498. and the result will be in ``docs/.build/html``.
  499. 0.1.12 [2009-05-18 04:38 P.M CET]
  500. =================================
  501. * ``delay_task()`` etc. now returns ``celery.task.AsyncResult`` object,
  502. which lets you check the result and any failure that might have
  503. happened. It kind of works like the ``multiprocessing.AsyncResult``
  504. class returned by ``multiprocessing.Pool.map_async``.
  505. * Added dmap() and dmap_async(). This works like the
  506. ``multiprocessing.Pool`` versions except they are tasks
  507. distributed to the celery server. Example:
  508. >>> from celery.task import dmap
  509. >>> import operator
  510. >>> dmap(operator.add, [[2, 2], [4, 4], [8, 8]])
  511. >>> [4, 8, 16]
  512. >>> from celery.task import dmap_async
  513. >>> import operator
  514. >>> result = dmap_async(operator.add, [[2, 2], [4, 4], [8, 8]])
  515. >>> result.ready()
  516. False
  517. >>> time.sleep(1)
  518. >>> result.ready()
  519. True
  520. >>> result.result
  521. [4, 8, 16]
  522. * Refactored the task metadata cache and database backends, and added
  523. a new backend for Tokyo Tyrant. You can set the backend in your django
  524. settings file. e.g::
  525. CELERY_BACKEND = "database"; # Uses the database
  526. CELERY_BACKEND = "cache"; # Uses the django cache framework
  527. CELERY_BACKEND = "tyrant"; # Uses Tokyo Tyrant
  528. TT_HOST = "localhost"; # Hostname for the Tokyo Tyrant server.
  529. TT_PORT = 6657; # Port of the Tokyo Tyrant server.
  530. 0.1.11 [2009-05-12 02:08 P.M CET]
  531. =================================
  532. * The logging system was leaking file descriptors, resulting in
  533. servers stopping with the EMFILES (too many open files) error. (fixed)
  534. 0.1.10 [2009-05-11 12:46 P.M CET]
  535. =================================
  536. * Tasks now supports both positional arguments and keyword arguments.
  537. * Requires carrot 0.3.8.
  538. * The daemon now tries to reconnect if the connection is lost.
  539. 0.1.8 [2009-05-07 12:27 P.M CET]
  540. ================================
  541. * Better test coverage
  542. * More documentation
  543. * celeryd doesn't emit ``Queue is empty`` message if
  544. ``settings.CELERYD_EMPTY_MSG_EMIT_EVERY`` is 0.
  545. 0.1.7 [2009-04-30 1:50 P.M CET]
  546. ===============================
  547. * Added some unittests
  548. * Can now use the database for task metadata (like if the task has
  549. been executed or not). Set ``settings.CELERY_TASK_META``
  550. * Can now run ``python setup.py test`` to run the unittests from
  551. within the ``testproj`` project.
  552. * Can set the AMQP exchange/routing key/queue using
  553. ``settings.CELERY_AMQP_EXCHANGE``, ``settings.CELERY_AMQP_ROUTING_KEY``,
  554. and ``settings.CELERY_AMQP_CONSUMER_QUEUE``.
  555. 0.1.6 [2009-04-28 2:13 P.M CET]
  556. ===============================
  557. * Introducing ``TaskSet``. A set of subtasks is executed and you can
  558. find out how many, or if all them, are done (excellent for progress
  559. bars and such)
  560. * Now catches all exceptions when running ``Task.__call__``, so the
  561. daemon doesn't die. This does't happen for pure functions yet, only
  562. ``Task`` classes.
  563. * ``autodiscover()`` now works with zipped eggs.
  564. * celeryd: Now adds curernt working directory to ``sys.path`` for
  565. convenience.
  566. * The ``run_every`` attribute of ``PeriodicTask`` classes can now be a
  567. ``datetime.timedelta()`` object.
  568. * celeryd: You can now set the ``DJANGO_PROJECT_DIR`` variable
  569. for ``celeryd`` and it will add that to ``sys.path`` for easy launching.
  570. * Can now check if a task has been executed or not via HTTP.
  571. * You can do this by including the celery ``urls.py`` into your project,
  572. >>> url(r'^celery/$', include("celery.urls"))
  573. then visiting the following url,::
  574. http://mysite/celery/$task_id/done/
  575. this will return a JSON dictionary like e.g:
  576. >>> {"task": {"id": $task_id, "executed": true}}
  577. * ``delay_task`` now returns string id, not ``uuid.UUID`` instance.
  578. * Now has ``PeriodicTasks``, to have ``cron`` like functionality.
  579. * Project changed name from ``crunchy`` to ``celery``. The details of
  580. the name change request is in ``docs/name_change_request.txt``.
  581. 0.1.0 [2009-04-24 11:28 A.M CET]
  582. ================================
  583. * Initial release