index.rst 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. sqs
  16. Experimental Transports
  17. =======================
  18. .. toctree::
  19. :maxdepth: 1
  20. django
  21. .. _broker-overview:
  22. Broker Overview
  23. ===============
  24. This is comparison table of the different transports supports,
  25. more information can be found in the documentation for each
  26. individual transport (see :ref:`broker_toc`).
  27. +---------------+--------------+----------------+--------------------+
  28. | **Name** | **Status** | **Monitoring** | **Remote Control** |
  29. +---------------+--------------+----------------+--------------------+
  30. | *RabbitMQ* | Stable | Yes | Yes |
  31. +---------------+--------------+----------------+--------------------+
  32. | *Redis* | Stable | Yes | Yes |
  33. +---------------+--------------+----------------+--------------------+
  34. | *Amazon SQS* | Stable | No | No |
  35. +---------------+--------------+----------------+--------------------+
  36. | *Zookeeper* | Experimental | No | No |
  37. +---------------+--------------+----------------+--------------------+
  38. | *Django DB* | Experimental | No | No |
  39. +---------------+--------------+----------------+--------------------+
  40. Experimental brokers may be functional but they do not have
  41. dedicated maintainers.
  42. Missing monitor support means that the transport does not
  43. implement events, and as such Flower, `celery events`, `celerymon`
  44. and other event-based monitoring tools will not work.
  45. Remote control means the ability to inspect and manage workers
  46. at runtime using the `celery inspect` and `celery control` commands
  47. (and other tools using the remote control API).