Hi,
When I try to update attributes for a group of products from product grid I get a message saying "Message is added to queue", but the attributes are not updated - nothing happens.
How can I solve this issues to I can mass update attributes on products?
Best regards,
Jesper Brejning
Solved! Go to Solution.
Hello @jesper_brejning1
There was a similar issue with product export, we have one Github issue raised based on it,
https://github.com/magento/magento2/issues/23450
https://github.com/magento/magento2/issues/23450#issuecomment-520134243
Check hostep's answer clicking on the above link to get more idea about "Message is added to queue"
Also, I have attached Magento dev docs link for these commands help.
https://devdocs.magento.com/guides/v2.3/reference/cli/magento.html#queueconsumerslist
Have you done re-indexing after this process?
If you have not done then please run "php bin/magento indexer:reindex" from your magento root.
Thanks
---
If you've found my answer useful, please give"Kudos" and "Accept as Solution"
Hello @jesper_brejning1
There was a similar issue with product export, we have one Github issue raised based on it,
https://github.com/magento/magento2/issues/23450
https://github.com/magento/magento2/issues/23450#issuecomment-520134243
Check hostep's answer clicking on the above link to get more idea about "Message is added to queue"
Also, I have attached Magento dev docs link for these commands help.
https://devdocs.magento.com/guides/v2.3/reference/cli/magento.html#queueconsumerslist
Thank you for your help
This solution solved our issue with bulk update: https://github.com/magento/magento2/issues/23450
'cron_consumers_runner' => array( 'cron_run' => true, 'max_messages' => 20000, 'consumers' => array( 'product_action_attribute.update', 'product_action_attribute.website.update', 'exportProcessor', 'codegeneratorProcessor', 'async.operations.all' ) ),