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
Copy file name to clipboardExpand all lines: doc/01_Installation/02_Upgrade.md
+16Lines changed: 16 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,22 @@
2
2
3
3
Following steps are necessary during updating to newer versions.
4
4
5
+
## Upgrade to 1.3.0
6
+
-[Indexing] Added support for Elasticsearch in parallel to Opensearch. Opensearch remains the default search technology. If you are using Elasticsearch, you need to update your symfony configuration as follows:
7
+
```yml
8
+
pimcore_generic_data_index:
9
+
index_service:
10
+
client_params:
11
+
client_name: default
12
+
client_type: 'elasticsearch'
13
+
```
14
+
- [Indexing] Introduced new service alias `generic-data-index.search-client`. This will replace deprecated alias `generic-data-index.opensearch-client` which will be removed in the next major version.
15
+
The new service alias can be used to inject the search client into your services. This search client is an instance of `Pimcore\SearchClient\SearchClientInterface` which is a common interface for OpenSearch and Elasticsearch clients.
16
+
- Classes under OpenSearch namespaces are now deprecated and will be removed in the next major version. Please use the classes under the DefaultSearch namespace instead.
17
+
- Execute the following command to reindex all elements to be able to use all new features or when switching between OpenSearch and Elasticsearch:
18
+
19
+
```bin/console generic-data-index:update:index```
20
+
5
21
## Upgrade to 1.1.0
6
22
- Execute the following command to reindex all elements to be able to use all new features:
0 commit comments