We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In the current version of ElasticSuite, all child products are added to Indices data. I believe it is done here:
ElasticSuite
vendor/smile/elasticsuite/src/module-elasticsuite-catalog/Model/Product/Indexer/Fulltext/Datasource/AttributeData.php
in this section
$relationsByChildId = $this->resourceModel->loadChildrens($productIds, $storeId);
I've created a randomized catalog using my module: https://github.com/qoliber/m2-catalog-generator
I've created 50 configurable product with 5 attributes, 5 options each, generating 3125 child options for configurable product. Basically creating ~160k simple products.
3125
With this number of options for products, CatalogSearch Index time is increasing with each configurable product, drastically.
Catalog Search index has been rebuilt successfully in 00:53:01
I understand why child products are indexed, but if they are not visible, they should be skipped form indexing.
But my general questions is: should be be indexed if they prolong the indexing process?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In the current version of
ElasticSuite
, all child products are added to Indices data.I believe it is done here:
in this section
I've created a randomized catalog using my module:
https://github.com/qoliber/m2-catalog-generator
I've created 50 configurable product with 5 attributes, 5 options each, generating
3125
child options for configurable product.Basically creating ~160k simple products.
With this number of options for products, CatalogSearch Index time is increasing with each configurable product, drastically.
Catalog Search index has been rebuilt successfully in 00:53:01
I understand why child products are indexed, but if they are not visible, they should be skipped form indexing.
But my general questions is: should be be indexed if they prolong the indexing process?
The text was updated successfully, but these errors were encountered: