You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Magento_Elasticsearch8 module allows using ElasticSearch engine 8.x version for the product searching capabilities.
4
+
5
+
The module implements Magento_Search library interfaces.
6
+
7
+
## Installation details
8
+
9
+
The Magento_Elasticsearch8 module is one of the base Magento 2 modules. Disabling or uninstalling this module is not recommended.
10
+
11
+
For information about a module installation in Magento 2, see [Enable or disable modules](https://experienceleague.adobe.com/docs/commerce-operations/installation-guide/tutorials/manage-modules.html).
12
+
13
+
## Structure
14
+
15
+
`SearchAdapter/` - the directory that contains solutions for adapting ElasticSearch query searching.
16
+
17
+
For information about a typical file structure of a module in Magento 2, see [Module file structure](https://devdocs.magento.com/guides/v2.4/extension-dev-guide/build/module-file-structure.html#module-file-structure).
18
+
19
+
## Additional information
20
+
21
+
By default`indices.id_field_data` is disallowed in Elasticsearch8 hence it needs to enabled it from `elasticsearch.yml`
22
+
by adding the following configuration
23
+
`indices:
24
+
id_field_data:
25
+
enabled: true`
26
+
27
+
More information about ElasticSearch are at articles:
0 commit comments