cancel
Showing results for 
Search instead for 
Did you mean: 

M2.4.5 Bulk update attributes not working

SOLVED

M2.4.5 Bulk update attributes not working

In my Magento 2.4.5 open source store, bulk update attributes are not working. Cron is running, and it appears everything else is running fine. Emails are being sent out for example.

I have this code in app/etc/env.php:

    'cron_consumers_runner' => [
        'cron_run' => true,
        'max_messages' => 10000,
        'consumers' => [
        ]
    ],

and

    'queue' => [
        'consumers_wait_for_messages' => 0
    ]
];

We are not running rabbitmq as our hosting (Cloudways) only supports it on a premium support package.

Can anyone advise how to get this running again?

Thanks!

1 ACCEPTED SOLUTION

Accepted Solutions

Re: M2.4.5 Bulk update attributes not working

Hi @GTLTD ,

 

Please do like below

 

'cron_consumers_runner' => [
'cron_run' => true,
'max_messages' => 10000,
'consumers' => [
product_action_attribute.update,
product_action_attribute.website.update,
exportProcessor,
media.storage.catalog.image.resize,
matchCustomerSegmentProcessor,
codegeneratorProcessor,
sales.rule.update.coupon.usage,
sales.rule.quote.trigger.recollect,
product_alert,
staging.synchronize_entity_period,
negotiableQuotePriceUpdate,
sharedCatalogUpdatePrice,
sharedCatalogUpdateCategoryPermissions,
inventory.source.items.cleanup,
inventory.mass.update,
inventory.reservations.cleanup,
inventory.reservations.update,
inventory.reservations.updateSalabilityStatus,
inventory.indexer.sourceItem,
inventory.indexer.stock,
media.content.synchronization,
media.gallery.renditions.update,
media.gallery.synchronization,
placeOrderProcessor,
purchaseorder.toorder,
purchaseorder.transactional.email,
purchaseorder.validation,
quoteItemCleaner,
inventoryQtyCounter,
async.operations.all
]
],

 

Problem Solved? Accept as Solution!

 

Hope it helps!

Thanks

Ankit Jasani

View solution in original post

1 REPLY 1

Re: M2.4.5 Bulk update attributes not working

Hi @GTLTD ,

 

Please do like below

 

'cron_consumers_runner' => [
'cron_run' => true,
'max_messages' => 10000,
'consumers' => [
product_action_attribute.update,
product_action_attribute.website.update,
exportProcessor,
media.storage.catalog.image.resize,
matchCustomerSegmentProcessor,
codegeneratorProcessor,
sales.rule.update.coupon.usage,
sales.rule.quote.trigger.recollect,
product_alert,
staging.synchronize_entity_period,
negotiableQuotePriceUpdate,
sharedCatalogUpdatePrice,
sharedCatalogUpdateCategoryPermissions,
inventory.source.items.cleanup,
inventory.mass.update,
inventory.reservations.cleanup,
inventory.reservations.update,
inventory.reservations.updateSalabilityStatus,
inventory.indexer.sourceItem,
inventory.indexer.stock,
media.content.synchronization,
media.gallery.renditions.update,
media.gallery.synchronization,
placeOrderProcessor,
purchaseorder.toorder,
purchaseorder.transactional.email,
purchaseorder.validation,
quoteItemCleaner,
inventoryQtyCounter,
async.operations.all
]
],

 

Problem Solved? Accept as Solution!

 

Hope it helps!

Thanks

Ankit Jasani