Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
2a14c34
Initial support for SQS fanout via SNS.
Jul 22, 2025
df64204
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Jul 22, 2025
d4d5481
Update kombu/transport/SQS.py
auvipy Jul 23, 2025
b9cca27
Update kombu/transport/SQS.py
auvipy Jul 23, 2025
e53e0f9
Update kombu/transport/SQS.py
auvipy Jul 23, 2025
a536235
Update kombu/transport/SQS.py
auvipy Jul 23, 2025
6f71d8f
Update kombu/transport/SQS.py
auvipy Jul 23, 2025
d40590e
Update kombu/transport/SQS.py
auvipy Jul 23, 2025
313d77f
Update kombu/transport/SQS.py
auvipy Jul 23, 2025
d180c51
Update kombu/transport/SQS.py
auvipy Jul 23, 2025
26302b5
Merge branch 'main' into main
rlaunch Jul 24, 2025
81cf711
Removed unused imports. Fixed issue where producers would never delet…
Jul 24, 2025
8e40dde
Merge remote-tracking branch 'origin/main'
Jul 24, 2025
56360f7
Removed unused imports. Fixed issue where producers would never delet…
Jul 25, 2025
8bddd20
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Jul 25, 2025
da4e7a9
Fixed issue with tests where test environment boto configuration bein…
Jul 28, 2025
f82596e
Merge remote-tracking branch 'origin/main'
Jul 28, 2025
08584b3
Fixed linter issues
Jul 28, 2025
49b671c
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Jul 28, 2025
a7ea841
Reverted black formatting
Jul 29, 2025
cbdf2af
Merge remote-tracking branch 'origin/main'
Jul 29, 2025
82862a7
Reverted black formatting
Jul 29, 2025
0e64224
Updated with changes from main and fixed merge confict in SQS.py
Oct 2, 2025
9afff04
Flake8 fix
Oct 2, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ and the `Wikipedia article about AMQP`_.
.. _`Pyro`: https://pyro4.readthedocs.io/
.. _`SoftLayer MQ`: https://sldn.softlayer.com/reference/messagequeueapi
.. _`MongoDB`: https://www.mongodb.com/
.. _`AWS SNS`: https://aws.amazon.com/sns/

.. _transport-comparison:

Expand Down Expand Up @@ -102,9 +103,9 @@ Transport Comparison
.. [#f1] Declarations only kept in memory, so exchanges/queues
must be declared by all clients that needs them.

.. [#f2] Fanout supported via storing routing tables in SimpleDB.
Disabled by default, but can be enabled by using the
``supports_fanout`` transport option.
.. [#f2] Fanout is supported via `AWS SNS`_. A notification is sent to SNS, and a copy is set to all subscribed
`Amazon SQS`_ queues. Please consult the AWS SNS and SQS pricing pages to see how this will affect your usage
costs. Disabled by default, but can be enabled by using the ``supports_fanout`` transport option.

.. [#f3] AMQP Message priority support depends on broker implementation.

Expand Down
Loading
Loading