configuration.rst 41 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663
  1. .' _configuration:
  2. ============================
  3. Configuration and defaults
  4. ============================
  5. This document describes the configuration options available.
  6. If you're using the default loader, you must create the :file:`celeryconfig.py`
  7. module and make sure it is available on the Python path.
  8. .. contents::
  9. :local:
  10. :depth: 2
  11. .. _conf-example:
  12. Example configuration file
  13. ==========================
  14. This is an example configuration file to get you started.
  15. It should contain all you need to run a basic Celery set-up.
  16. .. code-block:: python
  17. ## Broker settings.
  18. BROKER_URL = "amqp://guest:guest@localhost:5672//"
  19. # List of modules to import when celery starts.
  20. CELERY_IMPORTS = ("myapp.tasks", )
  21. ## Using the database to store task state and results.
  22. CELERY_RESULT_BACKEND = "database"
  23. CELERY_RESULT_DBURI = "sqlite:///mydatabase.db"
  24. CELERY_ANNOTATIONS = {"tasks.add": {"rate_limit": "10/s"}}
  25. Configuration Directives
  26. ========================
  27. .. _conf-datetime:
  28. Time and date settings
  29. ----------------------
  30. .. setting:: CELERY_ENABLE_UTC
  31. CELERY_ENABLE_UTC
  32. ~~~~~~~~~~~~~~~~~
  33. .. versionadded:: 2.5
  34. If enabled dates and times in messages will be converted to use
  35. the UTC timezone.
  36. Note that workers running Celery versions below 2.5 will assume a local
  37. timezone for all messages, so only enable if all workers have been
  38. upgraded.
  39. Enabled by default since version 3.0.
  40. .. setting:: CELERY_TIMEZONE
  41. CELERY_TIMEZONE
  42. ---------------
  43. Configure Celery to use a custom time zone.
  44. The timezone value can be any time zone supported by the :mod:`pytz`
  45. library. :mod:`pytz` must be installed for the selected zone
  46. to be used.
  47. If not set then the systems default local time zone is used.
  48. .. warning::
  49. Celery requires the :mod:`pytz` library to be installed,
  50. when using custom time zones (other than UTC). You can
  51. install it using :program:`pip` or :program:`easy_install`:
  52. .. code-block:: bash
  53. $ pip install pytz
  54. Pytz is a library that defines the timzones of the world,
  55. it changes quite frequently so it is not included in the Python Standard
  56. Library.
  57. .. _conf-tasks:
  58. Task settings
  59. -------------
  60. .. setting:: CELERY_ANNOTATIONS
  61. CELERY_ANNOTATIONS
  62. ~~~~~~~~~~~~~~~~~~
  63. This setting can be used to rewrite any task attribute from the
  64. configuration. The setting can be a dict, or a list of annotation
  65. objects that filter for tasks and return a map of attributes
  66. to change.
  67. This will change the ``rate_limit`` attribute for the ``tasks.add``
  68. task:
  69. .. code-block:: python
  70. CELERY_ANNOTATIONS = {"tasks.add": {"rate_limit": "10/s"}}
  71. or change the same for all tasks:
  72. .. code-block:: python
  73. CELERY_ANNOTATIONS = {"*": {"rate_limit": "10/s"}}
  74. You can change methods too, for example the ``on_failure`` handler:
  75. .. code-block:: python
  76. def my_on_failure(self, exc, task_id, args, kwargs, einfo):
  77. print("Oh no! Task failed: %r" % (exc, ))
  78. CELERY_ANNOTATIONS = {"*": {"on_failure": my_on_failure}}
  79. If you need more flexibility then you can use objects
  80. instead of a dict to choose which tasks to annotate:
  81. .. code-block:: python
  82. class MyAnnotate(object):
  83. def annotate(self, task):
  84. if task.name.startswith("tasks."):
  85. return {"rate_limit": "10/s"}
  86. CELERY_ANNOTATIONS = (MyAnnotate(), {...})
  87. .. _conf-concurrency:
  88. Concurrency settings
  89. --------------------
  90. .. setting:: CELERYD_CONCURRENCY
  91. CELERYD_CONCURRENCY
  92. ~~~~~~~~~~~~~~~~~~~
  93. The number of concurrent worker processes/threads/green threads executing
  94. tasks.
  95. If you're doing mostly I/O you can have more processes,
  96. but if mostly CPU-bound, try to keep it close to the
  97. number of CPUs on your machine. If not set, the number of CPUs/cores
  98. on the host will be used.
  99. Defaults to the number of available CPUs.
  100. .. setting:: CELERYD_PREFETCH_MULTIPLIER
  101. CELERYD_PREFETCH_MULTIPLIER
  102. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  103. How many messages to prefetch at a time multiplied by the number of
  104. concurrent processes. The default is 4 (four messages for each
  105. process). The default setting is usually a good choice, however -- if you
  106. have very long running tasks waiting in the queue and you have to start the
  107. workers, note that the first worker to start will receive four times the
  108. number of messages initially. Thus the tasks may not be fairly distributed
  109. to the workers.
  110. .. _conf-result-backend:
  111. Task result backend settings
  112. ----------------------------
  113. .. setting:: CELERY_RESULT_BACKEND
  114. CELERY_RESULT_BACKEND
  115. ~~~~~~~~~~~~~~~~~~~~~
  116. :Deprecated aliases: ``CELERY_BACKEND``
  117. The backend used to store task results (tombstones).
  118. Disabled by default.
  119. Can be one of the following:
  120. * database
  121. Use a relational database supported by `SQLAlchemy`_.
  122. See :ref:`conf-database-result-backend`.
  123. * cache
  124. Use `memcached`_ to store the results.
  125. See :ref:`conf-cache-result-backend`.
  126. * mongodb
  127. Use `MongoDB`_ to store the results.
  128. See :ref:`conf-mongodb-result-backend`.
  129. * redis
  130. Use `Redis`_ to store the results.
  131. See :ref:`conf-redis-result-backend`.
  132. * amqp
  133. Send results back as AMQP messages
  134. See :ref:`conf-amqp-result-backend`.
  135. * cassandra
  136. Use `Cassandra`_ to store the results.
  137. See :ref:`conf-cassandra-result-backend`.
  138. .. warning:
  139. While the AMQP result backend is very efficient, you must make sure
  140. you only receive the same result once. See :doc:`userguide/calling`).
  141. .. _`SQLAlchemy`: http://sqlalchemy.org
  142. .. _`memcached`: http://memcached.org
  143. .. _`MongoDB`: http://mongodb.org
  144. .. _`Redis`: http://code.google.com/p/redis/
  145. .. _`Cassandra`: http://cassandra.apache.org/
  146. .. setting:: CELERY_RESULT_SERIALIZER
  147. CELERY_RESULT_SERIALIZER
  148. ~~~~~~~~~~~~~~~~~~~~~~~~
  149. Result serialization format. Default is `"pickle"`. See
  150. :ref:`calling-serializers` for information about supported
  151. serialization formats.
  152. .. _conf-database-result-backend:
  153. Database backend settings
  154. -------------------------
  155. .. setting:: CELERY_RESULT_DBURI
  156. CELERY_RESULT_DBURI
  157. ~~~~~~~~~~~~~~~~~~~
  158. Please see `Supported Databases`_ for a table of supported databases.
  159. To use this backend you need to configure it with an
  160. `Connection String`_, some examples include:
  161. .. code-block:: python
  162. # sqlite (filename)
  163. CELERY_RESULT_DBURI = "sqlite:///celerydb.sqlite"
  164. # mysql
  165. CELERY_RESULT_DBURI = "mysql://scott:tiger@localhost/foo"
  166. # postgresql
  167. CELERY_RESULT_DBURI = "postgresql://scott:tiger@localhost/mydatabase"
  168. # oracle
  169. CELERY_RESULT_DBURI = "oracle://scott:tiger@127.0.0.1:1521/sidname"
  170. See `Connection String`_ for more information about connection
  171. strings.
  172. .. setting:: CELERY_RESULT_ENGINE_OPTIONS
  173. CELERY_RESULT_ENGINE_OPTIONS
  174. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  175. To specify additional SQLAlchemy database engine options you can use
  176. the :setting:`CELERY_RESULT_ENGINE_OPTIONS` setting::
  177. # echo enables verbose logging from SQLAlchemy.
  178. CELERY_RESULT_ENGINE_OPTIONS = {"echo": True}
  179. .. setting:: CELERY_RESULT_DB_SHORT_LIVED_SESSIONS
  180. CELERY_RESULT_DB_SHORT_LIVED_SESSIONS = True
  181. Short lived sessions are disabled by default. If enabled they can drastically reduce
  182. performance, especially on systems processing lots of tasks. This option is useful
  183. on low-traffic workers that experience errors as a result of cached database connections
  184. going stale through inactivity. For example, intermittent errors like
  185. `(OperationalError) (2006, 'MySQL server has gone away')` can be fixed by enabling
  186. short lived sessions. This option only affects the database backend.
  187. .. _`Supported Databases`:
  188. http://www.sqlalchemy.org/docs/core/engines.html#supported-databases
  189. .. _`Connection String`:
  190. http://www.sqlalchemy.org/docs/core/engines.html#database-urls
  191. Example configuration
  192. ~~~~~~~~~~~~~~~~~~~~~
  193. .. code-block:: python
  194. CELERY_RESULT_BACKEND = "database"
  195. CELERY_RESULT_DBURI = "mysql://user:password@host/dbname"
  196. .. _conf-amqp-result-backend:
  197. AMQP backend settings
  198. ---------------------
  199. .. note::
  200. The AMQP backend requires RabbitMQ 1.1.0 or higher to automatically
  201. expire results. If you are running an older version of RabbitmQ
  202. you should disable result expiration like this:
  203. CELERY_TASK_RESULT_EXPIRES = None
  204. .. setting:: CELERY_RESULT_EXCHANGE
  205. CELERY_RESULT_EXCHANGE
  206. ~~~~~~~~~~~~~~~~~~~~~~
  207. Name of the exchange to publish results in. Default is `"celeryresults"`.
  208. .. setting:: CELERY_RESULT_EXCHANGE_TYPE
  209. CELERY_RESULT_EXCHANGE_TYPE
  210. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  211. The exchange type of the result exchange. Default is to use a `direct`
  212. exchange.
  213. .. setting:: CELERY_RESULT_PERSISTENT
  214. CELERY_RESULT_PERSISTENT
  215. ~~~~~~~~~~~~~~~~~~~~~~~~
  216. If set to :const:`True`, result messages will be persistent. This means the
  217. messages will not be lost after a broker restart. The default is for the
  218. results to be transient.
  219. Example configuration
  220. ~~~~~~~~~~~~~~~~~~~~~
  221. .. code-block:: python
  222. CELERY_RESULT_BACKEND = "amqp"
  223. CELERY_TASK_RESULT_EXPIRES = 18000 # 5 hours.
  224. .. _conf-cache-result-backend:
  225. Cache backend settings
  226. ----------------------
  227. .. note::
  228. The cache backend supports the `pylibmc`_ and `python-memcached`
  229. libraries. The latter is used only if `pylibmc`_ is not installed.
  230. .. setting:: CELERY_CACHE_BACKEND
  231. CELERY_CACHE_BACKEND
  232. ~~~~~~~~~~~~~~~~~~~~
  233. Using a single memcached server:
  234. .. code-block:: python
  235. CELERY_CACHE_BACKEND = 'memcached://127.0.0.1:11211/'
  236. Using multiple memcached servers:
  237. .. code-block:: python
  238. CELERY_RESULT_BACKEND = "cache"
  239. CELERY_CACHE_BACKEND = 'memcached://172.19.26.240:11211;172.19.26.242:11211/'
  240. .. setting:: CELERY_CACHE_BACKEND_OPTIONS
  241. The "memory" backend stores the cache in memory only:
  242. CELERY_CACHE_BACKEND = "memory"
  243. CELERY_CACHE_BACKEND_OPTIONS
  244. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  245. You can set pylibmc options using the :setting:`CELERY_CACHE_BACKEND_OPTIONS`
  246. setting:
  247. .. code-block:: python
  248. CELERY_CACHE_BACKEND_OPTIONS = {"binary": True,
  249. "behaviors": {"tcp_nodelay": True}}
  250. .. _`pylibmc`: http://sendapatch.se/projects/pylibmc/
  251. .. _conf-redis-result-backend:
  252. Redis backend settings
  253. ----------------------
  254. Configuring the backend URL
  255. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  256. .. note::
  257. The Redis backend requires the :mod:`redis` library:
  258. http://pypi.python.org/pypi/redis/
  259. To install the redis package use `pip` or `easy_install`:
  260. .. code-block:: bash
  261. $ pip install redis
  262. This backend requires the :setting:`CELERY_RESULT_BACKEND`
  263. setting to be set to a Redis URL::
  264. CELERY_RESULT_BACKEND = "redis://:password@host:port/db"
  265. For example::
  266. CELERY_RESULT_BACKEND = "redis://localhost/0"
  267. which is the same as::
  268. CELERY_RESULT_BACKEND = "redis://"
  269. The fields of the URL is defined as folows:
  270. - *host*
  271. Host name or IP address of the Redis server. e.g. `"localhost"`.
  272. - *port*
  273. Port to the Redis server. Default is 6379.
  274. - *db*
  275. Database number to use. Default is 0.
  276. The db can include an optional leading slash.
  277. - *password*
  278. Password used to connect to the database.
  279. .. setting:: CELERY_REDIS_MAX_CONNECTIONS
  280. CELERY_REDIS_MAX_CONNECTIONS
  281. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  282. Maximum number of connections available in the Redis connection
  283. pool used for sending and retrieving results.
  284. .. _conf-mongodb-result-backend:
  285. MongoDB backend settings
  286. ------------------------
  287. .. note::
  288. The MongoDB backend requires the :mod:`pymongo` library:
  289. http://github.com/mongodb/mongo-python-driver/tree/master
  290. .. setting:: CELERY_MONGODB_BACKEND_SETTINGS
  291. CELERY_MONGODB_BACKEND_SETTINGS
  292. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  293. This is a dict supporting the following keys:
  294. * host
  295. Host name of the MongoDB server. Defaults to "localhost".
  296. * port
  297. The port the MongoDB server is listening to. Defaults to 27017.
  298. * user
  299. User name to authenticate to the MongoDB server as (optional).
  300. * password
  301. Password to authenticate to the MongoDB server (optional).
  302. * database
  303. The database name to connect to. Defaults to "celery".
  304. * taskmeta_collection
  305. The collection name to store task meta data.
  306. Defaults to "celery_taskmeta".
  307. * max_pool_size
  308. Passed as max_pool_size to PyMongo's Connection or MongoClient
  309. constructor. It is the maximum number of TCP connections to keep
  310. open to MongoDB at a given time. If there are more open connections
  311. than max_pool_size, sockets will be closed when they are released.
  312. Defaults to 10.
  313. * options
  314. Additional keyword arguments to pass to the mongodb connection
  315. constructor. See the :mod:`pymongo` docs to see a list of arguments
  316. supported.
  317. .. _example-mongodb-result-config:
  318. Example configuration
  319. ~~~~~~~~~~~~~~~~~~~~~
  320. .. code-block:: python
  321. CELERY_RESULT_BACKEND = "mongodb"
  322. CELERY_MONGODB_BACKEND_SETTINGS = {
  323. "host": "192.168.1.100",
  324. "port": 30000,
  325. "database": "mydb",
  326. "taskmeta_collection": "my_taskmeta_collection",
  327. }
  328. .. _conf-cassandra-result-backend:
  329. Cassandra backend settings
  330. --------------------------
  331. .. note::
  332. The Cassandra backend requires the :mod:`pycassa` library:
  333. http://pypi.python.org/pypi/pycassa/
  334. To install the pycassa package use `pip` or `easy_install`:
  335. .. code-block:: bash
  336. $ pip install pycassa
  337. This backend requires the following configuration directives to be set.
  338. .. setting:: CASSANDRA_SERVERS
  339. CASSANDRA_SERVERS
  340. ~~~~~~~~~~~~~~~~~
  341. List of ``host:port`` Cassandra servers. e.g. ``["localhost:9160]"``.
  342. .. setting:: CASSANDRA_KEYSPACE
  343. CASSANDRA_KEYSPACE
  344. ~~~~~~~~~~~~~~~~~~
  345. The keyspace in which to store the results. e.g. ``"tasks_keyspace"``.
  346. .. setting:: CASSANDRA_COLUMN_FAMILY
  347. CASSANDRA_COLUMN_FAMILY
  348. ~~~~~~~~~~~~~~~~~~~~~~~
  349. The column family in which to store the results. eg ``"tasks"``
  350. .. setting:: CASSANDRA_READ_CONSISTENCY
  351. CASSANDRA_READ_CONSISTENCY
  352. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  353. The read consistency used. Values can be ``"ONE"``, ``"QUORUM"`` or ``"ALL"``.
  354. .. setting:: CASSANDRA_WRITE_CONSISTENCY
  355. CASSANDRA_WRITE_CONSISTENCY
  356. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  357. The write consistency used. Values can be ``"ONE"``, ``"QUORUM"`` or ``"ALL"``.
  358. .. setting:: CASSANDRA_DETAILED_MODE
  359. CASSANDRA_DETAILED_MODE
  360. ~~~~~~~~~~~~~~~~~~~~~~~
  361. Enable or disable detailed mode. Default is :const:`False`.
  362. This mode allows to use the power of Cassandra wide columns to
  363. store all states for a task as a wide column, instead of only the last one.
  364. To use this mode, you need to configure your ColumnFamily to
  365. use the ``TimeUUID`` type as a comparator::
  366. create column family task_results with comparator = TimeUUIDType;
  367. CASSANDRA_OPTIONS
  368. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  369. Options to be passed to the `pycassa connection pool`_ (optional).
  370. .. _`pycassa connection pool`: http://pycassa.github.com/pycassa/api/pycassa/pool.html
  371. Example configuration
  372. ~~~~~~~~~~~~~~~~~~~~~
  373. .. code-block:: python
  374. CASSANDRA_SERVERS = ["localhost:9160"]
  375. CASSANDRA_KEYSPACE = "celery"
  376. CASSANDRA_COLUMN_FAMILY = "task_results"
  377. CASSANDRA_READ_CONSISTENCY = "ONE"
  378. CASSANDRA_WRITE_CONSISTENCY = "ONE"
  379. CASSANDRA_DETAILED_MODE = True
  380. CASSANDRA_OPTIONS = {
  381. 'timeout': 300,
  382. 'max_retries': 10
  383. }
  384. .. _conf-messaging:
  385. Message Routing
  386. ---------------
  387. .. _conf-messaging-routing:
  388. .. setting:: CELERY_QUEUES
  389. CELERY_QUEUES
  390. ~~~~~~~~~~~~~
  391. The mapping of queues the worker consumes from. This is a dictionary
  392. of queue name/options. See :ref:`guide-routing` for more information.
  393. The default is a queue/exchange/binding key of `"celery"`, with
  394. exchange type `direct`.
  395. You don't have to care about this unless you want custom routing facilities.
  396. .. setting:: CELERY_ROUTES
  397. CELERY_ROUTES
  398. ~~~~~~~~~~~~~
  399. A list of routers, or a single router used to route tasks to queues.
  400. When deciding the final destination of a task the routers are consulted
  401. in order. See :ref:`routers` for more information.
  402. .. setting:: CELERY_QUEUE_HA_POLICY
  403. CELERY_QUEUE_HA_POLICY
  404. ~~~~~~~~~~~~~~~~~~~~~~
  405. :brokers: RabbitMQ
  406. This will set the default HA policy for a queue, and the value
  407. can either be a string (usually ``all``):
  408. .. code-block:: python
  409. CELERY_QUEUE_HA_POLICY = 'all'
  410. Using 'all' will replicate the queue to all current nodes,
  411. Or you can give it a list of nodes to replicate to:
  412. .. code-block:: python
  413. CELERY_QUEUE_HA_POLICY = ['rabbit@host1', 'rabbit@host2']
  414. Using a list will implicitly set ``x-ha-policy`` to 'nodes' and
  415. ``x-ha-policy-params`` to the given list of nodes.
  416. See http://www.rabbitmq.com/ha.html for more information.
  417. .. setting:: CELERY_WORKER_DIRECT
  418. CELERY_WORKER_DIRECT
  419. ~~~~~~~~~~~~~~~~~~~~
  420. This option enables so that every worker has a dedicated queue,
  421. so that tasks can be routed to specific workers.
  422. The queue name for each worker is automatically generated based on
  423. the worker hostname and a ``.dq`` suffix, using the ``C.dq`` exchange.
  424. For example the queue name for the worker with hostname ``w1.example.com``
  425. becomes::
  426. w1.example.com.dq
  427. Then you can route the task to the task by specifying the hostname
  428. as the routung key and the ``C.dq`` exchange::
  429. CELERY_ROUTES = {
  430. 'tasks.add': {'exchange': 'C.dq', 'routing_key': 'w1.example.com'}
  431. }
  432. This setting is mandatory if you want to use the ``move_to_worker`` features
  433. of :mod:`celery.contrib.migrate`.
  434. .. setting:: CELERY_CREATE_MISSING_QUEUES
  435. CELERY_CREATE_MISSING_QUEUES
  436. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  437. If enabled (default), any queues specified that is not defined in
  438. :setting:`CELERY_QUEUES` will be automatically created. See
  439. :ref:`routing-automatic`.
  440. .. setting:: CELERY_DEFAULT_QUEUE
  441. CELERY_DEFAULT_QUEUE
  442. ~~~~~~~~~~~~~~~~~~~~
  443. The name of the default queue used by `.apply_async` if the message has
  444. no route or no custom queue has been specified.
  445. This queue must be listed in :setting:`CELERY_QUEUES`.
  446. If :setting:`CELERY_QUEUES` is not specified then it this automatically
  447. created containing one queue entry, where this name is used as the name of
  448. that queue.
  449. The default is: `celery`.
  450. .. seealso::
  451. :ref:`routing-changing-default-queue`
  452. .. setting:: CELERY_DEFAULT_EXCHANGE
  453. CELERY_DEFAULT_EXCHANGE
  454. ~~~~~~~~~~~~~~~~~~~~~~~
  455. Name of the default exchange to use when no custom exchange is
  456. specified for a key in the :setting:`CELERY_QUEUES` setting.
  457. The default is: `celery`.
  458. .. setting:: CELERY_DEFAULT_EXCHANGE_TYPE
  459. CELERY_DEFAULT_EXCHANGE_TYPE
  460. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  461. Default exchange type used when no custom exchange type is specified.
  462. for a key in the :setting:`CELERY_QUEUES` setting.
  463. The default is: `direct`.
  464. .. setting:: CELERY_DEFAULT_ROUTING_KEY
  465. CELERY_DEFAULT_ROUTING_KEY
  466. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  467. The default routing key used when no custom routing key
  468. is specified for a key in the :setting:`CELERY_QUEUES` setting.
  469. The default is: `celery`.
  470. .. setting:: CELERY_DEFAULT_DELIVERY_MODE
  471. CELERY_DEFAULT_DELIVERY_MODE
  472. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  473. Can be `transient` or `persistent`. The default is to send
  474. persistent messages.
  475. .. _conf-broker-settings:
  476. Broker Settings
  477. ---------------
  478. .. setting:: BROKER_TRANSPORT
  479. BROKER_TRANSPORT
  480. ~~~~~~~~~~~~~~~~
  481. :Aliases: ``BROKER_BACKEND``
  482. :Deprecated aliases: ``CARROT_BACKEND``
  483. .. setting:: BROKER_URL
  484. BROKER_URL
  485. ~~~~~~~~~~
  486. Default broker URL. This must be an URL in the form of::
  487. transport://userid:password@hostname:port/virtual_host
  488. Only the scheme part (``transport://``) is required, the rest
  489. is optional, and defaults to the specific transports default values.
  490. The transport part is the broker implementation to use, and the
  491. default is ``amqp``, which uses ``librabbitmq`` by default or falls back to
  492. ``pyamqp`` if that is not installed. Also there are many other choices including
  493. ``redis``, ``beanstalk``, ``sqlalchemy``, ``django``, ``mongodb``,
  494. ``couchdb``.
  495. It can also be a fully qualified path to your own transport implementation.
  496. See the Kombu documentation for more information about broker URLs.
  497. .. setting:: BROKER_HEARTBEAT
  498. BROKER_HEARTBEAT
  499. ~~~~~~~~~~~~~~~~
  500. :transports supported: ``pyamqp``
  501. It's not always possible to detect connection loss in a timely
  502. manner using TCP/IP alone, so AMQP defines something called heartbeats
  503. that's is used both by the client and the broker to detect if
  504. a connection was closed.
  505. Hartbeats are disabled by default.
  506. If the heartbeat value is 10 seconds, then
  507. the heartbeat will be monitored at the interval specified
  508. by the :setting:`BROKER_HEARTBEAT_CHECKRATE` setting, which by default is
  509. double the rate of the heartbeat value
  510. (so for the default 10 seconds, the heartbeat is checked every 5 seconds).
  511. .. setting:: BROKER_HEARTBEAT_CHECKRATE
  512. BROKER_HEARTBEAT_CHECKRATE
  513. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  514. :transports supported: ``pyamqp``
  515. At intervals the worker will monitor that the broker has not missed
  516. too many heartbeats. The rate at which this is checked is calculated
  517. by dividing the :setting:`BROKER_HEARTBEAT` value with this value,
  518. so if the heartbeat is 10.0 and the rate is the default 2.0, the check
  519. will be performed every 5 seconds (twice the heartbeat sending rate).
  520. .. setting:: BROKER_USE_SSL
  521. BROKER_USE_SSL
  522. ~~~~~~~~~~~~~~
  523. Use SSL to connect to the broker. Off by default. This may not be supported
  524. by all transports.
  525. .. setting:: BROKER_POOL_LIMIT
  526. BROKER_POOL_LIMIT
  527. ~~~~~~~~~~~~~~~~~
  528. .. versionadded:: 2.3
  529. The maximum number of connections that can be open in the connection pool.
  530. The pool is enabled by default since version 2.5, with a default limit of ten
  531. connections. This number can be tweaked depending on the number of
  532. threads/greenthreads (eventlet/gevent) using a connection. For example
  533. running eventlet with 1000 greenlets that use a connection to the broker,
  534. contention can arise and you should consider increasing the limit.
  535. If set to :const:`None` or 0 the connection pool will be disabled and
  536. connections will be established and closed for every use.
  537. Default (since 2.5) is to use a pool of 10 connections.
  538. .. setting:: BROKER_CONNECTION_TIMEOUT
  539. BROKER_CONNECTION_TIMEOUT
  540. ~~~~~~~~~~~~~~~~~~~~~~~~~
  541. The default timeout in seconds before we give up establishing a connection
  542. to the AMQP server. Default is 4 seconds.
  543. .. setting:: BROKER_CONNECTION_RETRY
  544. BROKER_CONNECTION_RETRY
  545. ~~~~~~~~~~~~~~~~~~~~~~~
  546. Automatically try to re-establish the connection to the AMQP broker if lost.
  547. The time between retries is increased for each retry, and is
  548. not exhausted before :setting:`BROKER_CONNECTION_MAX_RETRIES` is
  549. exceeded.
  550. This behavior is on by default.
  551. .. setting:: BROKER_CONNECTION_MAX_RETRIES
  552. BROKER_CONNECTION_MAX_RETRIES
  553. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  554. Maximum number of retries before we give up re-establishing a connection
  555. to the AMQP broker.
  556. If this is set to :const:`0` or :const:`None`, we will retry forever.
  557. Default is 100 retries.
  558. .. setting:: BROKER_TRANSPORT_OPTIONS
  559. BROKER_TRANSPORT_OPTIONS
  560. ~~~~~~~~~~~~~~~~~~~~~~~~
  561. .. versionadded:: 2.2
  562. A dict of additional options passed to the underlying transport.
  563. See your transport user manual for supported options (if any).
  564. Example setting the visibility timeout (supported by Redis and SQS
  565. transports):
  566. .. code-block:: python
  567. BROKER_TRANSPORT_OPTIONS = {'visibility_timeout': 18000} # 5 hours
  568. .. _conf-task-execution:
  569. Task execution settings
  570. -----------------------
  571. .. setting:: CELERY_ALWAYS_EAGER
  572. CELERY_ALWAYS_EAGER
  573. ~~~~~~~~~~~~~~~~~~~
  574. If this is :const:`True`, all tasks will be executed locally by blocking until
  575. the task returns. ``apply_async()`` and ``Task.delay()`` will return
  576. an :class:`~celery.result.EagerResult` instance, which emulates the API
  577. and behavior of :class:`~celery.result.AsyncResult`, except the result
  578. is already evaluated.
  579. That is, tasks will be executed locally instead of being sent to
  580. the queue.
  581. .. setting:: CELERY_EAGER_PROPAGATES_EXCEPTIONS
  582. CELERY_EAGER_PROPAGATES_EXCEPTIONS
  583. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  584. If this is :const:`True`, eagerly executed tasks (applied by `task.apply()`,
  585. or when the :setting:`CELERY_ALWAYS_EAGER` setting is enabled), will
  586. propagate exceptions.
  587. It's the same as always running ``apply()`` with ``throw=True``.
  588. .. setting:: CELERY_IGNORE_RESULT
  589. CELERY_IGNORE_RESULT
  590. ~~~~~~~~~~~~~~~~~~~~
  591. Whether to store the task return values or not (tombstones).
  592. If you still want to store errors, just not successful return values,
  593. you can set :setting:`CELERY_STORE_ERRORS_EVEN_IF_IGNORED`.
  594. .. setting:: CELERY_MESSAGE_COMPRESSION
  595. CELERY_MESSAGE_COMPRESSION
  596. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  597. Default compression used for task messages.
  598. Can be ``"gzip"``, ``"bzip2"`` (if available), or any custom
  599. compression schemes registered in the Kombu compression registry.
  600. The default is to send uncompressed messages.
  601. .. setting:: CELERY_TASK_RESULT_EXPIRES
  602. CELERY_TASK_RESULT_EXPIRES
  603. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  604. Time (in seconds, or a :class:`~datetime.timedelta` object) for when after
  605. stored task tombstones will be deleted.
  606. A built-in periodic task will delete the results after this time
  607. (:class:`celery.task.backend_cleanup`).
  608. Default is to expire after 1 day.
  609. .. note::
  610. For the moment this only works with the amqp, database, cache, redis and MongoDB
  611. backends.
  612. When using the database or MongoDB backends, `celerybeat` must be
  613. running for the results to be expired.
  614. .. setting:: CELERY_MAX_CACHED_RESULTS
  615. CELERY_MAX_CACHED_RESULTS
  616. ~~~~~~~~~~~~~~~~~~~~~~~~~
  617. Result backends caches ready results used by the client.
  618. This is the total number of results to cache before older results are evicted.
  619. The default is 5000.
  620. .. setting:: CELERY_CHORD_PROPAGATES
  621. CELERY_CHORD_PROPAGATES
  622. ~~~~~~~~~~~~~~~~~~~~~~~
  623. .. versionadded:: 3.0.14
  624. This setting defines what happens when a task part of a chord raises an
  625. exception:
  626. - If propagate is True the chord callback will change state to FAILURE
  627. with the exception value set to a :exc:`~celery.exceptions.ChordError`
  628. instance containing information about the error and the task that failed.
  629. This is the default behavior in Celery 3.1+
  630. - If propagate is False the exception value will instead be forwarded
  631. to the chord callback.
  632. This was the default behavior before version 3.1.
  633. .. setting:: CELERY_TRACK_STARTED
  634. CELERY_TRACK_STARTED
  635. ~~~~~~~~~~~~~~~~~~~~
  636. If :const:`True` the task will report its status as "started" when the
  637. task is executed by a worker. The default value is :const:`False` as
  638. the normal behaviour is to not report that level of granularity. Tasks
  639. are either pending, finished, or waiting to be retried. Having a "started"
  640. state can be useful for when there are long running tasks and there is a
  641. need to report which task is currently running.
  642. .. setting:: CELERY_TASK_SERIALIZER
  643. CELERY_TASK_SERIALIZER
  644. ~~~~~~~~~~~~~~~~~~~~~~
  645. A string identifying the default serialization method to use. Can be
  646. `pickle` (default), `json`, `yaml`, `msgpack` or any custom serialization
  647. methods that have been registered with :mod:`kombu.serialization.registry`.
  648. .. seealso::
  649. :ref:`calling-serializers`.
  650. .. setting:: CELERY_TASK_PUBLISH_RETRY
  651. CELERY_TASK_PUBLISH_RETRY
  652. ~~~~~~~~~~~~~~~~~~~~~~~~~
  653. .. versionadded:: 2.2
  654. Decides if publishing task messages will be retried in the case
  655. of connection loss or other connection errors.
  656. See also :setting:`CELERY_TASK_PUBLISH_RETRY_POLICY`.
  657. Enabled by default.
  658. .. setting:: CELERY_TASK_PUBLISH_RETRY_POLICY
  659. CELERY_TASK_PUBLISH_RETRY_POLICY
  660. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  661. .. versionadded:: 2.2
  662. Defines the default policy when retrying publishing a task message in
  663. the case of connection loss or other connection errors.
  664. See :ref:`calling-retry` for more information.
  665. .. setting:: CELERY_DEFAULT_RATE_LIMIT
  666. CELERY_DEFAULT_RATE_LIMIT
  667. ~~~~~~~~~~~~~~~~~~~~~~~~~
  668. The global default rate limit for tasks.
  669. This value is used for tasks that does not have a custom rate limit
  670. The default is no rate limit.
  671. .. setting:: CELERY_DISABLE_RATE_LIMITS
  672. CELERY_DISABLE_RATE_LIMITS
  673. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  674. Disable all rate limits, even if tasks has explicit rate limits set.
  675. .. setting:: CELERY_ACKS_LATE
  676. CELERY_ACKS_LATE
  677. ~~~~~~~~~~~~~~~~
  678. Late ack means the task messages will be acknowledged **after** the task
  679. has been executed, not *just before*, which is the default behavior.
  680. .. seealso::
  681. FAQ: :ref:`faq-acks_late-vs-retry`.
  682. .. _conf-celeryd:
  683. Worker: celeryd
  684. ---------------
  685. .. setting:: CELERY_IMPORTS
  686. CELERY_IMPORTS
  687. ~~~~~~~~~~~~~~
  688. A sequence of modules to import when the worker starts.
  689. This is used to specify the task modules to import, but also
  690. to import signal handlers and additional remote control commands, etc.
  691. The modules will be imported in the original order.
  692. .. setting:: CELERY_INCLUDE
  693. CELERY_INCLUDE
  694. ~~~~~~~~~~~~~~
  695. Exact same semantics as :setting:`CELERY_IMPORTS`, but can be used as a means
  696. to have different import categories.
  697. The modules in this setting are imported after the modules in
  698. :setting:`CELERY_IMPORTS`.
  699. .. setting:: CELERYD_FORCE_EXECV
  700. CELERYD_FORCE_EXECV
  701. ~~~~~~~~~~~~~~~~~~~
  702. On Unix the processes pool will fork, so that child processes
  703. start with the same memory as the parent process.
  704. This can cause problems as there is a known deadlock condition
  705. with pthread locking primitives when `fork()` is combined with threads.
  706. You should enable this setting if you are experiencing hangs (deadlocks),
  707. especially in combination with time limits or having a max tasks per child limit.
  708. This option will be enabled by default in a later version.
  709. This is not a problem on Windows, as it does not have `fork()`.
  710. .. setting:: CELERYD_WORKER_LOST_WAIT
  711. CELERYD_WORKER_LOST_WAIT
  712. ~~~~~~~~~~~~~~~~~~~~~~~~
  713. In some cases a worker may be killed without proper cleanup,
  714. and the worker may have published a result before terminating.
  715. This value specifies how long we wait for any missing results before
  716. raising a :exc:`@WorkerLostError` exception.
  717. Default is 10.0
  718. .. setting:: CELERYD_MAX_TASKS_PER_CHILD
  719. CELERYD_MAX_TASKS_PER_CHILD
  720. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  721. Maximum number of tasks a pool worker process can execute before
  722. it's replaced with a new one. Default is no limit.
  723. .. setting:: CELERYD_TASK_TIME_LIMIT
  724. CELERYD_TASK_TIME_LIMIT
  725. ~~~~~~~~~~~~~~~~~~~~~~~
  726. Task hard time limit in seconds. The worker processing the task will
  727. be killed and replaced with a new one when this is exceeded.
  728. .. setting:: CELERYD_TASK_SOFT_TIME_LIMIT
  729. CELERYD_TASK_SOFT_TIME_LIMIT
  730. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  731. Task soft time limit in seconds.
  732. The :exc:`~@SoftTimeLimitExceeded` exception will be
  733. raised when this is exceeded. The task can catch this to
  734. e.g. clean up before the hard time limit comes.
  735. Example:
  736. .. code-block:: python
  737. from celery.exceptions import SoftTimeLimitExceeded
  738. @celery.task
  739. def mytask():
  740. try:
  741. return do_work()
  742. except SoftTimeLimitExceeded:
  743. cleanup_in_a_hurry()
  744. .. setting:: CELERY_STORE_ERRORS_EVEN_IF_IGNORED
  745. CELERY_STORE_ERRORS_EVEN_IF_IGNORED
  746. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  747. If set, the worker stores all task errors in the result store even if
  748. :attr:`Task.ignore_result <celery.task.base.Task.ignore_result>` is on.
  749. .. setting:: CELERYD_STATE_DB
  750. CELERYD_STATE_DB
  751. ~~~~~~~~~~~~~~~~
  752. Name of the file used to stores persistent worker state (like revoked tasks).
  753. Can be a relative or absolute path, but be aware that the suffix `.db`
  754. may be appended to the file name (depending on Python version).
  755. Can also be set via the :option:`--statedb` argument to
  756. :mod:`~celery.bin.celeryd`.
  757. Not enabled by default.
  758. .. setting:: CELERYD_TIMER_PRECISION
  759. CELERYD_TIMER_PRECISION
  760. ~~~~~~~~~~~~~~~~~~~~~~~
  761. Set the maximum time in seconds that the ETA scheduler can sleep between
  762. rechecking the schedule. Default is 1 second.
  763. Setting this value to 1 second means the schedulers precision will
  764. be 1 second. If you need near millisecond precision you can set this to 0.1.
  765. .. _conf-error-mails:
  766. Error E-Mails
  767. -------------
  768. .. setting:: CELERY_SEND_TASK_ERROR_EMAILS
  769. CELERY_SEND_TASK_ERROR_EMAILS
  770. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  771. The default value for the `Task.send_error_emails` attribute, which if
  772. set to :const:`True` means errors occurring during task execution will be
  773. sent to :setting:`ADMINS` by email.
  774. Disabled by default.
  775. .. setting:: ADMINS
  776. ADMINS
  777. ~~~~~~
  778. List of `(name, email_address)` tuples for the administrators that should
  779. receive error emails.
  780. .. setting:: SERVER_EMAIL
  781. SERVER_EMAIL
  782. ~~~~~~~~~~~~
  783. The email address this worker sends emails from.
  784. Default is celery@localhost.
  785. .. setting:: EMAIL_HOST
  786. EMAIL_HOST
  787. ~~~~~~~~~~
  788. The mail server to use. Default is `"localhost"`.
  789. .. setting:: EMAIL_HOST_USER
  790. EMAIL_HOST_USER
  791. ~~~~~~~~~~~~~~~
  792. User name (if required) to log on to the mail server with.
  793. .. setting:: EMAIL_HOST_PASSWORD
  794. EMAIL_HOST_PASSWORD
  795. ~~~~~~~~~~~~~~~~~~~
  796. Password (if required) to log on to the mail server with.
  797. .. setting:: EMAIL_PORT
  798. EMAIL_PORT
  799. ~~~~~~~~~~
  800. The port the mail server is listening on. Default is `25`.
  801. .. setting:: EMAIL_USE_SSL
  802. EMAIL_USE_SSL
  803. ~~~~~~~~~~~~~
  804. Use SSL when connecting to the SMTP server. Disabled by default.
  805. .. setting:: EMAIL_USE_TLS
  806. EMAIL_USE_TLS
  807. ~~~~~~~~~~~~~
  808. Use TLS when connecting to the SMTP server. Disabled by default.
  809. .. setting:: EMAIL_TIMEOUT
  810. EMAIL_TIMEOUT
  811. ~~~~~~~~~~~~~
  812. Timeout in seconds for when we give up trying to connect
  813. to the SMTP server when sending emails.
  814. The default is 2 seconds.
  815. .. _conf-example-error-mail-config:
  816. Example E-Mail configuration
  817. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  818. This configuration enables the sending of error emails to
  819. george@vandelay.com and kramer@vandelay.com:
  820. .. code-block:: python
  821. # Enables error emails.
  822. CELERY_SEND_TASK_ERROR_EMAILS = True
  823. # Name and email addresses of recipients
  824. ADMINS = (
  825. ("George Costanza", "george@vandelay.com"),
  826. ("Cosmo Kramer", "kosmo@vandelay.com"),
  827. )
  828. # Email address used as sender (From field).
  829. SERVER_EMAIL = "no-reply@vandelay.com"
  830. # Mailserver configuration
  831. EMAIL_HOST = "mail.vandelay.com"
  832. EMAIL_PORT = 25
  833. # EMAIL_HOST_USER = "servers"
  834. # EMAIL_HOST_PASSWORD = "s3cr3t"
  835. .. _conf-events:
  836. Events
  837. ------
  838. .. setting:: CELERY_SEND_EVENTS
  839. CELERY_SEND_EVENTS
  840. ~~~~~~~~~~~~~~~~~~
  841. Send events so the worker can be monitored by tools like `celerymon`.
  842. .. setting:: CELERY_SEND_TASK_SENT_EVENT
  843. CELERY_SEND_TASK_SENT_EVENT
  844. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  845. .. versionadded:: 2.2
  846. If enabled, a :event:`task-sent` event will be sent for every task so tasks can be
  847. tracked before they are consumed by a worker.
  848. Disabled by default.
  849. .. setting:: CELERY_EVENT_SERIALIZER
  850. CELERY_EVENT_SERIALIZER
  851. ~~~~~~~~~~~~~~~~~~~~~~~
  852. Message serialization format used when sending event messages.
  853. Default is `"json"`. See :ref:`calling-serializers`.
  854. .. _conf-broadcast:
  855. Broadcast Commands
  856. ------------------
  857. .. setting:: CELERY_BROADCAST_QUEUE
  858. CELERY_BROADCAST_QUEUE
  859. ~~~~~~~~~~~~~~~~~~~~~~
  860. Name prefix for the queue used when listening for broadcast messages.
  861. The workers host name will be appended to the prefix to create the final
  862. queue name.
  863. Default is `"celeryctl"`.
  864. .. setting:: CELERY_BROADCAST_EXCHANGE
  865. CELERY_BROADCAST_EXCHANGE
  866. ~~~~~~~~~~~~~~~~~~~~~~~~~
  867. Name of the exchange used for broadcast messages.
  868. Default is `"celeryctl"`.
  869. .. setting:: CELERY_BROADCAST_EXCHANGE_TYPE
  870. CELERY_BROADCAST_EXCHANGE_TYPE
  871. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  872. Exchange type used for broadcast messages. Default is `"fanout"`.
  873. .. _conf-logging:
  874. Logging
  875. -------
  876. .. setting:: CELERYD_HIJACK_ROOT_LOGGER
  877. CELERYD_HIJACK_ROOT_LOGGER
  878. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  879. .. versionadded:: 2.2
  880. By default any previously configured logging options will be reset,
  881. because the Celery programs "hijacks" the root logger.
  882. If you want to customize your own logging then you can disable
  883. this behavior.
  884. .. note::
  885. Logging can also be customized by connecting to the
  886. :signal:`celery.signals.setup_logging` signal.
  887. .. setting:: CELERYD_LOG_COLOR
  888. CELERYD_LOG_COLOR
  889. ~~~~~~~~~~~~~~~~~
  890. Enables/disables colors in logging output by the Celery apps.
  891. By default colors are enabled if
  892. 1) the app is logging to a real terminal, and not a file.
  893. 2) the app is not running on Windows.
  894. .. setting:: CELERYD_LOG_FORMAT
  895. CELERYD_LOG_FORMAT
  896. ~~~~~~~~~~~~~~~~~~
  897. The format to use for log messages.
  898. Default is `[%(asctime)s: %(levelname)s/%(processName)s] %(message)s`
  899. See the Python :mod:`logging` module for more information about log
  900. formats.
  901. .. setting:: CELERYD_TASK_LOG_FORMAT
  902. CELERYD_TASK_LOG_FORMAT
  903. ~~~~~~~~~~~~~~~~~~~~~~~
  904. The format to use for log messages logged in tasks. Can be overridden using
  905. the :option:`--loglevel` option to :mod:`~celery.bin.celeryd`.
  906. Default is::
  907. [%(asctime)s: %(levelname)s/%(processName)s]
  908. [%(task_name)s(%(task_id)s)] %(message)s
  909. See the Python :mod:`logging` module for more information about log
  910. formats.
  911. .. setting:: CELERY_REDIRECT_STDOUTS
  912. CELERY_REDIRECT_STDOUTS
  913. ~~~~~~~~~~~~~~~~~~~~~~~
  914. If enabled `stdout` and `stderr` will be redirected
  915. to the current logger.
  916. Enabled by default.
  917. Used by :program:`celeryd` and :program:`celerybeat`.
  918. .. setting:: CELERY_REDIRECT_STDOUTS_LEVEL
  919. CELERY_REDIRECT_STDOUTS_LEVEL
  920. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  921. The log level output to `stdout` and `stderr` is logged as.
  922. Can be one of :const:`DEBUG`, :const:`INFO`, :const:`WARNING`,
  923. :const:`ERROR` or :const:`CRITICAL`.
  924. Default is :const:`WARNING`.
  925. .. _conf-security:
  926. Security
  927. --------
  928. .. setting:: CELERY_SECURITY_KEY
  929. CELERY_SECURITY_KEY
  930. ~~~~~~~~~~~~~~~~~~~
  931. .. versionadded:: 2.5
  932. The relative or absolute path to a file containing the private key
  933. used to sign messages when :ref:`message-signing` is used.
  934. .. setting:: CELERY_SECURITY_CERTIFICATE
  935. CELERY_SECURITY_CERTIFICATE
  936. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  937. .. versionadded:: 2.5
  938. The relative or absolute path to an X.509 certificate file
  939. used to sign messages when :ref:`message-signing` is used.
  940. .. setting:: CELERY_SECURITY_CERT_STORE
  941. CELERY_SECURITY_CERT_STORE
  942. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  943. .. versionadded:: 2.5
  944. The directory containing X.509 certificates used for
  945. :ref:`message-signing`. Can be a glob with wildcards,
  946. (for example :file:`/etc/certs/*.pem`).
  947. .. _conf-custom-components:
  948. Custom Component Classes (advanced)
  949. -----------------------------------
  950. .. setting:: CELERYD_BOOT_STEPS
  951. CELERYD_BOOT_STEPS
  952. ~~~~~~~~~~~~~~~~~~
  953. This setting enables you to add additional components to the worker process.
  954. It should be a list of module names with :class:`celery.abstract.Component`
  955. classes, that augments functionality in the worker.
  956. .. setting:: CELERYD_POOL
  957. CELERYD_POOL
  958. ~~~~~~~~~~~~
  959. Name of the pool class used by the worker.
  960. You can use a custom pool class name, or select one of
  961. the built-in aliases: ``processes``, ``eventlet``, ``gevent``.
  962. Default is ``processes``.
  963. .. setting:: CELERYD_POOL_RESTARTS
  964. CELERYD_POOL_RESTARTS
  965. ~~~~~~~~~~~~~~~~~~~~~
  966. If enabled the worker pool can be restarted using the
  967. :control:`pool_restart` remote control command.
  968. Disabled by default.
  969. .. setting:: CELERYD_AUTOSCALER
  970. CELERYD_AUTOSCALER
  971. ~~~~~~~~~~~~~~~~~~
  972. .. versionadded:: 2.2
  973. Name of the autoscaler class to use.
  974. Default is ``"celery.worker.autoscale.Autoscaler"``.
  975. .. setting:: CELERYD_AUTORELOADER
  976. CELERYD_AUTORELOADER
  977. ~~~~~~~~~~~~~~~~~~~~
  978. Name of the autoreloader class used by the worker to reload
  979. Python modules and files that have changed.
  980. Default is: ``"celery.worker.autoreload.Autoreloader"``.
  981. .. setting:: CELERYD_CONSUMER
  982. CELERYD_CONSUMER
  983. ~~~~~~~~~~~~~~~~
  984. Name of the consumer class used by the worker.
  985. Default is :class:`celery.worker.consumer.Consumer`
  986. .. setting:: CELERYD_MEDIATOR
  987. CELERYD_MEDIATOR
  988. ~~~~~~~~~~~~~~~~
  989. Name of the mediator class used by the worker.
  990. Default is :class:`celery.worker.controllers.Mediator`.
  991. .. setting:: CELERYD_TIMER
  992. CELERYD_TIMER
  993. ~~~~~~~~~~~~~~~~~~~~~
  994. Name of the ETA scheduler class used by the worker.
  995. Default is :class:`celery.utils.timer2.Timer`, or one overrided
  996. by the pool implementation.
  997. .. _conf-celerybeat:
  998. Periodic Task Server: celerybeat
  999. --------------------------------
  1000. .. setting:: CELERYBEAT_SCHEDULE
  1001. CELERYBEAT_SCHEDULE
  1002. ~~~~~~~~~~~~~~~~~~~
  1003. The periodic task schedule used by :mod:`~celery.bin.celerybeat`.
  1004. See :ref:`beat-entries`.
  1005. .. setting:: CELERYBEAT_SCHEDULER
  1006. CELERYBEAT_SCHEDULER
  1007. ~~~~~~~~~~~~~~~~~~~~
  1008. The default scheduler class. Default is
  1009. `"celery.beat.PersistentScheduler"`.
  1010. Can also be set via the :option:`-S` argument to
  1011. :mod:`~celery.bin.celerybeat`.
  1012. .. setting:: CELERYBEAT_SCHEDULE_FILENAME
  1013. CELERYBEAT_SCHEDULE_FILENAME
  1014. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1015. Name of the file used by `PersistentScheduler` to store the last run times
  1016. of periodic tasks. Can be a relative or absolute path, but be aware that the
  1017. suffix `.db` may be appended to the file name (depending on Python version).
  1018. Can also be set via the :option:`--schedule` argument to
  1019. :mod:`~celery.bin.celerybeat`.
  1020. .. setting:: CELERYBEAT_MAX_LOOP_INTERVAL
  1021. CELERYBEAT_MAX_LOOP_INTERVAL
  1022. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1023. The maximum number of seconds :mod:`~celery.bin.celerybeat` can sleep
  1024. between checking the schedule.
  1025. The default for this value is scheduler specific.
  1026. For the default celerybeat scheduler the value is 300 (5 minutes),
  1027. but for e.g. the django-celery database scheduler it is 5 seconds
  1028. because the schedule may be changed externally, and so it must take
  1029. changes to the schedule into account.
  1030. Also when running celerybeat embedded (:option:`-B`) on Jython as a thread
  1031. the max interval is overridden and set to 1 so that it's possible
  1032. to shut down in a timely manner.
  1033. .. _conf-celerymon:
  1034. Monitor Server: celerymon
  1035. -------------------------
  1036. .. setting:: CELERYMON_LOG_FORMAT
  1037. CELERYMON_LOG_FORMAT
  1038. ~~~~~~~~~~~~~~~~~~~~
  1039. The format to use for log messages.
  1040. Default is `[%(asctime)s: %(levelname)s/%(processName)s] %(message)s`
  1041. See the Python :mod:`logging` module for more information about log
  1042. formats.