Skip to main content

Questions tagged [mview]

0 votes
0 answers
41 views

I’m trying to troubleshoot a module whose mview has a subscription on the table cataloginventory_stock_status to reindex products as soon as their stock change. I use Magento 2.4.6 with MSI and stock ...
bfontaine's user avatar
  • 124
0 votes
2 answers
437 views

After upgrade magento 2.4.3-p1 to magento 2.4.7-p1, the issue is occured after run the command php magento/bin setup:upgrade. Issue: Cannot instantiate interface Magento\Framework\Mview\View\...
Sagar Gaikwad's user avatar
1 vote
1 answer
435 views

I have line of code which schedule full or partial reindex cron job. using Trigger::REINDEX_SCOPE_PARTIAL and Trigger::REINDEX_SCOPE_FULL parameter. public function restoreIndexers($reindex = false, ...
Charlie's user avatar
  • 3,156
6 votes
2 answers
4k views

This is a 2 part question. Main question: How risky is to delete the records from the *_cl tables (cataloginventory_stock_cl, catalog_product_attribute_cl, ...) where the version_id field is lower ...
Marius's user avatar
  • 199k
2 votes
1 answer
2k views

I've disabled the Magento_Bundle module because I don't need it. But now when I try to set the catalogsearch_fulltext index to schedule via cli: php bin/magento indexer:set-mode schedule ...
Marius's user avatar
  • 199k
42 votes
4 answers
26k views

First of all what I know : Index management is useful for increasing store performance. EAV has one disadvantage.it will store data in different tables. So that retrieving data is time-consuming. So ...
Sivakumar K's user avatar
  • 2,023
7 votes
2 answers
4k views

I'm trying to create a custom indexer on Magento2. I defined a mview.xml and one indexer.xml as follows: indexer.xml: <?xml version="1.0" encoding="UTF-8"?> <config xmlns:xsi="http://www....
Phoenix128_RiccardoT's user avatar