Changelog 32 KB

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