Skip to content

Commit efd5701

Browse files
committed
MAGE-1269: Change default behaviour for new full indexing feature
1 parent a57fa87 commit efd5701

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
### Features
1717

1818
- Automatic full indexing has been deprecated in 3.16 - you can now opt out of Algolia initiating full reindexing from `indexer_reindex_all_invalid`.
19-
- Added an "Indexing Manager" section within the Algolia configuration which disables automatic full reindexing by default and allows users to reactivate if needed.
19+
- Added an "Indexing Manager" section within the Algolia configuration which allows disabling automatic full reindexing with Magento indexers. **IMPORTANT: If you want to perform full reindexing, we highly suggest to turn this configuration off and run the newly created CLI commands instead.**
2020
- Added an "Indexing Manager" page which shows the created indices for main entities (products, categories and pages) and corresponding stores with a link to directly check them on the Algolia dashboard along with a form to reindex those entities directly from the Magento admin.
2121
- CLI commands are now provided to run explicit full reindex of all entities and stores.
2222
- Products and CMS pages can now be reindexed directly from Magento admin grids.

etc/adminhtml/system.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1093,9 +1093,9 @@
10931093
<label>Full indexing via Magento indexers</label>
10941094
<comment>
10951095
<![CDATA[
1096-
<p><span class="algolia-config-warning">&#9888;</span> Since version 3.16.0, the following Magento indexers are now disabled by default for <strong>full indexing</strong>.
1097-
However the extension continues to rely on them for reindexing specific entities with Magento materialized views or entity save events.</p>
1098-
<p>If you want to perform full reindexing, we highly suggest to keep this configuration as it is and run the newly created CLI commands instead.</p>
1096+
<p><span class="algolia-config-warning">&#9888;</span> Since version 3.16.0, the following Magento indexers can be disabled for <strong>full indexing</strong>.
1097+
The extension will continue to rely on them for reindexing specific entities with Magento materialized views or entity save events if you do so.</p>
1098+
<p>If you want to perform full reindexing, we highly suggest to turn this configuration off and run the newly created CLI commands instead.</p>
10991099
]]>
11001100
</comment>
11011101
<field id="products" translate="label comment" type="select" sortOrder="10" showInDefault="1" showInWebsite="0" showInStore="0">

etc/config.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -75,12 +75,12 @@
7575
<enable_pages_index>1</enable_pages_index>
7676
</algolia_indexing>
7777
<full_indexing>
78-
<products>0</products>
79-
<categories>0</categories>
80-
<pages>0</pages>
81-
<suggestions>0</suggestions>
82-
<additional_sections>0</additional_sections>
83-
<delete_products>0</delete_products>
78+
<products>1</products>
79+
<categories>1</categories>
80+
<pages>1</pages>
81+
<suggestions>1</suggestions>
82+
<additional_sections>1</additional_sections>
83+
<delete_products>1</delete_products>
8484
<queue>1</queue>
8585
</full_indexing>
8686
</algoliasearch_indexing_manager>

0 commit comments

Comments
 (0)