Files
medusa-store/www/apps/docs/content/development/events/modules/redis.md
Leonardo Cabeza be8122bc0d Update redis.md (#6519)
Fix ioredis options url
2024-02-27 08:45:34 +00:00

3.2 KiB
Raw Blame History

description, addHowToData
description addHowToData
In this document, youll learn about the Redis events module and how you can install it in your Medusa backend. true

Redis Events Module

In this document, youll learn about the Redis events module and how you can install it in your Medusa backend.

Overview

Medusas modular architecture allows developers to extend or completely replace the logic used for events. You can create a custom module, or you can use the modules Medusa provides.

One of these modules is the Redis module. This module allows you to utilize Redis for the event bus functionality. When installed, the Medusas events system is powered by BullMQ and io-redis. BullMQ is responsible for the message queue and worker, and io-redis is the underlying Redis client that BullMQ connects to for events storage.

This document will you guide you through installing the Redis module.


Prerequisites

Medusa Backend

Its assumed you already have a Medusa backend installed. If not, you can learn how to install it by following this guide.

Redis

You must have Redis installed and configured in your Medusa backend. You can learn how to install Redis in their documentation.


Step 1: Install the Module

In the root directory of your Medusa backend, install the Redis events module with the following command:

npm install @medusajs/event-bus-redis

Step 2: Add Environment Variable

The Redis events module requires a connection URL to Redis as part of its options. If you dont already have an environment variable set for a Redis URL, make sure to add one:

EVENTS_REDIS_URL=<YOUR_REDIS_URL>

Where <YOUR_REDIS_URL> is a connection URL to your Redis instance.


Step 3: Add Configuration

In medusa-config.js, add the following to the exported object:

module.exports = {
  // ...
  modules: {
    // ...
    eventBus: {
      resolve: "@medusajs/event-bus-redis",
      options: { 
        redisUrl: process.env.EVENTS_REDIS_URL,
      },
    },
  },
}

This registers the Redis events module as the main event bus service to use. In the options, you pass redisUrl with the value being the environment variable you set. This is the only required option.

Other available options include:

  • queueName: a string indicating the name of the BullMQ queue. By default, its events-queue.
  • queueOptions: an object containing options for the BullMQ queue. You can learn about available options in BullMQs documentation. By default, its an empty object.
  • redisOptions: an object containing options for the Redis instance. You can learn about available options in io-rediss documentation. By default, its an empty object.

Step 4: Test Module

To test the module, run the following command to start the Medusa backend:

npx medusa develop

If the module was installed successfully, you should see the following message in the logs:

Connection to Redis in module 'event-bus-redis' established