Git Product home page Git Product logo

magento2-module-mq's Introduction

Magento 2 Message Queue Module

Lightweight implementation of message queue for Magento 2 Community Edition.

Build Status Coverage Status Latest Stable Version Latest Unstable Version Total Downloads License

System requirements

This extension supports the following versions of Magento:

  • Community Edition (CE) versions 2.1.x
  • Community Edition (CE) versions 2.2.x

Installation

  1. Require the module via Composer
$ composer require renatocason/magento2-module-mq
  1. Enable the module
$ bin/magento module:enable Rcason_Mq
$ bin/magento setup:upgrade
  1. Install a message queue backend extension of your choice (see Message queue backends section)
  2. Configure your queue(s) and implement your consumer(s) (see Implementation section)
  3. Check the correct configuration of your queue(s)
$ bin/magento ce_mq:queues:list
  1. Run your consumer(s)
$ bin/magento ce_mq:consumers:start product.updates

Message queue backends

This module does not include any message queue backend implementation. You will have to chose and install one of the following modules (or implement your own) in order to get your message queues working:

  • MqMysql - Stores messages in the database
  • MqAmqp - Integrates any AMQP queue manager (i.e. RabbitMQ)
  • Amazon SQS - Integrates Amazon SQS as a queue manager (work in progress)

Implementation

A simple example can be found here.

  1. Configure queue(s) in your module's etc/m2_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="mysql"
        messageSchema="int"
        consumerInterface="Rcason\MqExample\Model\ExampleConsumer"/>
</config>
  1. Require the publisher in the classes you need it
/**
 * @param \Rcason\Mq\Api\PublisherInterface $publisher
 */
public function __construct(
    \Rcason\Mq\Api\PublisherInterface $publisher
) {
    $this->publisher = $publisher;
}
  1. Use it to queue messages
$this->publisher->publish('product.updates', $productId);
  1. Implement your consumer(s)
class ExampleConsumer implements \Rcason\Mq\Api\ConsumerInterface
{
    /**
     * {@inheritdoc}
     */
    public function process($productId)
    {
        // Your code here
    }
}

Authors, contributors and maintainers

Author:

Contributions:

License

Licensed under the Open Software License version 3.0

magento2-module-mq's People

Contributors

antoninobonumore avatar nsergo avatar renatocason avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.