-
Notifications
You must be signed in to change notification settings - Fork 9.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Excessive index invalidation on product category relation removal #29886
Comments
Hi @siimm. Thank you for your report.
Please make sure that the issue is reproducible on the vanilla Magento instance following Steps to reproduce. To deploy vanilla Magento instance on our environment, please, add a comment to the issue:
For more details, please, review the Magento Contributor Assistant documentation. Please, add a comment to assign the issue:
🕙 You can find the schedule on the Magento Community Calendar page. 📞 The triage of issues happens in the queue order. If you want to speed up the delivery of your contribution, please join the Community Contributions Triage session to discuss the appropriate ticket. 🎥 You can find the recording of the previous Community Contributions Triage on the Magento Youtube Channel ✏️ Feel free to post questions/proposals/feedback related to the Community Contributions Triage process to the corresponding Slack Channel |
Hi @engcom-Oscar. Thank you for working on this issue.
|
✅ Confirmed by @engcom-Oscar Issue Available: @engcom-Oscar, You will be automatically unassigned. Contributors/Maintainers can claim this issue to continue. To reclaim and continue work, reassign the ticket to yourself. |
Do you have any update for this issue ? |
Hey, Is there any updates, maybe some fixes that we can apply manually? |
@AleksandrsZascirinskis
|
@siimm Thanks, that's what I was looking for. It unbelievably annoying than when I want to rebuild an index (just one) the bunch of other indices has to be built before that. For example, when rebuilding the search index (catalogsearch_fulltext), five (5) others have to be rebuilt first (Category Products, Catalog Rule Product, Product EAV, Product Price and Catalog Product Rule). |
In M2 the indexers have their specific order, e.g. price index must be reindexed prior to fulltext index etc.
When magento invalidates indexes, it takes the order of indexes into account.
Before 2.3.5, when an index got invalidated, it looked at the next indexes that were after it and which ever were declared as dependent on current, got invalidated as well.
In 2.3.5 and greater version upon invalidation, the index looks “both-ways” the indexes that came before and after it and were dependent got invalidated.
In clean 2.3.3, catalog_category index and catalogsearch_fulltext index get invalidated when for an example a product is removed from a category.
In clean 2.3.5 and greater version also price indexer and catalogrule indexer get invalidated because of the previously described both ways lookup. (also additionally both target-rule indexers and inventory indexer can get invalidated, depending on their state - update on save or mview)
The cause of the change was some Magento's internal ticket about not finding a product on Elasticsearch: 31aebbf
On a heavy traffic webshop(1k-3k continuous concurrent users) with a lot of products (around 100k) it is not possible to allow rebuilding of such amount of indexes on each category removal from product, as for an example the fulltext index alone takes around 10 minutes to rebuild. Removing and adding products to categories is a fairly common operation on daily bases and with current codebase the webshop enters a continues reindexing and cache cleaning loop.
Preconditions (*)
Steps to reproduce (*)
Expected result (*)
Actual result (*)
Please provide Severity assessment for the Issue as Reporter. This information will help during Confirmation and Issue triage processes.
The text was updated successfully, but these errors were encountered: