human-element / module-advanced-message-queue-options
Module that allows advanced configuration of the message queue system
Installs: 12 335
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 4
Forks: 0
Open Issues: 0
Requires
- php: >=7.0.0
This package is auto-updated.
Last update: 2025-05-10 22:12:25 UTC
README
This module adds the ability to set a directory for the message queue consumers PIDs under the var directory.
That way you can share that directory and not loose track of the PIDs between deployments
It also gives you a CLI command to create an updated poison pill version.
This allows you to choose at the end of a deployment to have Magento restart the consumers
It is also recommended to install a patch to get the consumers_wait_for_messages feature that way even when there is no messages to process between deployments and thus your poison pill won't kill the process you will know a new process with your new deployment directory will be started.
Installation
composer require human-element/module-advanced-message-queue-options
php bin/magento module:enable HumanElement_AdvancedMessageQueueOptions
php bin/magento setup:upgrade
Changing Consumer PIDs to a directory
You can change to use a directory under var for your message consumer PIDs using the following option in your env.php
return array (
'cron_consumers_runner' => array(
'pid_dir' => 'mqpid'
)
);
This will put the message queue PIDs into var/mqpid instead of the root of var
This will put a new poison pill version into the database causing all the consumers to restart the process on the next message
php bin/magento he:queue:consumers:poison
Recommended Patch
composer patches json config:
{
"patches": {
"magento/framework-message-queue": {
"Adds message queue option consumers_wait_for_messages from https://github.com/magento/magento2/commit/4e960c31bf345f59a4eccc16832a3a737d4ce8b8 ": "patches/composer/message-consumer-wait-for-messages-option.patch"
}
}
}
Patch Usage
This adds the consumers_wait_for_messages option to set in your env.php
return array (
'queue' => array(
'consumers_wait_for_messages' => false
)
);
This option fixes consumers causing issues with running to long, but it also causes annother issue where unnecessary memory is being used to spawn processes that kill themselfs every minute: https://github.com/magento/architecture/pull/232/files Fixes one problem and causes another, least for now, the above proposal is a detect if there is messages and only spawn consumers when they exists option.
Related Issues
magento/community-features#181
https://github.com/magento/magento2/commit/4e960c31bf345f59a4eccc16832a3a737d4ce8b8