Skip to content

Commit 8a7d94c

Browse files
committed
Updated Solr links to point to 9.8
1 parent b743030 commit 8a7d94c

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

docs/search/extensibility/create_custom_aggregation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ Finally, register the aggregation visitor as a service.
195195

196196
The `canVisit()` method checks whether the provided aggregation is of the supported type (in this case, your custom `PriorityRangeAggregation`).
197197

198-
The `extract()` method converts the [raw data provided by the search engine](https://solr.apache.org/guide/8_8/search-sample.html#aggregation) to a `RangeAggregationResult` object.
198+
The `extract()` method converts the [raw data provided by the search engine](https://solr.apache.org/guide/solr/9_8/query-guide/search-sample.html#aggregation) to a `RangeAggregationResult` object.
199199

200200
=== "Elasticsearch"
201201

docs/search/extensibility/solr_document_field_mappers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ An example of indexing internal data is indexing data through the location hiera
1111
You can use this to find the content with full-text search, or to simplify a search in a complicated data model.
1212

1313
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.
1515
Documents are indexed per translation, as content blocks.
1616
A block is a nested document structure.
1717
When used in [[= product_name =]], a parent document represents content, and locations are indexed as child documents of the content item.

docs/search/search_engines/solr_search_engine/install_solr.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ description: Install Solr search engine to use it with Ibexa DXP.
77
## Configure and start Solr
88

99
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).
1111

1212
### Download Solr files
1313

@@ -86,7 +86,7 @@ SolrCloud is a cluster of Solr servers. It enables you to:
8686
- automatically load balance and fail-over for queries
8787
- integrate ZooKeeper for cluster coordination and configuration
8888

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).
9090

9191
### Continue Solr configuration
9292

@@ -278,7 +278,7 @@ ibexa_solr:
278278

279279
### SolrCloud example
280280

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).
282282

283283
The example is based on multi-core setup so any specific language analysis options could be specified on the collection level.
284284

@@ -311,13 +311,13 @@ ibexa_solr:
311311
main_translations: main
312312
```
313313

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).
315315

316316
### Solr Basic HTTP Authorization
317317

318318
Solr core can be secured with Basic HTTP Authorization.
319319

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)).
321321

322322
In the example below we configured Solr Bundle to work with secured Solr core.
323323

@@ -378,6 +378,6 @@ Here are the most common issues you may encounter:
378378
- Content isn't immediately available
379379
- Solr Bundle on purpose doesn't commit changes directly on Repository updates *(on indexing)*,
380380
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).
382382
- Running out of memory during indexing
383383
- In general make sure to run indexing using the prod environment to avoid debuggers and loggers from filling up memory.

0 commit comments

Comments
 (0)