Changelog 52 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555
  1. ================
  2. Change history
  3. ================
  4. 1.0.3 [2010-05-13 xx:Xx x.x CET]
  5. ================================
  6. Important notes
  7. ---------------
  8. * Messages are now acked *just before* the task function is executed.
  9. This is the behavior we've wanted all along, but couldn't have because of
  10. limitations in the multiprocessing module.
  11. The previous behavior was not good, and the situation worsened with the
  12. release of 1.0.1, so this change will definitely improve
  13. reliability, performance and operations in general.
  14. For more information please see http://bit.ly/9hom6T
  15. * Database result backend: result now expliclty sets ``null=True`` as
  16. ``django-picklefield`` version 0.1.5 changed the default behavior
  17. right under our noses :(
  18. See: http://bit.ly/d5OwMr
  19. This means those who created their celery tables (via syncdb or
  20. celeryinit) with picklefield versions >= 0.1.5 has to alter their tables to
  21. allow the result field to be ``NULL`` manually.
  22. MySQL::
  23. ALTER TABLE celery_taskmeta MODIFY result TEXT NULL
  24. * Removed ``Task.rate_limit_queue_type``, as it was not really useful
  25. and made it harder to refactor some parts.
  26. * Now depends on carrot >= 0.10.4
  27. * Now depends on billiard >= 0.3.0
  28. News
  29. ----
  30. * AMQP backend: Added timeout support for ``result.get()`` /
  31. ``result.wait()``.
  32. * New task option: ``Task.acks_late`` (default: ``CELERY_ACKS_LATE``)
  33. Late ack means the task messages will be acknowledged **after** the task
  34. has been executed, not *just before*, which is the default behavior.
  35. Note that this means the tasks may be executed twice if the worker
  36. crashes in the middle of their execution. Not acceptable for most
  37. applications, but desirable for others.
  38. * Added crontab-like scheduling to periodic tasks.
  39. Like a cron job, you can specify units of time of when
  40. you would like the task to execute. While not a full implementation
  41. of cron's features, it should provide a fair degree of common scheduling
  42. needs.
  43. You can specify a minute (0-59), an hour (0-23), and/or a day of the
  44. week (0-6 where 0 is Sunday, or by names: sun, mon, tue, wed, thu, fri,
  45. sat).
  46. Examples:
  47. .. code-block:: python
  48. from celery.task import crontab
  49. from celery.decorators import periodic_task
  50. @periodic_task(run_every=crontab(hour=7, minute=30))
  51. def every_morning():
  52. print("Runs every morning at 7:30a.m")
  53. @periodic_task(run_every=crontab(hour=7, minute=30,
  54. day_of_week="monday"))
  55. def every_monday_morning():
  56. print("Run every monday morning at 7:30a.m")
  57. @periodic_task(run_every=crontab(minutes=30))
  58. def every_hour():
  59. print("Runs every hour on the clock. e.g. 1:30, 2:30, 3:30 etc.")
  60. Note that this a late addition. While we have unittests, due to the
  61. nature of this feature we haven't been able to completely test this
  62. in practice, so consider this experimental.
  63. * ``TaskPool.apply_async``: Now supports the ``accept_callback`` argument.
  64. * ``apply_async``: Now raises :exc:`ValueError` if task args is not a list,
  65. or kwargs is not a tuple (http://github.com/ask/celery/issues/issue/95).
  66. * ``Task.max_retries`` can now be ``None``, which means it will retry forever.
  67. * Celerybeat: Now reuses the same connection when publishing large
  68. sets of tasks.
  69. * Modified the task locking example in the documentation to use
  70. ``cache.add`` for atomic locking.
  71. * Added experimental support for a *started* status on tasks.
  72. If ``Task.track_started`` is enabled the task will report its status
  73. as "started" when the task is executed by a worker.
  74. The default value is ``False`` as the normal behaviour is to not
  75. report that level of granularity. Tasks are either pending, finished,
  76. or waiting to be retried. Having a "started" status can be useful for
  77. when there are long running tasks and there is a need to report which
  78. task is currently running.
  79. The global default can be overridden by the ``CELERY_TRACK_STARTED``
  80. setting.
  81. * User Guide: New section ``Tips and Best Practices``.
  82. Contributions welcome!
  83. Fixes
  84. -----
  85. * Mediator thread no longer blocks for more than 1 second.
  86. With rate limits enabled and when there was a lot of remaining time,
  87. the mediator thread could block shutdown (and potentially block other
  88. jobs from coming in).
  89. * Remote rate limits was not properly applied
  90. (http://github.com/ask/celery/issues/issue/98)
  91. * Now handles exceptions with unicode messages correctly in
  92. ``TaskWrapper.on_failure``.
  93. * Database backend: ``TaskMeta.result``: default value should be ``None``
  94. not empty string.
  95. Remote control commands
  96. -----------------------
  97. * Remote control commands can now send replies back to the caller.
  98. Existing commands has been improved to send replies, and the client
  99. interface in ``celery.task.control`` has new keyword arguments: ``reply``,
  100. ``timeout`` and ``limit``. Where reply means it will wait for replies,
  101. timeout is the time in seconds to stop waiting for replies, and limit
  102. is the maximum number of replies to get.
  103. By default, it will wait for as many replies as possible for one second.
  104. * rate_limit(task_name, destination=all, reply=False, timeout=1, limit=0)
  105. Worker returns ``{"ok": message}`` on success,
  106. or ``{"failure": message}`` on failure.
  107. >>> from celery.task.control import rate_limit
  108. >>> rate_limit("tasks.add", "10/s", reply=True)
  109. [{'worker1': {'ok': 'new rate limit set successfully'}},
  110. {'worker2': {'ok': 'new rate limit set successfully'}}]
  111. * ping(destination=all, reply=False, timeout=1, limit=0)
  112. Worker returns the simple message ``"pong"``.
  113. >>> from celery.task.control import ping
  114. >>> ping(reply=True)
  115. [{'worker1': 'pong'},
  116. {'worker2': 'pong'},
  117. * revoke(destination=all, reply=False, timeout=1, limit=0)
  118. Worker simply returns ``True``.
  119. >>> from celery.task.control import revoke
  120. >>> revoke("419e46eb-cf6a-4271-86a8-442b7124132c", reply=True)
  121. [{'worker1': True},
  122. {'worker2'; True}]
  123. * You can now add your own remote control commands!
  124. Remote control commands are functions registered in the command
  125. registry. Registering a command is done using
  126. ``celery.worker.control.Panel.register``:
  127. .. code-block:: python
  128. from celery.task.control import Panel
  129. @Panel.register
  130. def reset_broker_connection(panel, **kwargs):
  131. panel.listener.reset_connection()
  132. return {"ok": "connection re-established"}
  133. With this module imported in the worker, you can launch the command
  134. using ``celery.task.control.broadcast``::
  135. >>> from celery.task.control import broadcast
  136. >>> broadcast("reset_broker_connection", reply=True)
  137. [{'worker1': {'ok': 'connection re-established'},
  138. {'worker2': {'ok': 'connection re-established'}}]
  139. **TIP** You can choose the worker(s) to receive the command
  140. by using the ``destination`` argument::
  141. >>> broadcast("reset_broker_connection", destination=["worker1"])
  142. [{'worker1': {'ok': 'connection re-established'}]
  143. * New remote control command: ``dump_reserved``
  144. Dumps tasks reserved by the worker, waiting to be executed::
  145. >>> from celery.task.control import broadcast
  146. >>> broadcast("dump_reserved", reply=True)
  147. [{'myworker1': [<TaskWrapper ....>]}]
  148. * New remote control command: ``dump_schedule``
  149. Dumps the workers currently registered ETA schedule.
  150. >>> from celery.task.control import broadcast
  151. >>> broadcast("dump_schedule", reply=True)
  152. [{'w1': []},
  153. {'w3': []},
  154. {'w2': ['0. 2010-05-12 11:06:00 pri0 <TaskWrapper:
  155. {name:"opalfeeds.tasks.refresh_feed_slice",
  156. id:"95b45760-4e73-4ce8-8eac-f100aa80273a",
  157. args:"(<Feeds freq_max:3600 freq_min:60
  158. start:2184.0 stop:3276.0>,)",
  159. kwargs:"{'page': 2}"}>']},
  160. {'w4': ['0. 2010-05-12 11:00:00 pri0 <TaskWrapper:
  161. {name:"opalfeeds.tasks.refresh_feed_slice",
  162. id:"c053480b-58fb-422f-ae68-8d30a464edfe",
  163. args:"(<Feeds freq_max:3600 freq_min:60
  164. start:1092.0 stop:2184.0>,)",
  165. kwargs:"{\'page\': 1}"}>',
  166. '1. 2010-05-12 11:12:00 pri0 <TaskWrapper:
  167. {name:"opalfeeds.tasks.refresh_feed_slice",
  168. id:"ab8bc59e-6cf8-44b8-88d0-f1af57789758",
  169. args:"(<Feeds freq_max:3600 freq_min:60
  170. start:3276.0 stop:4365>,)",
  171. kwargs:"{\'page\': 3}"}>']}]
  172. 1.0.2 [2010-03-31 12:50 P.M CET]
  173. ================================
  174. * Deprecated: ``CELERY_BACKEND``, please use ``CELERY_RESULT_BACKEND``
  175. instead.
  176. * We now use a custom logger in tasks. This logger supports task magic
  177. keyword arguments in formats.
  178. The default format for tasks (``CELERYD_TASK_LOG_FORMAT``) now includes
  179. the id and the name of tasks so the origin of task log messages can
  180. easily be traced.
  181. Example output::
  182. [2010-03-25 13:11:20,317: INFO/PoolWorker-1]
  183. [tasks.add(a6e1c5ad-60d9-42a0-8b24-9e39363125a4)] Hello from add
  184. To revert to the previous behavior you can set::
  185. CELERYD_TASK_LOG_FORMAT = """
  186. [%(asctime)s: %(levelname)s/%(processName)s] %(message)s
  187. """.strip()
  188. * Unittests: Don't disable the django test database teardown,
  189. instead fixed the underlying issue which was caused by modifications
  190. to the ``DATABASE_NAME`` setting (http://github.com/ask/celery/issues/82).
  191. * Django Loader: New config ``CELERY_DB_REUSE_MAX`` (max number of tasks
  192. to reuse the same database connection)
  193. The default is to use a new connection for every task.
  194. We would very much like to reuse the connection, but a safe number of
  195. reuses is not known, and we don't have any way to handle the errors
  196. that might happen, which may even be database dependent.
  197. See: http://bit.ly/94fwdd
  198. * celeryd: The worker components are now configurable: ``CELERYD_POOL``,
  199. ``CELERYD_LISTENER``, ``CELERYD_MEDIATOR``, and ``CELERYD_ETA_SCHEDULER``.
  200. The default configuration is as follows:
  201. .. code-block:: python
  202. CELERYD_POOL = "celery.worker.pool.TaskPool"
  203. CELERYD_MEDIATOR = "celery.worker.controllers.Mediator"
  204. CELERYD_ETA_SCHEDULER = "celery.worker.controllers.ScheduleController"
  205. CELERYD_LISTENER = "celery.worker.listener.CarrotListener"
  206. The ``CELERYD_POOL`` setting makes it easy to swap out the multiprocessing
  207. pool with a threaded pool, or how about a twisted/eventlet pool?
  208. Consider the competition for the first pool plug-in started!
  209. * Debian init scripts: Use ``-a`` not ``&&``
  210. (http://github.com/ask/celery/issues/82).
  211. * Debian init scripts: Now always preserves ``$CELERYD_OPTS`` from the
  212. ``/etc/default/celeryd`` and ``/etc/default/celerybeat``.
  213. * celery.beat.Scheduler: Fixed a bug where the schedule was not properly
  214. flushed to disk if the schedule had not been properly initialized.
  215. * celerybeat: Now syncs the schedule to disk when receiving the ``SIGTERM``
  216. and ``SIGINT`` signals.
  217. * Control commands: Make sure keywords arguments are not in unicode.
  218. * ETA scheduler: Was missing a logger object, so the scheduler crashed
  219. when trying to log that a task had been revoked.
  220. * management.commands.camqadm: Fixed typo ``camqpadm`` -> ``camqadm``
  221. (http://github.com/ask/celery/issues/83).
  222. * PeriodicTask.delta_resolution: Was not working for days and hours, now fixed
  223. by rounding to the nearest day/hour.
  224. * Fixed a potential infinite loop in ``BaseAsyncResult.__eq__``, although
  225. there is no evidence that it has ever been triggered.
  226. * celeryd: Now handles messages with encoding problems by acking them and
  227. emitting an error message.
  228. 1.0.1 [2010-02-24 07:05 P.M CET]
  229. ================================
  230. * Tasks are now acknowledged early instead of late.
  231. This is done because messages can only be acked within the same
  232. connection channel, so if the connection is lost we would have to refetch
  233. the message again to acknowledge it.
  234. This might or might not affect you, but mostly those running tasks with a
  235. really long execution time are affected, as all tasks that has made it
  236. all the way into the pool needs to be executed before the worker can
  237. safely terminate (this is at most the number of pool workers, multiplied
  238. by the ``CELERYD_PREFETCH_MULTIPLIER`` setting.)
  239. We multiply the prefetch count by default to increase the performance at
  240. times with bursts of tasks with a short execution time. If this doesn't
  241. apply to your use case, you should be able to set the prefetch multiplier
  242. to zero, without sacrificing performance.
  243. Please note that a patch to :mod:`multiprocessing` is currently being
  244. worked on, this patch would enable us to use a better solution, and is
  245. scheduled for inclusion in the ``1.2.0`` release.
  246. * celeryd now shutdowns cleanly when receving the ``TERM`` signal.
  247. * celeryd now does a cold shutdown if the ``INT`` signal is received (Ctrl+C),
  248. this means it tries to terminate as soon as possible.
  249. * Caching of results now moved to the base backend classes, so no need
  250. to implement this functionality in the base classes.
  251. * Caches are now also limited in size, so their memory usage doesn't grow
  252. out of control.
  253. You can set the maximum number of results the cache
  254. can hold using the ``CELERY_MAX_CACHED_RESULTS`` setting (the default
  255. is five thousand results). In addition, you can refetch already retrieved
  256. results using ``backend.reload_task_result`` +
  257. ``backend.reload_taskset_result`` (that's for those who want to send
  258. results incrementally).
  259. * ``celeryd`` now works on Windows again.
  260. Note that if running with Django,
  261. you can't use ``project.settings`` as the settings module name, but the
  262. following should work::
  263. $ python manage.py celeryd --settings=settings
  264. * Execution: ``.messaging.TaskPublisher.send_task`` now
  265. incorporates all the functionality apply_async previously did.
  266. Like converting countdowns to eta, so :func:`celery.execute.apply_async` is
  267. now simply a convenient front-end to
  268. :meth:`celery.messaging.TaskPublisher.send_task`, using
  269. the task classes default options.
  270. Also :func:`celery.execute.send_task` has been
  271. introduced, which can apply tasks using just the task name (useful
  272. if the client does not have the destination task in its task registry).
  273. Example:
  274. >>> from celery.execute import send_task
  275. >>> result = send_task("celery.ping", args=[], kwargs={})
  276. >>> result.get()
  277. 'pong'
  278. * ``camqadm``: This is a new utility for command line access to the AMQP API.
  279. Excellent for deleting queues/bindings/exchanges, experimentation and
  280. testing::
  281. $ camqadm
  282. 1> help
  283. Gives an interactive shell, type ``help`` for a list of commands.
  284. When using Django, use the management command instead::
  285. $ python manage.py camqadm
  286. 1> help
  287. * Redis result backend: To conform to recent Redis API changes, the following
  288. settings has been deprecated:
  289. * ``REDIS_TIMEOUT``
  290. * ``REDIS_CONNECT_RETRY``
  291. These will emit a ``DeprecationWarning`` if used.
  292. A ``REDIS_PASSWORD`` setting has been added, so you can use the new
  293. simple authentication mechanism in Redis.
  294. * The redis result backend no longer calls ``SAVE`` when disconnecting,
  295. as this is apparently better handled by Redis itself.
  296. * If ``settings.DEBUG`` is on, celeryd now warns about the possible
  297. memory leak it can result in.
  298. * The ETA scheduler now sleeps at most two seconds between iterations.
  299. * The ETA scheduler now deletes any revoked tasks it might encounter.
  300. As revokes are not yet persistent, this is done to make sure the task
  301. is revoked even though it's currently being hold because its eta is e.g.
  302. a week into the future.
  303. * The ``task_id`` argument is now respected even if the task is executed
  304. eagerly (either using apply, or ``CELERY_ALWAYS_EAGER``).
  305. * The internal queues are now cleared if the connection is reset.
  306. * New magic keyword argument: ``delivery_info``.
  307. Used by retry() to resend the task to its original destination using the same
  308. exchange/routing_key.
  309. * Events: Fields was not passed by ``.send()`` (fixes the uuid keyerrors
  310. in celerymon)
  311. * Added ``--schedule``/``-s`` option to celeryd, so it is possible to
  312. specify a custom schedule filename when using an embedded celerybeat
  313. server (the ``-B``/``--beat``) option.
  314. * Better Python 2.4 compatibility. The test suite now passes.
  315. * task decorators: Now preserve docstring as ``cls.__doc__``, (was previously
  316. copied to ``cls.run.__doc__``)
  317. * The ``testproj`` directory has been renamed to ``tests`` and we're now using
  318. ``nose`` + ``django-nose`` for test discovery, and ``unittest2`` for test
  319. cases.
  320. * New pip requirements files available in ``contrib/requirements``.
  321. * TaskPublisher: Declarations are now done once (per process).
  322. * Added ``Task.delivery_mode`` and the ``CELERY_DEFAULT_DELIVERY_MODE``
  323. setting.
  324. These can be used to mark messages non-persistent (i.e. so they are
  325. lost if the broker is restarted).
  326. * Now have our own ``ImproperlyConfigured`` exception, instead of using the
  327. Django one.
  328. * Improvements to the debian init scripts: Shows an error if the program is
  329. not executeable. Does not modify ``CELERYD`` when using django with
  330. virtualenv.
  331. 1.0.0 [2010-02-10 04:00 P.M CET]
  332. ================================
  333. BACKWARD INCOMPATIBLE CHANGES
  334. -----------------------------
  335. * Celery does not support detaching anymore, so you have to use the tools
  336. available on your platform, or something like supervisord to make
  337. celeryd/celerybeat/celerymon into background processes.
  338. We've had too many problems with celeryd daemonizing itself, so it was
  339. decided it has to be removed. Example startup scripts has been added to
  340. ``contrib/``:
  341. * Debian, Ubuntu, (start-stop-daemon)
  342. ``contrib/debian/init.d/celeryd``
  343. ``contrib/debian/init.d/celerybeat``
  344. * Mac OS X launchd
  345. ``contrib/mac/org.celeryq.celeryd.plist``
  346. ``contrib/mac/org.celeryq.celerybeat.plist``
  347. ``contrib/mac/org.celeryq.celerymon.plist``
  348. * Supervisord (http://supervisord.org)
  349. ``contrib/supervisord/supervisord.conf``
  350. In addition to ``--detach``, the following program arguments has been
  351. removed: ``--uid``, ``--gid``, ``--workdir``, ``--chroot``, ``--pidfile``,
  352. ``--umask``. All good daemonization tools should support equivalent
  353. functionality, so don't worry.
  354. Also the following configuration keys has been removed:
  355. ``CELERYD_PID_FILE``, ``CELERYBEAT_PID_FILE``, ``CELERYMON_PID_FILE``.
  356. * Default celeryd loglevel is now ``WARN``, to enable the previous log level
  357. start celeryd with ``--loglevel=INFO``.
  358. * Tasks are automatically registered.
  359. This means you no longer have to register your tasks manually.
  360. You don't have to change your old code right away, as it doesn't matter if
  361. a task is registered twice.
  362. If you don't want your task to be automatically registered you can set
  363. the ``abstract`` attribute
  364. .. code-block:: python
  365. class MyTask(Task):
  366. abstract = True
  367. By using ``abstract`` only tasks subclassing this task will be automatically
  368. registered (this works like the Django ORM).
  369. If you don't want subclasses to be registered either, you can set the
  370. ``autoregister`` attribute to ``False``.
  371. Incidentally, this change also fixes the problems with automatic name
  372. assignment and relative imports. So you also don't have to specify a task name
  373. anymore if you use relative imports.
  374. * You can no longer use regular functions as tasks.
  375. This change was added
  376. because it makes the internals a lot more clean and simple. However, you can
  377. now turn functions into tasks by using the ``@task`` decorator:
  378. .. code-block:: python
  379. from celery.decorators import task
  380. @task
  381. def add(x, y):
  382. return x + y
  383. See the User Guide: :doc:`userguide/tasks` for more information.
  384. * The periodic task system has been rewritten to a centralized solution.
  385. This means ``celeryd`` no longer schedules periodic tasks by default,
  386. but a new daemon has been introduced: ``celerybeat``.
  387. To launch the periodic task scheduler you have to run celerybeat::
  388. $ celerybeat
  389. Make sure this is running on one server only, if you run it twice, all
  390. periodic tasks will also be executed twice.
  391. If you only have one worker server you can embed it into celeryd like this::
  392. $ celeryd --beat # Embed celerybeat in celeryd.
  393. * The supervisor has been removed.
  394. This means the ``-S`` and ``--supervised`` options to ``celeryd`` is
  395. no longer supported. Please use something like http://supervisord.org
  396. instead.
  397. * ``TaskSet.join`` has been removed, use ``TaskSetResult.join`` instead.
  398. * The task status ``"DONE"`` has been renamed to `"SUCCESS"`.
  399. * ``AsyncResult.is_done`` has been removed, use ``AsyncResult.successful``
  400. instead.
  401. * The worker no longer stores errors if ``Task.ignore_result`` is set, to
  402. revert to the previous behaviour set
  403. ``CELERY_STORE_ERRORS_EVEN_IF_IGNORED`` to ``True``.
  404. * The staticstics functionality has been removed in favor of events,
  405. so the ``-S`` and ``--statistics`` switches has been removed.
  406. * The module ``celery.task.strategy`` has been removed.
  407. * ``celery.discovery`` has been removed, and it's ``autodiscover`` function is
  408. now in ``celery.loaders.djangoapp``. Reason: Internal API.
  409. * ``CELERY_LOADER`` now needs loader class name in addition to module name,
  410. E.g. where you previously had: ``"celery.loaders.default"``, you now need
  411. ``"celery.loaders.default.Loader"``, using the previous syntax will result
  412. in a DeprecationWarning.
  413. * Detecting the loader is now lazy, and so is not done when importing
  414. ``celery.loaders``.
  415. To make this happen ``celery.loaders.settings`` has
  416. been renamed to ``load_settings`` and is now a function returning the
  417. settings object. ``celery.loaders.current_loader`` is now also
  418. a function, returning the current loader.
  419. So::
  420. loader = current_loader
  421. needs to be changed to::
  422. loader = current_loader()
  423. DEPRECATIONS
  424. ------------
  425. * The following configuration variables has been renamed and will be
  426. deprecated in v1.2:
  427. * CELERYD_DAEMON_LOG_FORMAT -> CELERYD_LOG_FORMAT
  428. * CELERYD_DAEMON_LOG_LEVEL -> CELERYD_LOG_LEVEL
  429. * CELERY_AMQP_CONNECTION_TIMEOUT -> CELERY_BROKER_CONNECTION_TIMEOUT
  430. * CELERY_AMQP_CONNECTION_RETRY -> CELERY_BROKER_CONNECTION_RETRY
  431. * CELERY_AMQP_CONNECTION_MAX_RETRIES -> CELERY_BROKER_CONNECTION_MAX_RETRIES
  432. * SEND_CELERY_TASK_ERROR_EMAILS -> CELERY_SEND_TASK_ERROR_EMAILS
  433. * The public api names in celery.conf has also changed to a consistent naming
  434. scheme.
  435. * We now support consuming from an arbitrary number of queues.
  436. To do this we had to rename the configuration syntax. If you use any of
  437. the custom AMQP routing options (queue/exchange/routing_key, etc), you
  438. should read the new FAQ entry: http://bit.ly/aiWoH.
  439. The previous syntax is deprecated and scheduled for removal in v1.2.
  440. * ``TaskSet.run`` has been renamed to ``TaskSet.apply_async``.
  441. ``TaskSet.run`` has now been deprecated, and is scheduled for
  442. removal in v1.2.
  443. NEWS
  444. ----
  445. * Rate limiting support (per task type, or globally).
  446. * New periodic task system.
  447. * Automatic registration.
  448. * New cool task decorator syntax.
  449. * celeryd now sends events if enabled with the ``-E`` argument.
  450. Excellent for monitoring tools, one is already in the making
  451. (http://github.com/ask/celerymon).
  452. Current events include: worker-heartbeat,
  453. task-[received/succeeded/failed/retried],
  454. worker-online, worker-offline.
  455. * You can now delete (revoke) tasks that has already been applied.
  456. * You can now set the hostname celeryd identifies as using the ``--hostname``
  457. argument.
  458. * Cache backend now respects ``CELERY_TASK_RESULT_EXPIRES``.
  459. * Message format has been standardized and now uses ISO-8601 format
  460. for dates instead of datetime.
  461. * ``celeryd`` now responds to the ``HUP`` signal by restarting itself.
  462. * Periodic tasks are now scheduled on the clock.
  463. I.e. ``timedelta(hours=1)`` means every hour at :00 minutes, not every
  464. hour from the server starts. To revert to the previous behaviour you
  465. can set ``PeriodicTask.relative = True``.
  466. * Now supports passing execute options to a TaskSets list of args, e.g.:
  467. >>> ts = TaskSet(add, [([2, 2], {}, {"countdown": 1}),
  468. ... ([4, 4], {}, {"countdown": 2}),
  469. ... ([8, 8], {}, {"countdown": 3})])
  470. >>> ts.run()
  471. * Got a 3x performance gain by setting the prefetch count to four times the
  472. concurrency, (from an average task round-trip of 0.1s to 0.03s!).
  473. A new setting has been added: ``CELERYD_PREFETCH_MULTIPLIER``, which
  474. is set to ``4`` by default.
  475. * Improved support for webhook tasks.
  476. ``celery.task.rest`` is now deprecated, replaced with the new and shiny
  477. :mod:`celery.task.http`. With more reflective names, sensible interface,
  478. and it's possible to override the methods used to perform HTTP requests.
  479. * The results of tasksets are now cached by storing it in the result
  480. backend.
  481. CHANGES
  482. -------
  483. * Now depends on carrot >= 0.8.1
  484. * New dependencies: billiard, python-dateutil, django-picklefield
  485. * No longer depends on python-daemon
  486. * The ``uuid`` distribution is added as a dependency when running Python 2.4.
  487. * Now remembers the previously detected loader by keeping it in
  488. the ``CELERY_LOADER`` environment variable.
  489. This may help on windows where fork emulation is used.
  490. * ETA no longer sends datetime objects, but uses ISO 8601 date format in a
  491. string for better compatibility with other platforms.
  492. * No longer sends error mails for retried tasks.
  493. * Task can now override the backend used to store results.
  494. * Refactored the ExecuteWrapper, ``apply`` and ``CELERY_ALWAYS_EAGER`` now
  495. also executes the task callbacks and signals.
  496. * Now using a proper scheduler for the tasks with an ETA.
  497. This means waiting eta tasks are sorted by time, so we don't have
  498. to poll the whole list all the time.
  499. * Now also imports modules listed in CELERY_IMPORTS when running
  500. with django (as documented).
  501. * Loglevel for stdout/stderr changed from INFO to ERROR
  502. * ImportErrors are now properly propogated when autodiscovering tasks.
  503. * You can now use ``celery.messaging.establish_connection`` to establish a
  504. connection to the broker.
  505. * When running as a separate service the periodic task scheduler does some
  506. smart moves to not poll too regularly.
  507. If you need faster poll times you can lower the value
  508. of ``CELERYBEAT_MAX_LOOP_INTERVAL``.
  509. * You can now change periodic task intervals at runtime, by making
  510. ``run_every`` a property, or subclassing ``PeriodicTask.is_due``.
  511. * The worker now supports control commands enabled through the use of a
  512. broadcast queue, you can remotely revoke tasks or set the rate limit for
  513. a task type. See :mod:`celery.task.control`.
  514. * The services now sets informative process names (as shown in ``ps``
  515. listings) if the :mod:`setproctitle` module is installed.
  516. * :exc:`celery.exceptions.NotRegistered` now inherits from :exc:`KeyError`,
  517. and ``TaskRegistry.__getitem__``+``pop`` raises ``NotRegistered`` instead
  518. * You can set the loader via the ``CELERY_LOADER`` environment variable.
  519. * You can now set ``CELERY_IGNORE_RESULT`` to ignore task results by default
  520. (if enabled, tasks doesn't save results or errors to the backend used).
  521. * celeryd now correctly handles malformed messages by throwing away and
  522. acknowledging the message, instead of crashing.
  523. BUGS
  524. ----
  525. * Fixed a race condition that could happen while storing task results in the
  526. database.
  527. DOCUMENTATION
  528. -------------
  529. * Reference now split into two sections; API reference and internal module
  530. reference.
  531. 0.8.4 [2010-02-05 01:52 P.M CEST]
  532. ---------------------------------
  533. * Now emits a warning if the --detach argument is used.
  534. --detach should not be used anymore, as it has several not easily fixed
  535. bugs related to it. Instead, use something like start-stop-daemon,
  536. supervisord or launchd (os x).
  537. * Make sure logger class is process aware, even if running Python >= 2.6.
  538. * Error e-mails are not sent anymore when the task is retried.
  539. 0.8.3 [2009-12-22 09:43 A.M CEST]
  540. ---------------------------------
  541. * Fixed a possible race condition that could happen when storing/querying
  542. task results using the the database backend.
  543. * Now has console script entry points in the setup.py file, so tools like
  544. buildout will correctly install the programs celerybin and celeryinit.
  545. 0.8.2 [2009-11-20 03:40 P.M CEST]
  546. ---------------------------------
  547. * QOS Prefetch count was not applied properly, as it was set for every message
  548. received (which apparently behaves like, "receive one more"), instead of only
  549. set when our wanted value cahnged.
  550. 0.8.1 [2009-11-16 05:21 P.M CEST]
  551. =================================
  552. VERY IMPORTANT NOTE
  553. -------------------
  554. This release (with carrot 0.8.0) enables AMQP QoS (quality of service), which
  555. means the workers will only receive as many messages as it can handle at a
  556. time. As with any release, you should test this version upgrade on your
  557. development servers before rolling it out to production!
  558. IMPORTANT CHANGES
  559. -----------------
  560. * If you're using Python < 2.6 and you use the multiprocessing backport, then
  561. multiprocessing version 2.6.2.1 is required.
  562. * All AMQP_* settings has been renamed to BROKER_*, and in addition
  563. AMQP_SERVER has been renamed to BROKER_HOST, so before where you had::
  564. AMQP_SERVER = "localhost"
  565. AMQP_PORT = 5678
  566. AMQP_USER = "myuser"
  567. AMQP_PASSWORD = "mypassword"
  568. AMQP_VHOST = "celery"
  569. You need to change that to::
  570. BROKER_HOST = "localhost"
  571. BROKER_PORT = 5678
  572. BROKER_USER = "myuser"
  573. BROKER_PASSWORD = "mypassword"
  574. BROKER_VHOST = "celery"
  575. * Custom carrot backends now need to include the backend class name, so before
  576. where you had::
  577. CARROT_BACKEND = "mycustom.backend.module"
  578. you need to change it to::
  579. CARROT_BACKEND = "mycustom.backend.module.Backend"
  580. where ``Backend`` is the class name. This is probably ``"Backend"``, as
  581. that was the previously implied name.
  582. * New version requirement for carrot: 0.8.0
  583. CHANGES
  584. -------
  585. * Incorporated the multiprocessing backport patch that fixes the
  586. ``processName`` error.
  587. * Ignore the result of PeriodicTask's by default.
  588. * Added a Redis result store backend
  589. * Allow /etc/default/celeryd to define additional options for the celeryd init
  590. script.
  591. * MongoDB periodic tasks issue when using different time than UTC fixed.
  592. * Windows specific: Negate test for available os.fork (thanks miracle2k)
  593. * Now tried to handle broken PID files.
  594. * Added a Django test runner to contrib that sets CELERY_ALWAYS_EAGER = True for testing with the database backend
  595. * Added a CELERY_CACHE_BACKEND setting for using something other than the django-global cache backend.
  596. * Use custom implementation of functools.partial (curry) for Python 2.4 support
  597. (Probably still problems with running on 2.4, but it will eventually be
  598. supported)
  599. * Prepare exception to pickle when saving RETRY status for all backends.
  600. * SQLite no concurrency limit should only be effective if the db backend is used.
  601. 0.8.0 [2009-09-22 03:06 P.M CEST]
  602. =================================
  603. BACKWARD INCOMPATIBLE CHANGES
  604. -----------------------------
  605. * Add traceback to result value on failure.
  606. **NOTE** If you use the database backend you have to re-create the
  607. database table ``celery_taskmeta``.
  608. Contact the mailinglist or IRC channel listed in README for help
  609. doing this.
  610. * Database tables are now only created if the database backend is used,
  611. so if you change back to the database backend at some point,
  612. be sure to initialize tables (django: ``syncdb``, python: ``celeryinit``).
  613. (Note: This is only the case when using Django 1.1 or higher)
  614. * Now depends on ``carrot`` version 0.6.0.
  615. * Now depends on python-daemon 1.4.8
  616. IMPORTANT CHANGES
  617. -----------------
  618. * Celery can now be used in pure Python (outside of a Django project).
  619. This means celery is no longer Django specific.
  620. For more information see the FAQ entry
  621. `Can I use celery without Django?`_.
  622. .. _`Can I use celery without Django?`:
  623. http://ask.github.com/celery/faq.html#can-i-use-celery-without-django
  624. * Celery now supports task retries.
  625. See `Cookbook: Retrying Tasks`_ for more information.
  626. .. _`Cookbook: Retrying Tasks`:
  627. http://ask.github.com/celery/cookbook/task-retries.html
  628. * We now have an AMQP result store backend.
  629. It uses messages to publish task return value and status. And it's
  630. incredibly fast!
  631. See http://github.com/ask/celery/issues/closed#issue/6 for more info!
  632. * AMQP QoS (prefetch count) implemented:
  633. This to not receive more messages than we can handle.
  634. * Now redirects stdout/stderr to the celeryd logfile when detached
  635. * Now uses ``inspect.getargspec`` to only pass default arguments
  636. the task supports.
  637. * Add Task.on_success, .on_retry, .on_failure handlers
  638. See :meth:`celery.task.base.Task.on_success`,
  639. :meth:`celery.task.base.Task.on_retry`,
  640. :meth:`celery.task.base.Task.on_failure`,
  641. * ``celery.utils.gen_unique_id``: Workaround for
  642. http://bugs.python.org/issue4607
  643. * You can now customize what happens at worker start, at process init, etc
  644. by creating your own loaders. (see :mod:`celery.loaders.default`,
  645. :mod:`celery.loaders.djangoapp`, :mod:`celery.loaders`.)
  646. * Support for multiple AMQP exchanges and queues.
  647. This feature misses documentation and tests, so anyone interested
  648. is encouraged to improve this situation.
  649. * celeryd now survives a restart of the AMQP server!
  650. Automatically re-establish AMQP broker connection if it's lost.
  651. New settings:
  652. * AMQP_CONNECTION_RETRY
  653. Set to ``True`` to enable connection retries.
  654. * AMQP_CONNECTION_MAX_RETRIES.
  655. Maximum number of restarts before we give up. Default: ``100``.
  656. NEWS
  657. ----
  658. * Fix an incompatibility between python-daemon and multiprocessing,
  659. which resulted in the ``[Errno 10] No child processes`` problem when
  660. detaching.
  661. * Fixed a possible DjangoUnicodeDecodeError being raised when saving pickled
  662. data to Django's memcached cache backend.
  663. * Better Windows compatibility.
  664. * New version of the pickled field (taken from
  665. http://www.djangosnippets.org/snippets/513/)
  666. * New signals introduced: ``task_sent``, ``task_prerun`` and
  667. ``task_postrun``, see :mod:`celery.signals` for more information.
  668. * ``TaskSetResult.join`` caused ``TypeError`` when ``timeout=None``.
  669. Thanks Jerzy Kozera. Closes #31
  670. * ``views.apply`` should return ``HttpResponse`` instance.
  671. Thanks to Jerzy Kozera. Closes #32
  672. * ``PeriodicTask``: Save conversion of ``run_every`` from ``int``
  673. to ``timedelta`` to the class attribute instead of on the instance.
  674. * Exceptions has been moved to ``celery.exceptions``, but are still
  675. available in the previous module.
  676. * Try to rollback transaction and retry saving result if an error happens
  677. while setting task status with the database backend.
  678. * jail() refactored into :class:`celery.execute.ExecuteWrapper`.
  679. * ``views.apply`` now correctly sets mimetype to "application/json"
  680. * ``views.task_status`` now returns exception if status is RETRY
  681. * ``views.task_status`` now returns traceback if status is "FAILURE"
  682. or "RETRY"
  683. * Documented default task arguments.
  684. * Add a sensible __repr__ to ExceptionInfo for easier debugging
  685. * Fix documentation typo ``.. import map`` -> ``.. import dmap``.
  686. Thanks mikedizon
  687. 0.6.0 [2009-08-07 06:54 A.M CET]
  688. ================================
  689. IMPORTANT CHANGES
  690. -----------------
  691. * Fixed a bug where tasks raising unpickleable exceptions crashed pool
  692. workers. So if you've had pool workers mysteriously dissapearing, or
  693. problems with celeryd stopping working, this has been fixed in this
  694. version.
  695. * Fixed a race condition with periodic tasks.
  696. * The task pool is now supervised, so if a pool worker crashes,
  697. goes away or stops responding, it is automatically replaced with
  698. a new one.
  699. * Task.name is now automatically generated out of class module+name, e.g.
  700. ``"djangotwitter.tasks.UpdateStatusesTask"``. Very convenient. No idea why
  701. we didn't do this before. Some documentation is updated to not manually
  702. specify a task name.
  703. NEWS
  704. ----
  705. * Tested with Django 1.1
  706. * New Tutorial: Creating a click counter using carrot and celery
  707. * Database entries for periodic tasks are now created at ``celeryd``
  708. startup instead of for each check (which has been a forgotten TODO/XXX
  709. in the code for a long time)
  710. * New settings variable: ``CELERY_TASK_RESULT_EXPIRES``
  711. Time (in seconds, or a `datetime.timedelta` object) for when after
  712. stored task results are deleted. For the moment this only works for the
  713. database backend.
  714. * ``celeryd`` now emits a debug log message for which periodic tasks
  715. has been launched.
  716. * The periodic task table is now locked for reading while getting
  717. periodic task status. (MySQL only so far, seeking patches for other
  718. engines)
  719. * A lot more debugging information is now available by turning on the
  720. ``DEBUG`` loglevel (``--loglevel=DEBUG``).
  721. * Functions/methods with a timeout argument now works correctly.
  722. * New: ``celery.strategy.even_time_distribution``:
  723. With an iterator yielding task args, kwargs tuples, evenly distribute
  724. the processing of its tasks throughout the time window available.
  725. * Log message ``Unknown task ignored...`` now has loglevel ``ERROR``
  726. * Log message ``"Got task from broker"`` is now emitted for all tasks, even if
  727. the task has an ETA (estimated time of arrival). Also the message now
  728. includes the ETA for the task (if any).
  729. * Acknowledgement now happens in the pool callback. Can't do ack in the job
  730. target, as it's not pickleable (can't share AMQP connection, etc)).
  731. * Added note about .delay hanging in README
  732. * Tests now passing in Django 1.1
  733. * Fixed discovery to make sure app is in INSTALLED_APPS
  734. * Previously overrided pool behaviour (process reap, wait until pool worker
  735. available, etc.) is now handled by ``multiprocessing.Pool`` itself.
  736. * Convert statistics data to unicode for use as kwargs. Thanks Lucy!
  737. 0.4.1 [2009-07-02 01:42 P.M CET]
  738. ================================
  739. * Fixed a bug with parsing the message options (``mandatory``,
  740. ``routing_key``, ``priority``, ``immediate``)
  741. 0.4.0 [2009-07-01 07:29 P.M CET]
  742. ================================
  743. * Adds eager execution. ``celery.execute.apply``|``Task.apply`` executes the
  744. function blocking until the task is done, for API compatiblity it
  745. returns an ``celery.result.EagerResult`` instance. You can configure
  746. celery to always run tasks locally by setting the
  747. ``CELERY_ALWAYS_EAGER`` setting to ``True``.
  748. * Now depends on ``anyjson``.
  749. * 99% coverage using python ``coverage`` 3.0.
  750. 0.3.20 [2009-06-25 08:42 P.M CET]
  751. =================================
  752. * New arguments to ``apply_async`` (the advanced version of
  753. ``delay_task``), ``countdown`` and ``eta``;
  754. >>> # Run 10 seconds into the future.
  755. >>> res = apply_async(MyTask, countdown=10);
  756. >>> # Run 1 day from now
  757. >>> res = apply_async(MyTask, eta=datetime.now() +
  758. ... timedelta(days=1)
  759. * Now unlinks the pidfile if it's stale.
  760. * Lots of more tests.
  761. * Now compatible with carrot >= 0.5.0.
  762. * **IMPORTANT** The ``subtask_ids`` attribute on the ``TaskSetResult``
  763. instance has been removed. To get this information instead use:
  764. >>> subtask_ids = [subtask.task_id for subtask in ts_res.subtasks]
  765. * ``Taskset.run()`` now respects extra message options from the task class.
  766. * Task: Add attribute ``ignore_result``: Don't store the status and
  767. return value. This means you can't use the
  768. ``celery.result.AsyncResult`` to check if the task is
  769. done, or get its return value. Only use if you need the performance
  770. and is able live without these features. Any exceptions raised will
  771. store the return value/status as usual.
  772. * Task: Add attribute ``disable_error_emails`` to disable sending error
  773. emails for that task.
  774. * Should now work on Windows (although running in the background won't
  775. work, so using the ``--detach`` argument results in an exception
  776. being raised.)
  777. * Added support for statistics for profiling and monitoring.
  778. To start sending statistics start ``celeryd`` with the
  779. ``--statistics`` option. Then after a while you can dump the results
  780. by running ``python manage.py celerystats``. See
  781. ``celery.monitoring`` for more information.
  782. * The celery daemon can now be supervised (i.e it is automatically
  783. restarted if it crashes). To use this start celeryd with the
  784. ``--supervised`` option (or alternatively ``-S``).
  785. * views.apply: View applying a task. Example::
  786. http://e.com/celery/apply/task_name/arg1/arg2//?kwarg1=a&kwarg2=b
  787. **NOTE** Use with caution, preferably not make this publicly
  788. accessible without ensuring your code is safe!
  789. * Refactored ``celery.task``. It's now split into three modules:
  790. * celery.task
  791. Contains ``apply_async``, ``delay_task``, ``discard_all``, and task
  792. shortcuts, plus imports objects from ``celery.task.base`` and
  793. ``celery.task.builtins``
  794. * celery.task.base
  795. Contains task base classes: ``Task``, ``PeriodicTask``,
  796. ``TaskSet``, ``AsynchronousMapTask``, ``ExecuteRemoteTask``.
  797. * celery.task.builtins
  798. Built-in tasks: ``PingTask``, ``DeleteExpiredTaskMetaTask``.
  799. 0.3.7 [2008-06-16 11:41 P.M CET]
  800. --------------------------------
  801. * **IMPORTANT** Now uses AMQP's ``basic.consume`` instead of
  802. ``basic.get``. This means we're no longer polling the broker for
  803. new messages.
  804. * **IMPORTANT** Default concurrency limit is now set to the number of CPUs
  805. available on the system.
  806. * **IMPORTANT** ``tasks.register``: Renamed ``task_name`` argument to
  807. ``name``, so
  808. >>> tasks.register(func, task_name="mytask")
  809. has to be replaced with:
  810. >>> tasks.register(func, name="mytask")
  811. * The daemon now correctly runs if the pidlock is stale.
  812. * Now compatible with carrot 0.4.5
  813. * Default AMQP connnection timeout is now 4 seconds.
  814. * ``AsyncResult.read()`` was always returning ``True``.
  815. * Only use README as long_description if the file exists so easy_install
  816. doesn't break.
  817. * ``celery.view``: JSON responses now properly set its mime-type.
  818. * ``apply_async`` now has a ``connection`` keyword argument so you
  819. can re-use the same AMQP connection if you want to execute
  820. more than one task.
  821. * Handle failures in task_status view such that it won't throw 500s.
  822. * Fixed typo ``AMQP_SERVER`` in documentation to ``AMQP_HOST``.
  823. * Worker exception e-mails sent to admins now works properly.
  824. * No longer depends on ``django``, so installing ``celery`` won't affect
  825. the preferred Django version installed.
  826. * Now works with PostgreSQL (psycopg2) again by registering the
  827. ``PickledObject`` field.
  828. * ``celeryd``: Added ``--detach`` option as an alias to ``--daemon``, and
  829. it's the term used in the documentation from now on.
  830. * Make sure the pool and periodic task worker thread is terminated
  831. properly at exit. (So ``Ctrl-C`` works again).
  832. * Now depends on ``python-daemon``.
  833. * Removed dependency to ``simplejson``
  834. * Cache Backend: Re-establishes connection for every task process
  835. if the Django cache backend is memcached/libmemcached.
  836. * Tyrant Backend: Now re-establishes the connection for every task
  837. executed.
  838. 0.3.3 [2009-06-08 01:07 P.M CET]
  839. ================================
  840. * The ``PeriodicWorkController`` now sleeps for 1 second between checking
  841. for periodic tasks to execute.
  842. 0.3.2 [2009-06-08 01:07 P.M CET]
  843. ================================
  844. * celeryd: Added option ``--discard``: Discard (delete!) all waiting
  845. messages in the queue.
  846. * celeryd: The ``--wakeup-after`` option was not handled as a float.
  847. 0.3.1 [2009-06-08 01:07 P.M CET]
  848. ================================
  849. * The `PeriodicTask`` worker is now running in its own thread instead
  850. of blocking the ``TaskController`` loop.
  851. * Default ``QUEUE_WAKEUP_AFTER`` has been lowered to ``0.1`` (was ``0.3``)
  852. 0.3.0 [2009-06-08 12:41 P.M CET]
  853. ================================
  854. **NOTE** This is a development version, for the stable release, please
  855. see versions 0.2.x.
  856. **VERY IMPORTANT:** Pickle is now the encoder used for serializing task
  857. arguments, so be sure to flush your task queue before you upgrade.
  858. * **IMPORTANT** TaskSet.run() now returns a celery.result.TaskSetResult
  859. instance, which lets you inspect the status and return values of a
  860. taskset as it was a single entity.
  861. * **IMPORTANT** Celery now depends on carrot >= 0.4.1.
  862. * The celery daemon now sends task errors to the registered admin e-mails.
  863. To turn off this feature, set ``SEND_CELERY_TASK_ERROR_EMAILS`` to
  864. ``False`` in your ``settings.py``. Thanks to Grégoire Cachet.
  865. * You can now run the celery daemon by using ``manage.py``::
  866. $ python manage.py celeryd
  867. Thanks to Grégoire Cachet.
  868. * Added support for message priorities, topic exchanges, custom routing
  869. keys for tasks. This means we have introduced
  870. ``celery.task.apply_async``, a new way of executing tasks.
  871. You can use ``celery.task.delay`` and ``celery.Task.delay`` like usual, but
  872. if you want greater control over the message sent, you want
  873. ``celery.task.apply_async`` and ``celery.Task.apply_async``.
  874. This also means the AMQP configuration has changed. Some settings has
  875. been renamed, while others are new::
  876. CELERY_AMQP_EXCHANGE
  877. CELERY_AMQP_PUBLISHER_ROUTING_KEY
  878. CELERY_AMQP_CONSUMER_ROUTING_KEY
  879. CELERY_AMQP_CONSUMER_QUEUE
  880. CELERY_AMQP_EXCHANGE_TYPE
  881. See the entry `Can I send some tasks to only some servers?`_ in the
  882. `FAQ`_ for more information.
  883. .. _`Can I send some tasks to only some servers?`:
  884. http://bit.ly/celery_AMQP_routing
  885. .. _`FAQ`: http://ask.github.com/celery/faq.html
  886. * Task errors are now logged using loglevel ``ERROR`` instead of ``INFO``,
  887. and backtraces are dumped. Thanks to Grégoire Cachet.
  888. * Make every new worker process re-establish it's Django DB connection,
  889. this solving the "MySQL connection died?" exceptions.
  890. Thanks to Vitaly Babiy and Jirka Vejrazka.
  891. * **IMOPORTANT** Now using pickle to encode task arguments. This means you
  892. now can pass complex python objects to tasks as arguments.
  893. * Removed dependency to ``yadayada``.
  894. * Added a FAQ, see ``docs/faq.rst``.
  895. * Now converts any unicode keys in task ``kwargs`` to regular strings.
  896. Thanks Vitaly Babiy.
  897. * Renamed the ``TaskDaemon`` to ``WorkController``.
  898. * ``celery.datastructures.TaskProcessQueue`` is now renamed to
  899. ``celery.pool.TaskPool``.
  900. * The pool algorithm has been refactored for greater performance and
  901. stability.
  902. 0.2.0 [2009-05-20 05:14 P.M CET]
  903. ================================
  904. * Final release of 0.2.0
  905. * Compatible with carrot version 0.4.0.
  906. * Fixes some syntax errors related to fetching results
  907. from the database backend.
  908. 0.2.0-pre3 [2009-05-20 05:14 P.M CET]
  909. =====================================
  910. * *Internal release*. Improved handling of unpickled exceptions,
  911. ``get_result`` now tries to recreate something looking like the
  912. original exception.
  913. 0.2.0-pre2 [2009-05-20 01:56 P.M CET]
  914. =====================================
  915. * Now handles unpickleable exceptions (like the dynimically generated
  916. subclasses of ``django.core.exception.MultipleObjectsReturned``).
  917. 0.2.0-pre1 [2009-05-20 12:33 P.M CET]
  918. =====================================
  919. * It's getting quite stable, with a lot of new features, so bump
  920. version to 0.2. This is a pre-release.
  921. * ``celery.task.mark_as_read()`` and ``celery.task.mark_as_failure()`` has
  922. been removed. Use ``celery.backends.default_backend.mark_as_read()``,
  923. and ``celery.backends.default_backend.mark_as_failure()`` instead.
  924. 0.1.15 [2009-05-19 04:13 P.M CET]
  925. =================================
  926. * The celery daemon was leaking AMQP connections, this should be fixed,
  927. if you have any problems with too many files open (like ``emfile``
  928. errors in ``rabbit.log``, please contact us!
  929. 0.1.14 [2009-05-19 01:08 P.M CET]
  930. =================================
  931. * Fixed a syntax error in the ``TaskSet`` class. (No such variable
  932. ``TimeOutError``).
  933. 0.1.13 [2009-05-19 12:36 P.M CET]
  934. =================================
  935. * Forgot to add ``yadayada`` to install requirements.
  936. * Now deletes all expired task results, not just those marked as done.
  937. * Able to load the Tokyo Tyrant backend class without django
  938. configuration, can specify tyrant settings directly in the class
  939. constructor.
  940. * Improved API documentation
  941. * Now using the Sphinx documentation system, you can build
  942. the html documentation by doing ::
  943. $ cd docs
  944. $ make html
  945. and the result will be in ``docs/.build/html``.
  946. 0.1.12 [2009-05-18 04:38 P.M CET]
  947. =================================
  948. * ``delay_task()`` etc. now returns ``celery.task.AsyncResult`` object,
  949. which lets you check the result and any failure that might have
  950. happened. It kind of works like the ``multiprocessing.AsyncResult``
  951. class returned by ``multiprocessing.Pool.map_async``.
  952. * Added dmap() and dmap_async(). This works like the
  953. ``multiprocessing.Pool`` versions except they are tasks
  954. distributed to the celery server. Example:
  955. >>> from celery.task import dmap
  956. >>> import operator
  957. >>> dmap(operator.add, [[2, 2], [4, 4], [8, 8]])
  958. >>> [4, 8, 16]
  959. >>> from celery.task import dmap_async
  960. >>> import operator
  961. >>> result = dmap_async(operator.add, [[2, 2], [4, 4], [8, 8]])
  962. >>> result.ready()
  963. False
  964. >>> time.sleep(1)
  965. >>> result.ready()
  966. True
  967. >>> result.result
  968. [4, 8, 16]
  969. * Refactored the task metadata cache and database backends, and added
  970. a new backend for Tokyo Tyrant. You can set the backend in your django
  971. settings file. e.g::
  972. CELERY_RESULT_BACKEND = "database"; # Uses the database
  973. CELERY_RESULT_BACKEND = "cache"; # Uses the django cache framework
  974. CELERY_RESULT_BACKEND = "tyrant"; # Uses Tokyo Tyrant
  975. TT_HOST = "localhost"; # Hostname for the Tokyo Tyrant server.
  976. TT_PORT = 6657; # Port of the Tokyo Tyrant server.
  977. 0.1.11 [2009-05-12 02:08 P.M CET]
  978. =================================
  979. * The logging system was leaking file descriptors, resulting in
  980. servers stopping with the EMFILES (too many open files) error. (fixed)
  981. 0.1.10 [2009-05-11 12:46 P.M CET]
  982. =================================
  983. * Tasks now supports both positional arguments and keyword arguments.
  984. * Requires carrot 0.3.8.
  985. * The daemon now tries to reconnect if the connection is lost.
  986. 0.1.8 [2009-05-07 12:27 P.M CET]
  987. ================================
  988. * Better test coverage
  989. * More documentation
  990. * celeryd doesn't emit ``Queue is empty`` message if
  991. ``settings.CELERYD_EMPTY_MSG_EMIT_EVERY`` is 0.
  992. 0.1.7 [2009-04-30 1:50 P.M CET]
  993. ===============================
  994. * Added some unittests
  995. * Can now use the database for task metadata (like if the task has
  996. been executed or not). Set ``settings.CELERY_TASK_META``
  997. * Can now run ``python setup.py test`` to run the unittests from
  998. within the ``tests`` project.
  999. * Can set the AMQP exchange/routing key/queue using
  1000. ``settings.CELERY_AMQP_EXCHANGE``, ``settings.CELERY_AMQP_ROUTING_KEY``,
  1001. and ``settings.CELERY_AMQP_CONSUMER_QUEUE``.
  1002. 0.1.6 [2009-04-28 2:13 P.M CET]
  1003. ===============================
  1004. * Introducing ``TaskSet``. A set of subtasks is executed and you can
  1005. find out how many, or if all them, are done (excellent for progress
  1006. bars and such)
  1007. * Now catches all exceptions when running ``Task.__call__``, so the
  1008. daemon doesn't die. This does't happen for pure functions yet, only
  1009. ``Task`` classes.
  1010. * ``autodiscover()`` now works with zipped eggs.
  1011. * celeryd: Now adds curernt working directory to ``sys.path`` for
  1012. convenience.
  1013. * The ``run_every`` attribute of ``PeriodicTask`` classes can now be a
  1014. ``datetime.timedelta()`` object.
  1015. * celeryd: You can now set the ``DJANGO_PROJECT_DIR`` variable
  1016. for ``celeryd`` and it will add that to ``sys.path`` for easy launching.
  1017. * Can now check if a task has been executed or not via HTTP.
  1018. * You can do this by including the celery ``urls.py`` into your project,
  1019. >>> url(r'^celery/$', include("celery.urls"))
  1020. then visiting the following url,::
  1021. http://mysite/celery/$task_id/done/
  1022. this will return a JSON dictionary like e.g:
  1023. >>> {"task": {"id": $task_id, "executed": true}}
  1024. * ``delay_task`` now returns string id, not ``uuid.UUID`` instance.
  1025. * Now has ``PeriodicTasks``, to have ``cron`` like functionality.
  1026. * Project changed name from ``crunchy`` to ``celery``. The details of
  1027. the name change request is in ``docs/name_change_request.txt``.
  1028. 0.1.0 [2009-04-24 11:28 A.M CET]
  1029. ================================
  1030. * Initial release