index.rst 2.6 KB

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