sqs.rst 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. .. _broker-sqs:
  2. ==================
  3. Using Amazon SQS
  4. ==================
  5. .. _broker-sqs-installation:
  6. Installation
  7. ============
  8. For the Amazon SQS support you have to install additional dependencies.
  9. You can install both Celery and these dependencies in one go using
  10. the ``celery[sqs]`` :ref:`bundle <bundles>`:
  11. .. code-block:: console
  12. $ pip install celery[sqs]
  13. .. _broker-sqs-configuration:
  14. Configuration
  15. =============
  16. You have to specify SQS in the broker URL::
  17. broker_url = 'sqs://ABCDEFGHIJKLMNOPQRST:ZYXK7NiynGlTogH8Nj+P9nlE73sq3@'
  18. where the URL format is:
  19. .. code-block:: text
  20. sqs://aws_access_key_id:aws_secret_access_key@
  21. you must *remember to include the "@" at the end*.
  22. The login credentials can also be set using the environment variables
  23. :envvar:`AWS_ACCESS_KEY_ID` and :envvar:`AWS_SECRET_ACCESS_KEY`,
  24. in that case the broker URL may only be ``sqs://``.
  25. If you are using IAM roles on instances, you can set the BROKER_URL to:
  26. ``sqs://`` and kombu will attempt to retrieve access tokens from the instance
  27. metadata.
  28. .. note::
  29. If you specify AWS credentials in the broker URL, then please keep in mind
  30. that the secret access key may contain unsafe characters that need to be
  31. URL encoded.
  32. Options
  33. =======
  34. Region
  35. ------
  36. The default region is ``us-east-1`` but you can select another region
  37. by configuring the :setting:`broker_transport_options` setting::
  38. broker_transport_options = {'region': 'eu-west-1'}
  39. .. seealso::
  40. An overview of Amazon Web Services regions can be found here:
  41. http://aws.amazon.com/about-aws/globalinfrastructure/
  42. Visibility Timeout
  43. ------------------
  44. The visibility timeout defines the number of seconds to wait
  45. for the worker to acknowledge the task before the message is redelivered
  46. to another worker. Also see caveats below.
  47. This option is set via the :setting:`broker_transport_options` setting::
  48. broker_transport_options = {'visibility_timeout': 3600} # 1 hour.
  49. The default visibility timeout is 30 minutes.
  50. Polling Interval
  51. ----------------
  52. The polling interval decides the number of seconds to sleep between
  53. unsuccessful polls. This value can be either an int or a float.
  54. By default the value is *one second*: this means the worker will
  55. sleep for one second when there's no more messages to read.
  56. You must note that **more frequent polling is also more expensive, so increasing
  57. the polling interval can save you money**.
  58. The polling interval can be set via the :setting:`broker_transport_options`
  59. setting::
  60. broker_transport_options = {'polling_interval': 0.3}
  61. Very frequent polling intervals can cause *busy loops*, resulting in the
  62. worker using a lot of CPU time. If you need sub-millisecond precision you
  63. should consider using another transport, like `RabbitMQ <broker-amqp>`,
  64. or `Redis <broker-redis>`.
  65. Queue Prefix
  66. ------------
  67. By default Celery won't assign any prefix to the queue names,
  68. If you have other services using SQS you can configure it do so
  69. using the :setting:`broker_transport_options` setting::
  70. broker_transport_options = {'queue_name_prefix': 'celery-'}
  71. .. _sqs-caveats:
  72. Caveats
  73. =======
  74. - If a task isn't acknowledged within the ``visibility_timeout``,
  75. the task will be redelivered to another worker and executed.
  76. This causes problems with ETA/countdown/retry tasks where the
  77. time to execute exceeds the visibility timeout; in fact if that
  78. happens it will be executed again, and again in a loop.
  79. So you have to increase the visibility timeout to match
  80. the time of the longest ETA you're planning to use.
  81. Note that Celery will redeliver messages at worker shutdown,
  82. so having a long visibility timeout will only delay the redelivery
  83. of 'lost' tasks in the event of a power failure or forcefully terminated
  84. workers.
  85. Periodic tasks won't be affected by the visibility timeout,
  86. as it is a concept separate from ETA/countdown.
  87. The maximum visibility timeout supported by AWS as of this writing
  88. is 12 hours (43200 seconds)::
  89. broker_transport_options = {'visibility_timeout': 43200}
  90. - SQS doesn't yet support worker remote control commands.
  91. - SQS doesn't yet support events, and so cannot be used with
  92. :program:`celery events`, :program:`celerymon`, or the Django Admin
  93. monitor.
  94. .. _sqs-results-configuration:
  95. Results
  96. -------
  97. Multiple products in the Amazon Web Services family could be a good candidate
  98. to store or publish results with, but there's no such result backend included
  99. at this point.
  100. .. warning::
  101. Don't use the ``amqp`` result backend with SQS.
  102. It will create one queue for every task, and the queues will
  103. not be collected. This could cost you money that would be better
  104. spent contributing an AWS result store backend back to Celery :)