Shopware uses the Symfony Messenger component and Enqueue to handle asynchronous messages. This allows tasks to be processed in the background. Thus, tasks can be processed independently of timeouts or system crashes. By default, tasks in Shopware are stored in the database and processed via the browser, as long as you are logged into the administration. This is a simple and fast method for the development process, but not recommended for production systems. With multiple users logged into the administration, this can lead to high CPU load and interfere with the smooth execution of PHP FPM.
On a productive system, the message queue should be processed via the CLI instead of the browser in the administration (Admin worker). This way, tasks are also completed when no one is logged into the administration and high CPU load due to multiple users in the admin is also avoided. Furthermore you can change the transport to another system like RabbitMQ for example. This would on the one hand relieve the database and on the other hand use a much more specialized service for handling message queues. The following are examples of the steps needed.
It's recommended to run one or more messenger:consume
-workers. To automatically start the processes again after they stopped because of exceeding the given limits you can use a process control system like systemd or supervisor.
Alternatively you can configure a cron job that runs the command periodically. Please note: Using cron jobs won't take care of maximum running worker, like supervisor can do. They don't wait for another worker to stop. So there is a risk starting an unwanted amount of workers when you have messages running longer than the set time-limit. If the time-limit has been exceeded worker will wait for the current message being finished.
Find here the docs of Symfony: https://symfony.com/doc/current/messenger.html#deploying-to-production
{% hint style="info" %} It is recommended to use a third party message queue to support multiple consumers and / or a greater amount of data to index. {% endhint %}
The recommended method for consuming messages is using the cli worker.
You can configure the command just to run a certain amount of time and to stop if it exceeds a certain memory limit like:
bin/console messenger:consume default --time-limit=60 --memory-limit=128M
For more information about the command and its configuration use the -h option:
bin/console messenger:consume -h
If you have configured the cli-worker, you should turn off the admin worker in the shopware configuration file, therefore create or edit the configuration shopware.yaml
.
# config/packages/shopware.yaml
shopware:
admin_worker:
enable_admin_worker: false
The admin-worker, if used, can be configured in the general shopware.yml
configuration. If you want to use the admin worker you have to specify each transport, that previously was configured. The poll interval is the time in seconds that the admin-worker polls messages from the queue. After the poll-interval is over the request terminates and the administration initiates a new request.
# config/packages/shopware.yaml
shopware:
admin_worker:
enable_admin_worker: true
poll_interval: 30
transports: ["default"]
We assume the services to be called shopware_consumer
.
Create a new file /etc/systemd/system/shopware_consumer@.service
[Unit]
Description=Shopware Message Queue Consumer, instance %i
PartOf=shopware_consumer.target
[Service]
Type=simple
User=www-data # Change this to webservers user name
Restart=always
# Change the path to your shop path
WorkingDirectory=/var/www/html
ExecStart=php /var/www/html/bin/console messenger:consume --time-limit=60 --memory-limit=512M
[Install]
WantedBy=shopware_consumer.target
Create a new file /etc/systemd/system/shopware_consumer.target
[Install]
WantedBy=multi-user.target
[Unit]
Description=shopware_consumer service
Enable multiple instances. Example for three instances:
systemctl enable shopware_consumer@{1..3}.service
Enable the dummy target:
systemctl enable shopware_consumer.target
At the end start the services:
systemctl start shopware_consumer.target
Please refer to the Symfony documentation for the setup.
By default Shopware sends the mails synchronously. Since this can affect the page speed, you can switch it to use the Message Queue with a small configuration change.
# config/packages/framework.yaml
framework:
mailer:
message_bus: 'messenger.default_bus'
In this example we replace the standard transport, which stores the messages in the database, with RabbitMQ. Of course, other transports can be used as well. A detailed documentation of the parameters and possibilities can be found in the symfony documentation. In the following I assume that RabbitMQ is installed and started. Furthermore, a queue, here called messages
, should be created inside RabbitMQ. The only thing left is to tell Shopware about the new transport. Therefore we edit/create the configuration file framework.yaml
with the following content:
# config/packages/framework.yaml
framework:
messenger:
transports:
default:
dsn: "amqp://localhost:5672/%2f/messages"
{% hint style="info" %} The system needs the AMQP php extension {% endhint %}
In the following I assume that Redis is installed and started. To use the Symfony Messenger Redis Transport configure like below:
# config/packages/framework.yaml
parameters:
env(MESSENGER_CONSUMER_NAME): 'consumer'
framework:
messenger:
transports:
default:
dsn: "redis://redis:port/messages/symfony/%env(MESSENGER_CONSUMER_NAME)%?delete_after_ack=true&delete_after_reject=true&dbindex=0"
{% hint style="info" %}
As Shopware handles failed messages on it's own, we can enable deleting of failed or acknowledged messages. When running more than one consumer, env MESSENGER_CONSUMER_NAME needs to be set. F.e. in Supervisor with environment=MESSENGER_CONSUMER_NAME=%(program_name)s_%(process_num)02d
.
{% endhint %}