Skip to content

Assign/remove source from a product triggers cache clearance request for all grouped prdoucts #3403

Open
@adarshkhatri

Description

@adarshkhatri

Preconditions (*)

  1. magento/module-inventory-cache
  2. Magento 2.4.7-p2

What is happening?

MSI has this function in place as around method. Which gets the product IDs from inventory_stock_ID table before and after.
Pay attention to around method here.

public function aroundExecuteList(Sync $subject, callable $proceed, array $stockIds)

Then, it also has this function as after method to index grouped products, which happens after the above function (around) runs, meaning at this time, the system has already sent all the grouped product IDs to clear the cache.

Explanation

    public function aroundExecuteList(Sync $subject, callable $proceed, array $stockIds)
    {
        $beforeReindexProductIds = $this->getProductIdsByStockIds->execute($stockIds); 
        //finds 500 products, at this point there are grouped products because after plugin would have run earlier and had added grouped products

        $proceed($stockIds);

        $afterReindexProductIds = $this->getProductIdsByStockIds->execute($stockIds); 
        //finds 299 products, at this stage after plugin hasn't run yet, as it is around method

        $productIdsForCacheClean = array_diff($beforeReindexProductIds, $afterReindexProductIds); 
        //diff is 201 -- grouped products (200) and 1 product that actually being reindexed for

        if ($productIdsForCacheClean) {
            $this->flushCacheByProductIds->execute($productIdsForCacheClean); 
            //201 grouped products (200) are sent to clear the cache
        }
    }

What this means?

If I have 200 grouped products in my system, every time a single product's (not related to grouped whatsoever) sources deleted/added, then it will send the cache clear request for this product PLUS that 200 grouped products.

Steps to reproduce (*)

  1. Make sure you have some grouped products
  2. Run bin/magento indexer:reindex inventory

Expected result (*)

  1. The system should only send impacted products to clear the cache

Actual result (*)

  1. The system sends all the grouped products to clear the cache every time it is indexing.

Proposed solution:

#3402

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    Status

    Ready for Grooming

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions