- ๐ฉ๐ฐDenmark ressa Copenhagen
Setup
- Solr version: 8.11.2
- Drupal Core version: 10.0.9
- Search API version: 1.29.0
- Search API Solr version: 4.2.10
- Configured Solr Connector: Solr Cloud with Basic Auth
Thanks for reporting @Defcon0 and @mkalkbrenner for fixing it.
I can confirm that the Search API Highlight processor and the "Search: Excerpt" field it makes available in Views in Solr-based indexes works well.
But it's important to take care to configure it correctly, otherwise you'll get a performance hit. I am so glad I found this issue. I have been trying to store and retrieve data in Solr, based on the great tips on @drunken monkey's Create a search view that doesnโt load entities from the database โ and Karim Boudjema's elaborate explanation in "3. Solr as backend for Views" from Solr in Drupal 8/9: a real live example (SFDUG, Oct 2020, starts at 31:37) but couldn't get the response time really low ...
Reading this issue and experimenting with the Highlight processor settings I managed to get it pretty low. Here are some benchmarks with 7000 nodes, searching for two words which returns 515 nodes:
-
With the default values for Highlight processor
"Highlight returned field data" > "Always"
"Exclude fields from excerpt" > No fields selectedQuery build time 1.43 ms Query execute time 611.09 ms View render time 1240.25 ms
-
Setting Highlight processor
2.1 "Highlight returned field data" > Change from "Always" to "If the server returns fields"
Query build time 1.29 ms Query execute time 306.15 ms View render time 634.63 ms
2.2 Select all irrelevant fields under "Exclude fields from excerpt"
Selecting all fields, except the relevant field makes a big difference.Query build time 1.27 ms Query execute time 310.67 ms View render time 649.05 ms
-
With both "Highlight returned field data" and "Exclude fields from excerpt" correctly configured
Query build time 1.02 ms Query execute time 21.25 ms View render time 85.21 ms
It seems to me like these two changes in settings make no difference in performance, even though they are recommended many places:
- Enabling "Link this field to its item" for a Title field under "Fields"
- Enabling "Skip item access checks" under Other > Query settings: Settings
Maybe if you have 100'000's of nodes it makes a difference?
Automatically closed - issue fixed for 2 weeks with no activity.
- Status changed to Fixed
7 months ago 4:24pm 28 August 2024 - ๐บ๐ธUnited States j-barnes
@Defcon0 - I'm running into the same issue where my times went up significantly after enabling the Highlight processor (with Retrieve result data from Solr" and "Retrieve highlighted snippets" enabled).
Query build time 49.77 ms Query execute time 130.9 ms View render time 229.75 ms
to
Query build time 53.55 ms Query execute time 1988.97 ms View render time 2075.75 ms
After troubleshooting a bit, I noticed that field / excerpt were not available when the field was not explicitly added to the view. After adding my rendered_html field to the view (hidden), my times were near instant again. (Originally I just had Search: Excerpt and would select my search fields in Search: Fulltext search)
With render html field added to the view:
Without render html field: