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
# Modify solrconfig.xml to remove the section that doesn't agree with your schema
47
-
sed -i.bak '/<updateRequestProcessorChain name="add-unknown-fields-to-the-schema".*/,/<\/updateRequestProcessorChain>/d' server/ibexa/template/solrconfig.xml
47
+
sed -i.bak '/<updateRequestProcessorChain name="add-unknown-fields-to-the-schema".*/,/<\/updateRequestProcessorChain>/d' server/ibexa/template/conf/solrconfig.xml
48
48
49
49
# Start Solr (but apply autocommit settings below first if you need to)
@@ -89,6 +90,8 @@ To set SolrCloud up follow [SolrCloud reference guide](https://solr.apache.org/g
89
90
90
91
### Continue Solr configuration
91
92
93
+
#### Configure commit frequency
94
+
92
95
The bundle doesn't commit Solr index changes directly on repository updates, leaving it up to you to tune this using `solrconfig.xml` as best practice suggests.
93
96
94
97
This setting is **required** if you want to see the changes after publish.
@@ -108,6 +111,38 @@ It's strongly recommended to set-up `solrconfig.xml` like this:
108
111
</autoSoftCommit>
109
112
```
110
113
114
+
#### Configure spellcheck
115
+
116
+
Configure the spellcheck component in `solrconfig.xml`:
Copy file name to clipboardExpand all lines: docs/update_and_migration/from_4.6/update_from_4.6.md
+9-7Lines changed: 9 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -378,18 +378,20 @@ Run the following scripts:
378
378
379
379
This release adds support for [Solr 9](requirements.md#search).
380
380
381
-
To update Solr within an existing [[= product_name =]] project, first refer to the [Solr 9 upgrade planning](https://solr.apache.org/guide/solr/latest/upgrade-notes/major-changes-in-solr-9.html) instruction.
381
+
To update Solr within an existing [[= product_name =]] project, first refer to the [Solr 9 upgrade planning](https://solr.apache.org/guide/solr/latest/upgrade-notes/major-changes-in-solr-9.html) instructions.
382
382
383
-
Then, perform the following additional actions:
383
+
Then, follow the [instructions for setting up Solr 9 with [[= product_name =]]](/search/search_engines/solr_search_engine/install_solr.md#configure-and-start-solr) and merge them with your custom configuration.
384
384
385
-
1. Adjust the configuration files:
385
+
Changes include:
386
386
387
-
- rename the `schema.xml` configuration file to [`managed-schema.xml`](https://solr.apache.org/guide/solr/latest/upgrade-notes/major-changes-in-solr-6.html#managed-schema-is-now-the-default)
388
-
- replace the contents of `custom-field-types.xml` [with the new content](https://github.com/ibexa/solr/blob/v4.6.22/src/lib/Resources/config/solr/custom-fields-types-solr9.xml), replacing the [removed `LatLonType` with the `LatLonPointSpatialField` field](https://solr.apache.org/guide/solr/latest/upgrade-notes/major-changes-in-solr-7.html#deprecations-and-removed-features)
387
+
1. Configuration files changes
389
388
390
-
1. Configure the [Solr version in the project](install_solr.md#configure-solr-version).
389
+
- the `schema.xml` configuration file became [`managed-schema.xml`](https://solr.apache.org/guide/solr/latest/upgrade-notes/major-changes-in-solr-6.html#managed-schema-is-now-the-default)
390
+
- the [removed `LatLonType` field is replaced by the `LatLonPointSpatialField` field](https://solr.apache.org/guide/solr/latest/upgrade-notes/major-changes-in-solr-7.html#deprecations-and-removed-features)
391
391
392
-
1. Finish the update by [refreshing the search index](reindex_search.md).
392
+
1. New [Solr version parameter](install_solr.md#configure-solr-version)
393
+
394
+
Once Solr 9 is fully configured, [refresh the search index](reindex_search.md).
393
395
394
396
[[% include 'snippets/update/notify_support.md' %]]
0 commit comments