RabbitMQ alternatives

So far I have used nameko with rabbitmq with great success. However, on a new project, one of the requirements is to use AmazonMQ (Apache ActiveMQ). Is the rabbitmq hard dependency or has anybody used other amqp implementations with nameko?

Thanks

Rafael

The Nameko AMQP extensions are only tested against RabbitMQ and rely at least in part on RabbitMQ extensions to the AMQP spec (e.g. publish-confirms).

Nameko currently uses Kombu to connect to the broker, and AMQP 1.0 is not supported there.

You can still certainly use Nameko with ActiveMQ, but it would require building custom extensions on top of an AMQP 1.0 library.

I have the same requirement. Does nameko support ActiveMQ (from AWS) ? Since the last reply was a few years ago

[update]
Look like it does not work. I just test nameko against a docker activemq. Like you said, Kombu does not support 1.0 protocol yet.

Additional question, if kombu does support 1.0, would it still not work? You mention publish-confirms