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: docs/search/extensibility/solr_document_field_mappers.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ An example of indexing internal data is indexing data through the location hiera
11
11
You can use this to find the content with full-text search, or to simplify a search in a complicated data model.
12
12
13
13
To do this effectively, you must understand how the data is indexed with the Solr search engine.
14
-
Solr uses [documents](https://solr.apache.org/guide/7_7/overview-of-documents-fields-and-schema-design.html#how-solr-sees-the-world) as a unit of data that is indexed.
14
+
Solr uses [documents](https://solr.apache.org/guide/solr/9_8/getting-started/documents-fields-schema-design.html#how-solr-sees-the-world) as a unit of data that is indexed.
15
15
Documents are indexed per translation, as content blocks.
16
16
A block is a nested document structure.
17
17
When used in [[= product_name =]], a parent document represents content, and locations are indexed as child documents of the content item.
Copy file name to clipboardExpand all lines: docs/search/search_engines/solr_search_engine/install_solr.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ description: Install Solr search engine to use it with Ibexa DXP.
7
7
## Configure and start Solr
8
8
9
9
The example presents a configuration with a single core.
10
-
For configuring Solr in other ways, including examples, see [Solr Cores and `solr.xml`](https://solr.apache.org/guide/7_7/solr-cores-and-solr-xml.html) and [core administration](https://cwiki.apache.org/confluence/spaces/SOLR/pages/120722785/CoreAdmin).
10
+
For configuring Solr in other ways, including examples, see [Solr configuration files](https://solr.apache.org/guide/solr/9_8/configuration-guide/configuration-files.html) and [core discovery](https://solr.apache.org/guide/solr/9_8/configuration-guide/core-discovery.html).
11
11
12
12
### Download Solr files
13
13
@@ -86,7 +86,7 @@ SolrCloud is a cluster of Solr servers. It enables you to:
86
86
- automatically load balance and fail-over for queries
87
87
- integrate ZooKeeper for cluster coordination and configuration
88
88
89
-
To set SolrCloud up follow [SolrCloud reference guide](https://solr.apache.org/guide/7_7/solrcloud.html).
89
+
To set SolrCloud up follow [Getting Started with SolrCloud](https://solr.apache.org/guide/solr/9_8/getting-started/tutorial-solrcloud.html).
90
90
91
91
### Continue Solr configuration
92
92
@@ -278,7 +278,7 @@ ibexa_solr:
278
278
279
279
### SolrCloud example
280
280
281
-
To use SolrCloud you need to specify data distribution strategy for connection via the `distribution_strategy` option to [`cloud`](https://solr.apache.org/guide/7_7/solrcloud.html).
281
+
To use SolrCloud you need to specify data distribution strategy for connection via the `distribution_strategy` option to [`cloud`](https://solr.apache.org/guide/solr/9_8/getting-started/tutorial-solrcloud.html).
282
282
283
283
The example is based on multi-core setup so any specific language analysis options could be specified on the collection level.
284
284
@@ -311,13 +311,13 @@ ibexa_solr:
311
311
main_translations: main
312
312
```
313
313
314
-
This solution uses the default SolrCloud [document routing strategy: `compositeId`](https://solr.apache.org/guide/7_7/shards-and-indexing-data-in-solrcloud.html#document-routing).
314
+
This solution uses the default SolrCloud [document routing strategy: `compositeId`](https://solr.apache.org/guide/solr/9_8/deployment-guide/solrcloud-shards-indexing.html#document-routing).
315
315
316
316
### Solr Basic HTTP Authorization
317
317
318
318
Solr core can be secured with Basic HTTP Authorization.
319
319
320
-
For more information, see [Solr Basic Authentication Plugin](https://solr.apache.org/guide/7_7/basic-authentication-plugin.html).
320
+
For more information, see [Solr Basic Authentication Plugin](https://solr.apache.org/guide/solr/9_8/deployment-guide/basic-authentication-plugin.html)).
321
321
322
322
In the example below we configured Solr Bundle to work with secured Solr core.
323
323
@@ -378,6 +378,6 @@ Here are the most common issues you may encounter:
378
378
- Content isn't immediately available
379
379
- Solr Bundle on purpose doesn't commit changes directly on Repository updates *(on indexing)*,
380
380
but lets you control this using Solr configuration. Adjust Solr's `autoSoftCommit` (visibility of changes to search index) and/or `autoCommit` (hard commit, for durability and replication)
381
-
to balance performance and load on your Solr instance against needs you have for "[NRT](https://solr.apache.org/guide/7_7/near-real-time-searching.html)".
381
+
to balance performance and load on your Solr instance against needs you have for [Near Real Time (NRT) searching)](https://solr.apache.org/guide/solr/9_8/deployment-guide/solrcloud-distributed-requests.html#near-real-time-nrt-use-cases).
382
382
- Running out of memory during indexing
383
383
- In general make sure to run indexing using the prod environment to avoid debuggers and loggers from filling up memory.
0 commit comments