AMQP message queue backend implementation for Rcason_Mq.
- Require the module via Composer
$ composer require renatocason/magento2-module-mq-amqp
- Enable the module
$ bin/magento module:enable Rcason_MqAmqp
$ bin/magento setup:upgrade
- Configure the Mq module as explained here
- Configure the AMQP connection in your app/etc/env.php file
'ce_mq' => [
'amqp' => [
'host' => 'localhost',
'port' => 5672,
'username' => 'guest',
'password' => 'guest',
'virtualhost' => '/',
],
],
- Specify amqp as broker when configuring a queue in your module's etc/ce_mq.xml file
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Rcason_Mq:etc/ce_mq.xsd">
<ceQueue name="product.updates" broker="amqp"
messageSchema="int"
consumerInterface="Rcason\MqExample\Model\ExampleConsumer"/>
</config>
- Run the setup upgrade command each time you edit your queues configuration, as they are applied to the queue manager on a recurring upgrade script
$ bin/magento setup:upgrade
Author:
Licensed under the Open Software License version 3.0