index.rst 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. .. _brokers:
  2. =====================
  3. Brokers
  4. =====================
  5. :Release: |version|
  6. :Date: |today|
  7. Celery supports several message transport alternatives.
  8. .. _broker_toc:
  9. Broker Instructions
  10. ===================
  11. .. toctree::
  12. :maxdepth: 1
  13. rabbitmq
  14. redis
  15. Experimental Transports
  16. =======================
  17. .. toctree::
  18. :maxdepth: 1
  19. sqlalchemy
  20. django
  21. sqs
  22. couchdb
  23. .. _broker-overview:
  24. Broker Overview
  25. ===============
  26. This is comparison table of the different transports supports,
  27. more information can be found in the documentation for each
  28. individual transport (see :ref:`broker_toc`).
  29. +---------------+--------------+----------------+--------------------+
  30. | **Name** | **Status** | **Monitoring** | **Remote Control** |
  31. +---------------+--------------+----------------+--------------------+
  32. | *RabbitMQ* | Stable | Yes | Yes |
  33. +---------------+--------------+----------------+--------------------+
  34. | *Redis* | Stable | Yes | Yes |
  35. +---------------+--------------+----------------+--------------------+
  36. | *Amazon SQS* | Experimental | No | No |
  37. +---------------+--------------+----------------+--------------------+
  38. | *Couch DB* | Experimental | No | No |
  39. +---------------+--------------+----------------+--------------------+
  40. | *Zookeeper* | Experimental | No | No |
  41. +---------------+--------------+----------------+--------------------+
  42. | *Django DB* | Experimental | No | No |
  43. +---------------+--------------+----------------+--------------------+
  44. | *Iron MQ* | third-party | No | No |
  45. +---------------+--------------+----------------+--------------------+
  46. Experimental brokers may be functional but they do not have
  47. dedicated maintainers.
  48. Missing monitor support means that the transport does not
  49. implement events, and as such Flower, `celery events`, `celerymon`
  50. and other event-based monitoring tools will not work.
  51. Remote control means the ability to inspect and manage workers
  52. at runtime using the `celery inspect` and `celery control` commands
  53. (and other tools using the remote control API).