cancel
Showing results for 
Search instead for 
Did you mean: 

Magento 2.3.3 update product attributes in bulk does not work

SOLVED

Magento 2.3.3 update product attributes in bulk does not work

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

 

 

1 ACCEPTED SOLUTION

Accepted Solutions

Re: Magento 2.3.3 update product attributes in bulk does not work

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

 

Was my answer helpful? You can accept it as a solution.
175+ Professional Extensions for M1 & M2
Need a developer?Just visit Contact Us Now

View solution in original post

3 REPLIES 3

Re: Magento 2.3.3 update product attributes in bulk does not work

Hi @jesper_brejning1 

 

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"

Re: Magento 2.3.3 update product attributes in bulk does not work

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

 

Was my answer helpful? You can accept it as a solution.
175+ Professional Extensions for M1 & M2
Need a developer?Just visit Contact Us Now

Re: Magento 2.3.3 update product attributes in bulk does not work

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' ) ),