Changelog 26 KB

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