configuration.rst 39 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615
  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 "dummy" backend stores the cache in memory only:
  242. CELERY_CACHE_BACKEND = "dummy"
  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. .. _example-mongodb-result-config:
  308. Example configuration
  309. ~~~~~~~~~~~~~~~~~~~~~
  310. .. code-block:: python
  311. CELERY_RESULT_BACKEND = "mongodb"
  312. CELERY_MONGODB_BACKEND_SETTINGS = {
  313. "host": "192.168.1.100",
  314. "port": 30000,
  315. "database": "mydb",
  316. "taskmeta_collection": "my_taskmeta_collection",
  317. }
  318. .. _conf-cassandra-result-backend:
  319. Cassandra backend settings
  320. --------------------------
  321. .. note::
  322. The Cassandra backend requires the :mod:`pycassa` library:
  323. http://pypi.python.org/pypi/pycassa/
  324. To install the pycassa package use `pip` or `easy_install`:
  325. .. code-block:: bash
  326. $ pip install pycassa
  327. This backend requires the following configuration directives to be set.
  328. .. setting:: CASSANDRA_SERVERS
  329. CASSANDRA_SERVERS
  330. ~~~~~~~~~~~~~~~~~
  331. List of ``host:port`` Cassandra servers. e.g. ``["localhost:9160]"``.
  332. .. setting:: CASSANDRA_KEYSPACE
  333. CASSANDRA_KEYSPACE
  334. ~~~~~~~~~~~~~~~~~~
  335. The keyspace in which to store the results. e.g. ``"tasks_keyspace"``.
  336. .. setting:: CASSANDRA_COLUMN_FAMILY
  337. CASSANDRA_COLUMN_FAMILY
  338. ~~~~~~~~~~~~~~~~~~~~~~~
  339. The column family in which to store the results. eg ``"tasks"``
  340. .. setting:: CASSANDRA_READ_CONSISTENCY
  341. CASSANDRA_READ_CONSISTENCY
  342. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  343. The read consistency used. Values can be ``"ONE"``, ``"QUORUM"`` or ``"ALL"``.
  344. .. setting:: CASSANDRA_WRITE_CONSISTENCY
  345. CASSANDRA_WRITE_CONSISTENCY
  346. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  347. The write consistency used. Values can be ``"ONE"``, ``"QUORUM"`` or ``"ALL"``.
  348. .. setting:: CASSANDRA_DETAILED_MODE
  349. CASSANDRA_DETAILED_MODE
  350. ~~~~~~~~~~~~~~~~~~~~~~~
  351. Enable or disable detailed mode. Default is :const:`False`.
  352. This mode allows to use the power of Cassandra wide columns to
  353. store all states for a task as a wide column, instead of only the last one.
  354. To use this mode, you need to configure your ColumnFamily to
  355. use the ``TimeUUID`` type as a comparator::
  356. create column family task_results with comparator = TimeUUIDType;
  357. CASSANDRA_OPTIONS
  358. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  359. Options to be passed to the `pycassa connection pool`_ (optional).
  360. .. _`pycassa connection pool`: http://pycassa.github.com/pycassa/api/pycassa/pool.html
  361. Example configuration
  362. ~~~~~~~~~~~~~~~~~~~~~
  363. .. code-block:: python
  364. CASSANDRA_SERVERS = ["localhost:9160"]
  365. CASSANDRA_KEYSPACE = "celery"
  366. CASSANDRA_COLUMN_FAMILY = "task_results"
  367. CASSANDRA_READ_CONSISTENCY = "ONE"
  368. CASSANDRA_WRITE_CONSISTENCY = "ONE"
  369. CASSANDRA_DETAILED_MODE = True
  370. CASSANDRA_OPTIONS = {
  371. 'timeout': 300,
  372. 'max_retries': 10
  373. }
  374. .. _conf-messaging:
  375. Message Routing
  376. ---------------
  377. .. _conf-messaging-routing:
  378. .. setting:: CELERY_QUEUES
  379. CELERY_QUEUES
  380. ~~~~~~~~~~~~~
  381. The mapping of queues the worker consumes from. This is a dictionary
  382. of queue name/options. See :ref:`guide-routing` for more information.
  383. The default is a queue/exchange/binding key of `"celery"`, with
  384. exchange type `direct`.
  385. You don't have to care about this unless you want custom routing facilities.
  386. .. setting:: CELERY_ROUTES
  387. CELERY_ROUTES
  388. ~~~~~~~~~~~~~
  389. A list of routers, or a single router used to route tasks to queues.
  390. When deciding the final destination of a task the routers are consulted
  391. in order. See :ref:`routers` for more information.
  392. .. setting:: CELERY_QUEUE_HA_POLICY
  393. CELERY_QUEUE_HA_POLICY
  394. ~~~~~~~~~~~~~~~~~~~~~~
  395. :brokers: RabbitMQ
  396. This will set the default HA policy for a queue, and the value
  397. can either be a string (usually ``all``):
  398. .. code-block:: python
  399. CELERY_QUEUE_HA_POLICY = 'all'
  400. Using 'all' will replicate the queue to all current nodes,
  401. Or you can give it a list of nodes to replicate to:
  402. .. code-block:: python
  403. CELERY_QUEUE_HA_POLICY = ['rabbit@host1', 'rabbit@host2']
  404. Using a list will implicitly set ``x-ha-policy`` to 'nodes' and
  405. ``x-ha-policy-params`` to the given list of nodes.
  406. See http://www.rabbitmq.com/ha.html for more information.
  407. .. setting:: CELERY_WORKER_DIRECT
  408. CELERY_WORKER_DIRECT
  409. ~~~~~~~~~~~~~~~~~~~~
  410. This option enables so that every worker has a dedicated queue,
  411. so that tasks can be routed to specific workers.
  412. The queue name for each worker is automatically generated based on
  413. the worker hostname and a ``.dq`` suffix, using the ``C.dq`` exchange.
  414. For example the queue name for the worker with hostname ``w1.example.com``
  415. becomes::
  416. w1.example.com.dq
  417. Then you can route the task to the task by specifying the hostname
  418. as the routung key and the ``C.dq`` exchange::
  419. CELERY_ROUTES = {
  420. 'tasks.add': {'exchange': 'C.dq', 'routing_key': 'w1.example.com'}
  421. }
  422. This setting is mandatory if you want to use the ``move_to_worker`` features
  423. of :mod:`celery.contrib.migrate`.
  424. .. setting:: CELERY_CREATE_MISSING_QUEUES
  425. CELERY_CREATE_MISSING_QUEUES
  426. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  427. If enabled (default), any queues specified that is not defined in
  428. :setting:`CELERY_QUEUES` will be automatically created. See
  429. :ref:`routing-automatic`.
  430. .. setting:: CELERY_DEFAULT_QUEUE
  431. CELERY_DEFAULT_QUEUE
  432. ~~~~~~~~~~~~~~~~~~~~
  433. The name of the default queue used by `.apply_async` if the message has
  434. no route or no custom queue has been specified.
  435. This queue must be listed in :setting:`CELERY_QUEUES`.
  436. If :setting:`CELERY_QUEUES` is not specified then it this automatically
  437. created containing one queue entry, where this name is used as the name of
  438. that queue.
  439. The default is: `celery`.
  440. .. seealso::
  441. :ref:`routing-changing-default-queue`
  442. .. setting:: CELERY_DEFAULT_EXCHANGE
  443. CELERY_DEFAULT_EXCHANGE
  444. ~~~~~~~~~~~~~~~~~~~~~~~
  445. Name of the default exchange to use when no custom exchange is
  446. specified for a key in the :setting:`CELERY_QUEUES` setting.
  447. The default is: `celery`.
  448. .. setting:: CELERY_DEFAULT_EXCHANGE_TYPE
  449. CELERY_DEFAULT_EXCHANGE_TYPE
  450. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  451. Default exchange type used when no custom exchange type is specified.
  452. for a key in the :setting:`CELERY_QUEUES` setting.
  453. The default is: `direct`.
  454. .. setting:: CELERY_DEFAULT_ROUTING_KEY
  455. CELERY_DEFAULT_ROUTING_KEY
  456. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  457. The default routing key used when no custom routing key
  458. is specified for a key in the :setting:`CELERY_QUEUES` setting.
  459. The default is: `celery`.
  460. .. setting:: CELERY_DEFAULT_DELIVERY_MODE
  461. CELERY_DEFAULT_DELIVERY_MODE
  462. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  463. Can be `transient` or `persistent`. The default is to send
  464. persistent messages.
  465. .. _conf-broker-settings:
  466. Broker Settings
  467. ---------------
  468. .. setting:: BROKER_TRANSPORT
  469. BROKER_TRANSPORT
  470. ~~~~~~~~~~~~~~~~
  471. :Aliases: ``BROKER_BACKEND``
  472. :Deprecated aliases: ``CARROT_BACKEND``
  473. .. setting:: BROKER_URL
  474. BROKER_URL
  475. ~~~~~~~~~~
  476. Default broker URL. This must be an URL in the form of::
  477. transport://userid:password@hostname:port/virtual_host
  478. Only the scheme part (``transport://``) is required, the rest
  479. is optional, and defaults to the specific transports default values.
  480. The transport part is the broker implementation to use, and the
  481. default is ``amqp``, which uses ``librabbitmq`` by default or falls back to
  482. ``pyamqp`` if that is not installed. Also there are many other choices including
  483. ``redis``, ``beanstalk``, ``sqlalchemy``, ``django``, ``mongodb``,
  484. ``couchdb``.
  485. It can also be a fully qualified path to your own transport implementation.
  486. See the Kombu documentation for more information about broker URLs.
  487. .. setting:: BROKER_HEARTBEAT
  488. BROKER_HEARTBEAT
  489. ~~~~~~~~~~~~~~~~
  490. :transports supported: ``pyamqp``
  491. It's not always possible to detect connection loss in a timely
  492. manner using TCP/IP alone, so AMQP defines something called heartbeats
  493. that's is used both by the client and the broker to detect if
  494. a connection was closed.
  495. Heartbeats are currently only supported by the ``pyamqp://`` transport,
  496. and this requires the :mod:`amqp` module:
  497. .. code-block:: bash
  498. $ pip install amqp
  499. The default heartbeat value is 10 seconds,
  500. the heartbeat will then be monitored at double the rate of the heartbeat value
  501. (so for the default 10 seconds, the heartbeat is checked every 5 seconds).
  502. .. setting:: BROKER_USE_SSL
  503. BROKER_USE_SSL
  504. ~~~~~~~~~~~~~~
  505. Use SSL to connect to the broker. Off by default. This may not be supported
  506. by all transports.
  507. .. setting:: BROKER_POOL_LIMIT
  508. BROKER_POOL_LIMIT
  509. ~~~~~~~~~~~~~~~~~
  510. .. versionadded:: 2.3
  511. The maximum number of connections that can be open in the connection pool.
  512. The pool is enabled by default since version 2.5, with a default limit of ten
  513. connections. This number can be tweaked depending on the number of
  514. threads/greenthreads (eventlet/gevent) using a connection. For example
  515. running eventlet with 1000 greenlets that use a connection to the broker,
  516. contention can arise and you should consider increasing the limit.
  517. If set to :const:`None` or 0 the connection pool will be disabled and
  518. connections will be established and closed for every use.
  519. Default (since 2.5) is to use a pool of 10 connections.
  520. .. setting:: BROKER_CONNECTION_TIMEOUT
  521. BROKER_CONNECTION_TIMEOUT
  522. ~~~~~~~~~~~~~~~~~~~~~~~~~
  523. The default timeout in seconds before we give up establishing a connection
  524. to the AMQP server. Default is 4 seconds.
  525. .. setting:: BROKER_CONNECTION_RETRY
  526. BROKER_CONNECTION_RETRY
  527. ~~~~~~~~~~~~~~~~~~~~~~~
  528. Automatically try to re-establish the connection to the AMQP broker if lost.
  529. The time between retries is increased for each retry, and is
  530. not exhausted before :setting:`BROKER_CONNECTION_MAX_RETRIES` is
  531. exceeded.
  532. This behavior is on by default.
  533. .. setting:: BROKER_CONNECTION_MAX_RETRIES
  534. BROKER_CONNECTION_MAX_RETRIES
  535. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  536. Maximum number of retries before we give up re-establishing a connection
  537. to the AMQP broker.
  538. If this is set to :const:`0` or :const:`None`, we will retry forever.
  539. Default is 100 retries.
  540. .. setting:: BROKER_TRANSPORT_OPTIONS
  541. BROKER_TRANSPORT_OPTIONS
  542. ~~~~~~~~~~~~~~~~~~~~~~~~
  543. .. versionadded:: 2.2
  544. A dict of additional options passed to the underlying transport.
  545. See your transport user manual for supported options (if any).
  546. Example setting the visibility timeout (supported by Redis and SQS
  547. transports):
  548. .. code-block:: python
  549. BROKER_TRANSPORT_OPTIONS = {'visibility_timeout': 18000} # 5 hours
  550. .. _conf-task-execution:
  551. Task execution settings
  552. -----------------------
  553. .. setting:: CELERY_ALWAYS_EAGER
  554. CELERY_ALWAYS_EAGER
  555. ~~~~~~~~~~~~~~~~~~~
  556. If this is :const:`True`, all tasks will be executed locally by blocking until
  557. the task returns. ``apply_async()`` and ``Task.delay()`` will return
  558. an :class:`~celery.result.EagerResult` instance, which emulates the API
  559. and behavior of :class:`~celery.result.AsyncResult`, except the result
  560. is already evaluated.
  561. That is, tasks will be executed locally instead of being sent to
  562. the queue.
  563. .. setting:: CELERY_EAGER_PROPAGATES_EXCEPTIONS
  564. CELERY_EAGER_PROPAGATES_EXCEPTIONS
  565. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  566. If this is :const:`True`, eagerly executed tasks (applied by `task.apply()`,
  567. or when the :setting:`CELERY_ALWAYS_EAGER` setting is enabled), will
  568. propagate exceptions.
  569. It's the same as always running ``apply()`` with ``throw=True``.
  570. .. setting:: CELERY_IGNORE_RESULT
  571. CELERY_IGNORE_RESULT
  572. ~~~~~~~~~~~~~~~~~~~~
  573. Whether to store the task return values or not (tombstones).
  574. If you still want to store errors, just not successful return values,
  575. you can set :setting:`CELERY_STORE_ERRORS_EVEN_IF_IGNORED`.
  576. .. setting:: CELERY_MESSAGE_COMPRESSION
  577. CELERY_MESSAGE_COMPRESSION
  578. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  579. Default compression used for task messages.
  580. Can be ``"gzip"``, ``"bzip2"`` (if available), or any custom
  581. compression schemes registered in the Kombu compression registry.
  582. The default is to send uncompressed messages.
  583. .. setting:: CELERY_TASK_RESULT_EXPIRES
  584. CELERY_TASK_RESULT_EXPIRES
  585. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  586. Time (in seconds, or a :class:`~datetime.timedelta` object) for when after
  587. stored task tombstones will be deleted.
  588. A built-in periodic task will delete the results after this time
  589. (:class:`celery.task.backend_cleanup`).
  590. Default is to expire after 1 day.
  591. .. note::
  592. For the moment this only works with the amqp, database, cache, redis and MongoDB
  593. backends.
  594. When using the database or MongoDB backends, `celerybeat` must be
  595. running for the results to be expired.
  596. .. setting:: CELERY_MAX_CACHED_RESULTS
  597. CELERY_MAX_CACHED_RESULTS
  598. ~~~~~~~~~~~~~~~~~~~~~~~~~
  599. Result backends caches ready results used by the client.
  600. This is the total number of results to cache before older results are evicted.
  601. The default is 5000.
  602. .. setting:: CELERY_TRACK_STARTED
  603. CELERY_TRACK_STARTED
  604. ~~~~~~~~~~~~~~~~~~~~
  605. If :const:`True` the task will report its status as "started" when the
  606. task is executed by a worker. The default value is :const:`False` as
  607. the normal behaviour is to not report that level of granularity. Tasks
  608. are either pending, finished, or waiting to be retried. Having a "started"
  609. state can be useful for when there are long running tasks and there is a
  610. need to report which task is currently running.
  611. .. setting:: CELERY_TASK_SERIALIZER
  612. CELERY_TASK_SERIALIZER
  613. ~~~~~~~~~~~~~~~~~~~~~~
  614. A string identifying the default serialization method to use. Can be
  615. `pickle` (default), `json`, `yaml`, `msgpack` or any custom serialization
  616. methods that have been registered with :mod:`kombu.serialization.registry`.
  617. .. seealso::
  618. :ref:`calling-serializers`.
  619. .. setting:: CELERY_TASK_PUBLISH_RETRY
  620. CELERY_TASK_PUBLISH_RETRY
  621. ~~~~~~~~~~~~~~~~~~~~~~~~~
  622. .. versionadded:: 2.2
  623. Decides if publishing task messages will be retried in the case
  624. of connection loss or other connection errors.
  625. See also :setting:`CELERY_TASK_PUBLISH_RETRY_POLICY`.
  626. Enabled by default.
  627. .. setting:: CELERY_TASK_PUBLISH_RETRY_POLICY
  628. CELERY_TASK_PUBLISH_RETRY_POLICY
  629. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  630. .. versionadded:: 2.2
  631. Defines the default policy when retrying publishing a task message in
  632. the case of connection loss or other connection errors.
  633. See :ref:`calling-retry` for more information.
  634. .. setting:: CELERY_DEFAULT_RATE_LIMIT
  635. CELERY_DEFAULT_RATE_LIMIT
  636. ~~~~~~~~~~~~~~~~~~~~~~~~~
  637. The global default rate limit for tasks.
  638. This value is used for tasks that does not have a custom rate limit
  639. The default is no rate limit.
  640. .. setting:: CELERY_DISABLE_RATE_LIMITS
  641. CELERY_DISABLE_RATE_LIMITS
  642. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  643. Disable all rate limits, even if tasks has explicit rate limits set.
  644. .. setting:: CELERY_ACKS_LATE
  645. CELERY_ACKS_LATE
  646. ~~~~~~~~~~~~~~~~
  647. Late ack means the task messages will be acknowledged **after** the task
  648. has been executed, not *just before*, which is the default behavior.
  649. .. seealso::
  650. FAQ: :ref:`faq-acks_late-vs-retry`.
  651. .. _conf-celeryd:
  652. Worker: celeryd
  653. ---------------
  654. .. setting:: CELERY_IMPORTS
  655. CELERY_IMPORTS
  656. ~~~~~~~~~~~~~~
  657. A sequence of modules to import when the celery daemon starts.
  658. This is used to specify the task modules to import, but also
  659. to import signal handlers and additional remote control commands, etc.
  660. .. setting:: CELERY_INCLUDE
  661. CELERY_INCLUDE
  662. ~~~~~~~~~~~~~~
  663. Exact same semantics as :setting:`CELERY_IMPORTS`, but can be used as a means
  664. to have different import categories.
  665. .. setting:: CELERYD_FORCE_EXECV
  666. CELERYD_FORCE_EXECV
  667. ~~~~~~~~~~~~~~~~~~~
  668. On Unix the processes pool will fork, so that child processes
  669. start with the same memory as the parent process.
  670. This can cause problems as there is a known deadlock condition
  671. with pthread locking primitives when `fork()` is combined with threads.
  672. You should enable this setting if you are experiencing hangs (deadlocks),
  673. especially in combination with time limits or having a max tasks per child limit.
  674. This option will be enabled by default in a later version.
  675. This is not a problem on Windows, as it does not have `fork()`.
  676. .. setting:: CELERYD_WORKER_LOST_WAIT
  677. CELERYD_WORKER_LOST_WAIT
  678. ~~~~~~~~~~~~~~~~~~~~~~~~
  679. In some cases a worker may be killed without proper cleanup,
  680. and the worker may have published a result before terminating.
  681. This value specifies how long we wait for any missing results before
  682. raising a :exc:`@WorkerLostError` exception.
  683. Default is 10.0
  684. .. setting:: CELERYD_MAX_TASKS_PER_CHILD
  685. CELERYD_MAX_TASKS_PER_CHILD
  686. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  687. Maximum number of tasks a pool worker process can execute before
  688. it's replaced with a new one. Default is no limit.
  689. .. setting:: CELERYD_TASK_TIME_LIMIT
  690. CELERYD_TASK_TIME_LIMIT
  691. ~~~~~~~~~~~~~~~~~~~~~~~
  692. Task hard time limit in seconds. The worker processing the task will
  693. be killed and replaced with a new one when this is exceeded.
  694. .. setting:: CELERYD_TASK_SOFT_TIME_LIMIT
  695. CELERYD_TASK_SOFT_TIME_LIMIT
  696. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  697. Task soft time limit in seconds.
  698. The :exc:`~@SoftTimeLimitExceeded` exception will be
  699. raised when this is exceeded. The task can catch this to
  700. e.g. clean up before the hard time limit comes.
  701. Example:
  702. .. code-block:: python
  703. from celery.exceptions import SoftTimeLimitExceeded
  704. @celery.task
  705. def mytask():
  706. try:
  707. return do_work()
  708. except SoftTimeLimitExceeded:
  709. cleanup_in_a_hurry()
  710. .. setting:: CELERY_STORE_ERRORS_EVEN_IF_IGNORED
  711. CELERY_STORE_ERRORS_EVEN_IF_IGNORED
  712. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  713. If set, the worker stores all task errors in the result store even if
  714. :attr:`Task.ignore_result <celery.task.base.Task.ignore_result>` is on.
  715. .. setting:: CELERYD_STATE_DB
  716. CELERYD_STATE_DB
  717. ~~~~~~~~~~~~~~~~
  718. Name of the file used to stores persistent worker state (like revoked tasks).
  719. Can be a relative or absolute path, but be aware that the suffix `.db`
  720. may be appended to the file name (depending on Python version).
  721. Can also be set via the :option:`--statedb` argument to
  722. :mod:`~celery.bin.celeryd`.
  723. Not enabled by default.
  724. .. setting:: CELERYD_TIMER_PRECISION
  725. CELERYD_TIMER_PRECISION
  726. ~~~~~~~~~~~~~~~~~~~~~~~
  727. Set the maximum time in seconds that the ETA scheduler can sleep between
  728. rechecking the schedule. Default is 1 second.
  729. Setting this value to 1 second means the schedulers precision will
  730. be 1 second. If you need near millisecond precision you can set this to 0.1.
  731. .. _conf-error-mails:
  732. Error E-Mails
  733. -------------
  734. .. setting:: CELERY_SEND_TASK_ERROR_EMAILS
  735. CELERY_SEND_TASK_ERROR_EMAILS
  736. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  737. The default value for the `Task.send_error_emails` attribute, which if
  738. set to :const:`True` means errors occurring during task execution will be
  739. sent to :setting:`ADMINS` by email.
  740. Disabled by default.
  741. .. setting:: ADMINS
  742. ADMINS
  743. ~~~~~~
  744. List of `(name, email_address)` tuples for the administrators that should
  745. receive error emails.
  746. .. setting:: SERVER_EMAIL
  747. SERVER_EMAIL
  748. ~~~~~~~~~~~~
  749. The email address this worker sends emails from.
  750. Default is celery@localhost.
  751. .. setting:: EMAIL_HOST
  752. EMAIL_HOST
  753. ~~~~~~~~~~
  754. The mail server to use. Default is `"localhost"`.
  755. .. setting:: EMAIL_HOST_USER
  756. EMAIL_HOST_USER
  757. ~~~~~~~~~~~~~~~
  758. User name (if required) to log on to the mail server with.
  759. .. setting:: EMAIL_HOST_PASSWORD
  760. EMAIL_HOST_PASSWORD
  761. ~~~~~~~~~~~~~~~~~~~
  762. Password (if required) to log on to the mail server with.
  763. .. setting:: EMAIL_PORT
  764. EMAIL_PORT
  765. ~~~~~~~~~~
  766. The port the mail server is listening on. Default is `25`.
  767. .. setting:: EMAIL_USE_SSL
  768. EMAIL_USE_SSL
  769. ~~~~~~~~~~~~~
  770. Use SSL when connecting to the SMTP server. Disabled by default.
  771. .. setting:: EMAIL_USE_TLS
  772. EMAIL_USE_TLS
  773. ~~~~~~~~~~~~~
  774. Use TLS when connecting to the SMTP server. Disabled by default.
  775. .. setting:: EMAIL_TIMEOUT
  776. EMAIL_TIMEOUT
  777. ~~~~~~~~~~~~~
  778. Timeout in seconds for when we give up trying to connect
  779. to the SMTP server when sending emails.
  780. The default is 2 seconds.
  781. .. _conf-example-error-mail-config:
  782. Example E-Mail configuration
  783. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  784. This configuration enables the sending of error emails to
  785. george@vandelay.com and kramer@vandelay.com:
  786. .. code-block:: python
  787. # Enables error emails.
  788. CELERY_SEND_TASK_ERROR_EMAILS = True
  789. # Name and email addresses of recipients
  790. ADMINS = (
  791. ("George Costanza", "george@vandelay.com"),
  792. ("Cosmo Kramer", "kosmo@vandelay.com"),
  793. )
  794. # Email address used as sender (From field).
  795. SERVER_EMAIL = "no-reply@vandelay.com"
  796. # Mailserver configuration
  797. EMAIL_HOST = "mail.vandelay.com"
  798. EMAIL_PORT = 25
  799. # EMAIL_HOST_USER = "servers"
  800. # EMAIL_HOST_PASSWORD = "s3cr3t"
  801. .. _conf-events:
  802. Events
  803. ------
  804. .. setting:: CELERY_SEND_EVENTS
  805. CELERY_SEND_EVENTS
  806. ~~~~~~~~~~~~~~~~~~
  807. Send events so the worker can be monitored by tools like `celerymon`.
  808. .. setting:: CELERY_SEND_TASK_SENT_EVENT
  809. CELERY_SEND_TASK_SENT_EVENT
  810. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  811. .. versionadded:: 2.2
  812. If enabled, a :event:`task-sent` event will be sent for every task so tasks can be
  813. tracked before they are consumed by a worker.
  814. Disabled by default.
  815. .. setting:: CELERY_EVENT_SERIALIZER
  816. CELERY_EVENT_SERIALIZER
  817. ~~~~~~~~~~~~~~~~~~~~~~~
  818. Message serialization format used when sending event messages.
  819. Default is `"json"`. See :ref:`calling-serializers`.
  820. .. _conf-broadcast:
  821. Broadcast Commands
  822. ------------------
  823. .. setting:: CELERY_BROADCAST_QUEUE
  824. CELERY_BROADCAST_QUEUE
  825. ~~~~~~~~~~~~~~~~~~~~~~
  826. Name prefix for the queue used when listening for broadcast messages.
  827. The workers host name will be appended to the prefix to create the final
  828. queue name.
  829. Default is `"celeryctl"`.
  830. .. setting:: CELERY_BROADCAST_EXCHANGE
  831. CELERY_BROADCAST_EXCHANGE
  832. ~~~~~~~~~~~~~~~~~~~~~~~~~
  833. Name of the exchange used for broadcast messages.
  834. Default is `"celeryctl"`.
  835. .. setting:: CELERY_BROADCAST_EXCHANGE_TYPE
  836. CELERY_BROADCAST_EXCHANGE_TYPE
  837. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  838. Exchange type used for broadcast messages. Default is `"fanout"`.
  839. .. _conf-logging:
  840. Logging
  841. -------
  842. .. setting:: CELERYD_HIJACK_ROOT_LOGGER
  843. CELERYD_HIJACK_ROOT_LOGGER
  844. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  845. .. versionadded:: 2.2
  846. By default any previously configured logging options will be reset,
  847. because the Celery programs "hijacks" the root logger.
  848. If you want to customize your own logging then you can disable
  849. this behavior.
  850. .. note::
  851. Logging can also be customized by connecting to the
  852. :signal:`celery.signals.setup_logging` signal.
  853. .. setting:: CELERYD_LOG_COLOR
  854. CELERYD_LOG_COLOR
  855. ~~~~~~~~~~~~~~~~~
  856. Enables/disables colors in logging output by the Celery apps.
  857. By default colors are enabled if
  858. 1) the app is logging to a real terminal, and not a file.
  859. 2) the app is not running on Windows.
  860. .. setting:: CELERYD_LOG_FORMAT
  861. CELERYD_LOG_FORMAT
  862. ~~~~~~~~~~~~~~~~~~
  863. The format to use for log messages.
  864. Default is `[%(asctime)s: %(levelname)s/%(processName)s] %(message)s`
  865. See the Python :mod:`logging` module for more information about log
  866. formats.
  867. .. setting:: CELERYD_TASK_LOG_FORMAT
  868. CELERYD_TASK_LOG_FORMAT
  869. ~~~~~~~~~~~~~~~~~~~~~~~
  870. The format to use for log messages logged in tasks. Can be overridden using
  871. the :option:`--loglevel` option to :mod:`~celery.bin.celeryd`.
  872. Default is::
  873. [%(asctime)s: %(levelname)s/%(processName)s]
  874. [%(task_name)s(%(task_id)s)] %(message)s
  875. See the Python :mod:`logging` module for more information about log
  876. formats.
  877. .. setting:: CELERY_REDIRECT_STDOUTS
  878. CELERY_REDIRECT_STDOUTS
  879. ~~~~~~~~~~~~~~~~~~~~~~~
  880. If enabled `stdout` and `stderr` will be redirected
  881. to the current logger.
  882. Enabled by default.
  883. Used by :program:`celeryd` and :program:`celerybeat`.
  884. .. setting:: CELERY_REDIRECT_STDOUTS_LEVEL
  885. CELERY_REDIRECT_STDOUTS_LEVEL
  886. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  887. The log level output to `stdout` and `stderr` is logged as.
  888. Can be one of :const:`DEBUG`, :const:`INFO`, :const:`WARNING`,
  889. :const:`ERROR` or :const:`CRITICAL`.
  890. Default is :const:`WARNING`.
  891. .. _conf-security:
  892. Security
  893. --------
  894. .. setting:: CELERY_SECURITY_KEY
  895. CELERY_SECURITY_KEY
  896. ~~~~~~~~~~~~~~~~~~~
  897. .. versionadded:: 2.5
  898. The relative or absolute path to a file containing the private key
  899. used to sign messages when :ref:`message-signing` is used.
  900. .. setting:: CELERY_SECURITY_CERTIFICATE
  901. CELERY_SECURITY_CERTIFICATE
  902. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  903. .. versionadded:: 2.5
  904. The relative or absolute path to an X.509 certificate file
  905. used to sign messages when :ref:`message-signing` is used.
  906. .. setting:: CELERY_SECURITY_CERT_STORE
  907. CELERY_SECURITY_CERT_STORE
  908. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  909. .. versionadded:: 2.5
  910. The directory containing X.509 certificates used for
  911. :ref:`message-signing`. Can be a glob with wildcards,
  912. (for example :file:`/etc/certs/*.pem`).
  913. .. _conf-custom-components:
  914. Custom Component Classes (advanced)
  915. -----------------------------------
  916. .. setting:: CELERYD_BOOT_STEPS
  917. CELERYD_BOOT_STEPS
  918. ~~~~~~~~~~~~~~~~~~
  919. This setting enables you to add additional components to the worker process.
  920. It should be a list of module names with :class:`celery.abstract.Component`
  921. classes, that augments functionality in the worker.
  922. .. setting:: CELERYD_POOL
  923. CELERYD_POOL
  924. ~~~~~~~~~~~~
  925. Name of the pool class used by the worker.
  926. You can use a custom pool class name, or select one of
  927. the built-in aliases: ``processes``, ``eventlet``, ``gevent``.
  928. Default is ``processes``.
  929. .. setting:: CELERYD_POOL_RESTARTS
  930. CELERYD_POOL_RESTARTS
  931. ~~~~~~~~~~~~~~~~~~~~~
  932. If enabled the worker pool can be restarted using the
  933. :control:`pool_restart` remote control command.
  934. Disabled by default.
  935. .. setting:: CELERYD_AUTOSCALER
  936. CELERYD_AUTOSCALER
  937. ~~~~~~~~~~~~~~~~~~
  938. .. versionadded:: 2.2
  939. Name of the autoscaler class to use.
  940. Default is ``"celery.worker.autoscale.Autoscaler"``.
  941. .. setting:: CELERYD_AUTORELOADER
  942. CELERYD_AUTORELOADER
  943. ~~~~~~~~~~~~~~~~~~~~
  944. Name of the autoreloader class used by the worker to reload
  945. Python modules and files that have changed.
  946. Default is: ``"celery.worker.autoreload.Autoreloader"``.
  947. .. setting:: CELERYD_CONSUMER
  948. CELERYD_CONSUMER
  949. ~~~~~~~~~~~~~~~~
  950. Name of the consumer class used by the worker.
  951. Default is :class:`celery.worker.consumer.Consumer`
  952. .. setting:: CELERYD_MEDIATOR
  953. CELERYD_MEDIATOR
  954. ~~~~~~~~~~~~~~~~
  955. Name of the mediator class used by the worker.
  956. Default is :class:`celery.worker.controllers.Mediator`.
  957. .. setting:: CELERYD_TIMER
  958. CELERYD_TIMER
  959. ~~~~~~~~~~~~~~~~~~~~~
  960. Name of the ETA scheduler class used by the worker.
  961. Default is :class:`celery.utils.timer2.Timer`, or one overrided
  962. by the pool implementation.
  963. .. _conf-celerybeat:
  964. Periodic Task Server: celerybeat
  965. --------------------------------
  966. .. setting:: CELERYBEAT_SCHEDULE
  967. CELERYBEAT_SCHEDULE
  968. ~~~~~~~~~~~~~~~~~~~
  969. The periodic task schedule used by :mod:`~celery.bin.celerybeat`.
  970. See :ref:`beat-entries`.
  971. .. setting:: CELERYBEAT_SCHEDULER
  972. CELERYBEAT_SCHEDULER
  973. ~~~~~~~~~~~~~~~~~~~~
  974. The default scheduler class. Default is
  975. `"celery.beat.PersistentScheduler"`.
  976. Can also be set via the :option:`-S` argument to
  977. :mod:`~celery.bin.celerybeat`.
  978. .. setting:: CELERYBEAT_SCHEDULE_FILENAME
  979. CELERYBEAT_SCHEDULE_FILENAME
  980. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  981. Name of the file used by `PersistentScheduler` to store the last run times
  982. of periodic tasks. Can be a relative or absolute path, but be aware that the
  983. suffix `.db` may be appended to the file name (depending on Python version).
  984. Can also be set via the :option:`--schedule` argument to
  985. :mod:`~celery.bin.celerybeat`.
  986. .. setting:: CELERYBEAT_MAX_LOOP_INTERVAL
  987. CELERYBEAT_MAX_LOOP_INTERVAL
  988. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  989. The maximum number of seconds :mod:`~celery.bin.celerybeat` can sleep
  990. between checking the schedule.
  991. The default for this value is scheduler specific.
  992. For the default celerybeat scheduler the value is 300 (5 minutes),
  993. but for e.g. the django-celery database scheduler it is 5 seconds
  994. because the schedule may be changed externally, and so it must take
  995. changes to the schedule into account.
  996. Also when running celerybeat embedded (:option:`-B`) on Jython as a thread
  997. the max interval is overridden and set to 1 so that it's possible
  998. to shut down in a timely manner.
  999. .. _conf-celerymon:
  1000. Monitor Server: celerymon
  1001. -------------------------
  1002. .. setting:: CELERYMON_LOG_FORMAT
  1003. CELERYMON_LOG_FORMAT
  1004. ~~~~~~~~~~~~~~~~~~~~
  1005. The format to use for log messages.
  1006. Default is `[%(asctime)s: %(levelname)s/%(processName)s] %(message)s`
  1007. See the Python :mod:`logging` module for more information about log
  1008. formats.