Changelog 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447
  1. ==============
  2. Change history
  3. ==============
  4. 0.4.1 [2009-07-02 01:42 P.M CET]
  5. --------------------------------
  6. * Fixed a bug with parsing the message options (``mandatory``,
  7. ``routing_key``, ``priority``, ``immediate``)
  8. 0.4.0 [2009-07-01 07:29 P.M CET]
  9. --------------------------------
  10. * Adds eager execution. ``celery.execute.apply``|``Task.apply`` executes the
  11. function blocking until the task is done, for API compatiblity it
  12. returns an ``celery.result.EagerResult`` instance. You can configure
  13. celery to always run tasks locally by setting the
  14. ``CELERY_ALWAYS_EAGER`` setting to ``True``.
  15. * Now depends on ``anyjson``.
  16. * 99% coverage using python ``coverage`` 3.0.
  17. 0.3.20 [2009-06-25 08:42 P.M CET]
  18. ---------------------------------
  19. * New arguments to ``apply_async`` (the advanced version of
  20. ``delay_task``), ``countdown`` and ``eta``;
  21. >>> # Run 10 seconds into the future.
  22. >>> res = apply_async(MyTask, countdown=10);
  23. >>> # Run 1 day from now
  24. >>> res = apply_async(MyTask, eta=datetime.now() +
  25. ... timedelta(days=1)
  26. * Now unlinks the pidfile if it's stale.
  27. * Lots of more tests.
  28. * Now compatible with carrot >= 0.5.0.
  29. * **IMPORTANT** The ``subtask_ids`` attribute on the ``TaskSetResult``
  30. instance has been removed. To get this information instead use:
  31. >>> subtask_ids = [subtask.task_id for subtask in ts_res.subtasks]
  32. * ``Taskset.run()`` now respects extra message options from the task class.
  33. * Task: Add attribute ``ignore_result``: Don't store the status and
  34. return value. This means you can't use the
  35. ``celery.result.AsyncResult`` to check if the task is
  36. done, or get its return value. Only use if you need the performance
  37. and is able live without these features. Any exceptions raised will
  38. store the return value/status as usual.
  39. * Task: Add attribute ``disable_error_emails`` to disable sending error
  40. emails for that task.
  41. * Should now work on Windows (although running in the background won't
  42. work, so using the ``--detach`` argument results in an exception
  43. being raised.)
  44. * Added support for statistics for profiling and monitoring.
  45. To start sending statistics start ``celeryd`` with the
  46. ``--statistics`` option. Then after a while you can dump the results
  47. by running ``python manage.py celerystats``. See
  48. ``celery.monitoring`` for more information.
  49. * The celery daemon can now be supervised (i.e it is automatically
  50. restarted if it crashes). To use this start celeryd with the
  51. ``--supervised`` option (or alternatively ``-S``).
  52. * views.apply: View applying a task. Example::
  53. http://e.com/celery/apply/task_name/arg1/arg2//?kwarg1=a&kwarg2=b
  54. **NOTE** Use with caution, preferably not make this publicly
  55. accessible without ensuring your code is safe!
  56. * Refactored ``celery.task``. It's now split into three modules:
  57. * celery.task
  58. Contains ``apply_async``, ``delay_task``, ``discard_all``, and task
  59. shortcuts, plus imports objects from ``celery.task.base`` and
  60. ``celery.task.builtins``
  61. * celery.task.base
  62. Contains task base classes: ``Task``, ``PeriodicTask``,
  63. ``TaskSet``, ``AsynchronousMapTask``, ``ExecuteRemoteTask``.
  64. * celery.task.builtins
  65. Built-in tasks: ``PingTask``, ``DeleteExpiredTaskMetaTask``.
  66. 0.3.7 [2008-06-16 11:41 P.M CET]
  67. --------------------------------
  68. * **IMPORTANT** Now uses AMQP's ``basic.consume`` instead of
  69. ``basic.get``. This means we're no longer polling the broker for
  70. new messages.
  71. * **IMPORTANT** Default concurrency limit is now set to the number of CPUs
  72. available on the system.
  73. * **IMPORTANT** ``tasks.register``: Renamed ``task_name`` argument to
  74. ``name``, so
  75. >>> tasks.register(func, task_name="mytask")
  76. has to be replaced with:
  77. >>> tasks.register(func, name="mytask")
  78. * The daemon now correctly runs if the pidlock is stale.
  79. * Now compatible with carrot 0.4.5
  80. * Default AMQP connnection timeout is now 4 seconds.
  81. * ``AsyncResult.read()`` was always returning ``True``.
  82. * Only use README as long_description if the file exists so easy_install
  83. doesn't break.
  84. * ``celery.view``: JSON responses now properly set its mime-type.
  85. * ``apply_async`` now has a ``connection`` keyword argument so you
  86. can re-use the same AMQP connection if you want to execute
  87. more than one task.
  88. * Handle failures in task_status view such that it won't throw 500s.
  89. * Fixed typo ``AMQP_SERVER`` in documentation to ``AMQP_HOST``.
  90. * Worker exception e-mails sent to admins now works properly.
  91. * No longer depends on ``django``, so installing ``celery`` won't affect
  92. the preferred Django version installed.
  93. * Now works with PostgreSQL (psycopg2) again by registering the
  94. ``PickledObject`` field.
  95. * ``celeryd``: Added ``--detach`` option as an alias to ``--daemon``, and
  96. it's the term used in the documentation from now on.
  97. * Make sure the pool and periodic task worker thread is terminated
  98. properly at exit. (So ``Ctrl-C`` works again).
  99. * Now depends on ``python-daemon``.
  100. * Removed dependency to ``simplejson``
  101. * Cache Backend: Re-establishes connection for every task process
  102. if the Django cache backend is memcached/libmemcached.
  103. * Tyrant Backend: Now re-establishes the connection for every task
  104. executed.
  105. 0.3.3 [2009-06-08 01:07 P.M CET]
  106. --------------------------------
  107. * The ``PeriodicWorkController`` now sleeps for 1 second between checking
  108. for periodic tasks to execute.
  109. 0.3.2 [2009-06-08 01:07 P.M CET]
  110. --------------------------------
  111. * celeryd: Added option ``--discard``: Discard (delete!) all waiting
  112. messages in the queue.
  113. * celeryd: The ``--wakeup-after`` option was not handled as a float.
  114. 0.3.1 [2009-06-08 01:07 P.M CET]
  115. --------------------------------
  116. * The `PeriodicTask`` worker is now running in its own thread instead
  117. of blocking the ``TaskController`` loop.
  118. * Default ``QUEUE_WAKEUP_AFTER`` has been lowered to ``0.1`` (was ``0.3``)
  119. 0.3.0 [2009-06-08 12:41 P.M CET]
  120. --------------------------------
  121. **NOTE** This is a development version, for the stable release, please
  122. see versions 0.2.x.
  123. **VERY IMPORTANT:** Pickle is now the encoder used for serializing task
  124. arguments, so be sure to flush your task queue before you upgrade.
  125. * **IMPORTANT** TaskSet.run() now returns a celery.result.TaskSetResult
  126. instance, which lets you inspect the status and return values of a
  127. taskset as it was a single entity.
  128. * **IMPORTANT** Celery now depends on carrot >= 0.4.1.
  129. * The celery daemon now sends task errors to the registered admin e-mails.
  130. To turn off this feature, set ``SEND_CELERY_TASK_ERROR_EMAILS`` to
  131. ``False`` in your ``settings.py``. Thanks to Grégoire Cachet.
  132. * You can now run the celery daemon by using ``manage.py``::
  133. $ python manage.py celeryd
  134. Thanks to Grégoire Cachet.
  135. * Added support for message priorities, topic exchanges, custom routing
  136. keys for tasks. This means we have introduced
  137. ``celery.task.apply_async``, a new way of executing tasks.
  138. You can use ``celery.task.delay`` and ``celery.Task.delay`` like usual, but
  139. if you want greater control over the message sent, you want
  140. ``celery.task.apply_async`` and ``celery.Task.apply_async``.
  141. This also means the AMQP configuration has changed. Some settings has
  142. been renamed, while others are new::
  143. CELERY_AMQP_EXCHANGE
  144. CELERY_AMQP_PUBLISHER_ROUTING_KEY
  145. CELERY_AMQP_CONSUMER_ROUTING_KEY
  146. CELERY_AMQP_CONSUMER_QUEUE
  147. CELERY_AMQP_EXCHANGE_TYPE
  148. See the entry `Can I send some tasks to only some servers?`_ in the
  149. `FAQ`_ for more information.
  150. .. _`Can I send some tasks to only some servers?`:
  151. http://bit.ly/celery_AMQP_routing
  152. .. _`FAQ`: http://ask.github.com/celery/faq.html
  153. * Task errors are now logged using loglevel ``ERROR`` instead of ``INFO``,
  154. and backtraces are dumped. Thanks to Grégoire Cachet.
  155. * Make every new worker process re-establish it's Django DB connection,
  156. this solving the "MySQL connection died?" exceptions.
  157. Thanks to Vitaly Babiy and Jirka Vejrazka.
  158. * **IMOPORTANT** Now using pickle to encode task arguments. This means you
  159. now can pass complex python objects to tasks as arguments.
  160. * Removed dependency to ``yadayada``.
  161. * Added a FAQ, see ``docs/faq.rst``.
  162. * Now converts any unicode keys in task ``kwargs`` to regular strings.
  163. Thanks Vitaly Babiy.
  164. * Renamed the ``TaskDaemon`` to ``WorkController``.
  165. * ``celery.datastructures.TaskProcessQueue`` is now renamed to
  166. ``celery.pool.TaskPool``.
  167. * The pool algorithm has been refactored for greater performance and
  168. stability.
  169. 0.2.0 [2009-05-20 05:14 P.M CET]
  170. --------------------------------
  171. * Final release of 0.2.0
  172. * Compatible with carrot version 0.4.0.
  173. * Fixes some syntax errors related to fetching results
  174. from the database backend.
  175. 0.2.0-pre3 [2009-05-20 05:14 P.M CET]
  176. -------------------------------------
  177. * *Internal release*. Improved handling of unpickled exceptions,
  178. ``get_result`` now tries to recreate something looking like the
  179. original exception.
  180. 0.2.0-pre2 [2009-05-20 01:56 P.M CET]
  181. -------------------------------------
  182. * Now handles unpickleable exceptions (like the dynimically generated
  183. subclasses of ``django.core.exception.MultipleObjectsReturned``).
  184. 0.2.0-pre1 [2009-05-20 12:33 P.M CET]
  185. -------------------------------------
  186. * It's getting quite stable, with a lot of new features, so bump
  187. version to 0.2. This is a pre-release.
  188. * ``celery.task.mark_as_read()`` and ``celery.task.mark_as_failure()`` has
  189. been removed. Use ``celery.backends.default_backend.mark_as_read()``,
  190. and ``celery.backends.default_backend.mark_as_failure()`` instead.
  191. 0.1.15 [2009-05-19 04:13 P.M CET]
  192. ---------------------------------
  193. * The celery daemon was leaking AMQP connections, this should be fixed,
  194. if you have any problems with too many files open (like ``emfile``
  195. errors in ``rabbit.log``, please contact us!
  196. 0.1.14 [2009-05-19 01:08 P.M CET]
  197. ---------------------------------
  198. * Fixed a syntax error in the ``TaskSet`` class. (No such variable
  199. ``TimeOutError``).
  200. 0.1.13 [2009-05-19 12:36 P.M CET]
  201. ---------------------------------
  202. * Forgot to add ``yadayada`` to install requirements.
  203. * Now deletes all expired task results, not just those marked as done.
  204. * Able to load the Tokyo Tyrant backend class without django
  205. configuration, can specify tyrant settings directly in the class
  206. constructor.
  207. * Improved API documentation
  208. * Now using the Sphinx documentation system, you can build
  209. the html documentation by doing ::
  210. $ cd docs
  211. $ make html
  212. and the result will be in ``docs/.build/html``.
  213. 0.1.12 [2009-05-18 04:38 P.M CET]
  214. ---------------------------------
  215. * ``delay_task()`` etc. now returns ``celery.task.AsyncResult`` object,
  216. which lets you check the result and any failure that might have
  217. happened. It kind of works like the ``multiprocessing.AsyncResult``
  218. class returned by ``multiprocessing.Pool.map_async``.
  219. * Added dmap() and dmap_async(). This works like the
  220. ``multiprocessing.Pool`` versions except they are tasks
  221. distributed to the celery server. Example:
  222. >>> from celery.task import dmap
  223. >>> import operator
  224. >>> dmap(operator.add, [[2, 2], [4, 4], [8, 8]])
  225. >>> [4, 8, 16]
  226. >>> from celery.task import dmap_async
  227. >>> import operator
  228. >>> result = dmap_async(operator.add, [[2, 2], [4, 4], [8, 8]])
  229. >>> result.ready()
  230. False
  231. >>> time.sleep(1)
  232. >>> result.ready()
  233. True
  234. >>> result.result
  235. [4, 8, 16]
  236. * Refactored the task metadata cache and database backends, and added
  237. a new backend for Tokyo Tyrant. You can set the backend in your django
  238. settings file. e.g::
  239. CELERY_BACKEND = "database"; # Uses the database
  240. CELERY_BACKEND = "cache"; # Uses the django cache framework
  241. CELERY_BACKEND = "tyrant"; # Uses Tokyo Tyrant
  242. TT_HOST = "localhost"; # Hostname for the Tokyo Tyrant server.
  243. TT_PORT = 6657; # Port of the Tokyo Tyrant server.
  244. 0.1.11 [2009-05-12 02:08 P.M CET]
  245. ---------------------------------
  246. * The logging system was leaking file descriptors, resulting in
  247. servers stopping with the EMFILES (too many open files) error. (fixed)
  248. 0.1.10 [2009-05-11 12:46 P.M CET]
  249. ---------------------------------
  250. * Tasks now supports both positional arguments and keyword arguments.
  251. * Requires carrot 0.3.8.
  252. * The daemon now tries to reconnect if the connection is lost.
  253. 0.1.8 [2009-05-07 12:27 P.M CET]
  254. --------------------------------
  255. * Better test coverage
  256. * More documentation
  257. * celeryd doesn't emit ``Queue is empty`` message if
  258. ``settings.CELERYD_EMPTY_MSG_EMIT_EVERY`` is 0.
  259. 0.1.7 [2009-04-30 1:50 P.M CET]
  260. -------------------------------
  261. * Added some unittests
  262. * Can now use the database for task metadata (like if the task has
  263. been executed or not). Set ``settings.CELERY_TASK_META``
  264. * Can now run ``python setup.py test`` to run the unittests from
  265. within the ``testproj`` project.
  266. * Can set the AMQP exchange/routing key/queue using
  267. ``settings.CELERY_AMQP_EXCHANGE``, ``settings.CELERY_AMQP_ROUTING_KEY``,
  268. and ``settings.CELERY_AMQP_CONSUMER_QUEUE``.
  269. 0.1.6 [2009-04-28 2:13 P.M CET]
  270. -------------------------------
  271. * Introducing ``TaskSet``. A set of subtasks is executed and you can
  272. find out how many, or if all them, are done (excellent for progress
  273. bars and such)
  274. * Now catches all exceptions when running ``Task.__call__``, so the
  275. daemon doesn't die. This does't happen for pure functions yet, only
  276. ``Task`` classes.
  277. * ``autodiscover()`` now works with zipped eggs.
  278. * celeryd: Now adds curernt working directory to ``sys.path`` for
  279. convenience.
  280. * The ``run_every`` attribute of ``PeriodicTask`` classes can now be a
  281. ``datetime.timedelta()`` object.
  282. * celeryd: You can now set the ``DJANGO_PROJECT_DIR`` variable
  283. for ``celeryd`` and it will add that to ``sys.path`` for easy launching.
  284. * Can now check if a task has been executed or not via HTTP.
  285. * You can do this by including the celery ``urls.py`` into your project,
  286. >>> url(r'^celery/$', include("celery.urls"))
  287. then visiting the following url,::
  288. http://mysite/celery/$task_id/done/
  289. this will return a JSON dictionary like e.g:
  290. >>> {"task": {"id": $task_id, "executed": true}}
  291. * ``delay_task`` now returns string id, not ``uuid.UUID`` instance.
  292. * Now has ``PeriodicTasks``, to have ``cron`` like functionality.
  293. * Project changed name from ``crunchy`` to ``celery``. The details of
  294. the name change request is in ``docs/name_change_request.txt``.
  295. 0.1.0 [2009-04-24 11:28 A.M CET]
  296. --------------------------------
  297. * Initial release