Closed (works as designed)
Project:
Search API Solr
Version:
4.1.0
Component:
Solr Connectors
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
21 Mar 2022 at 11:14 UTC
Updated:
28 Mar 2022 at 20:40 UTC
Jump to comment: Most recent
Comments
Comment #2
mkalkbrennerSorry, but I don't understand your issue description. Please provide more details about the "dropdown".
Which version are you using. You selected 4.1.0 but wrote ^4.2.
Any errors in the logs?
Comment #3
vir3nder commentedBasically an input box is used for typing text to search items whenever user type text it bring results in auto suggestion but when click that suggestion nothing shown in search result page.
Warning log
Schema incomplete
There are some language-specific field types missing in schema of index on server .
Error log
Schema not up to date
There are some configuration elements missing in the Solr server schema < Solr>. This is likely due to using an outdated version of either Drupal or Solr. The recommended version is: drupal-4.2.3-solr-6.x. An updated config.zip should be downloaded and deployed to your Solr server.
Comment #4
mkalkbrennerSo you found the reason. Your schema is outdated and needs to be updated.
Comment #5
vir3nder commentedMy query related to Solr field names where prefix automatically adding in field names.
Suppose field name is "tm_title" then it save in solr with prefix "tm_X3b_en_title".
Owing to X3b_en append search result is breaking.
seems this happen due to the language-specific mapping from Drupal to Solr field names at
search_api_solr/src/Plugin/search_api/backend/SearchApiSolrBackend::formatSolrFieldNames()
Any clue to get rid of this?
Comment #6
mkalkbrennerYou can't get rid of it. This is how this module works.
Comment #7
vir3nder commentedI am not using any language module and not want to changed fields names because old fields name on solr have no _X3b_en_ character in fields name and search worked but now with solr_search_api module update it is not working.