Questions tagged [solr-search]
34 questions
0
votes
0 answers
word level ngram implementaion for solr >8.0
given word: "ABC regional private coastal area"
(shingle filter factory)tokenization i want: "ABC regional private coastal area", "ABC regional private coastal", "ABC regional private", "ABC regional", "ABC".
results: "ABC regional private coastal…

AMAN
- 1
- 1
0
votes
0 answers
Not able to make a connection to SOLR server
Below is the Apache error_log while making reverse proxy request to my SORL server which has suddenly stopped working.
[proxy:error] [pid 14719] (111)Connection refused: AH00957: HTTP: attempt to connect to 52.24.XX.XXX:8983 (52.XX.XX.188)…

Abha
- 1
- 1
0
votes
1 answer
Solr - Search parent having multiple child documents
I have a Solr index with structure as below.
{
"id": "1",
"bookName_s": "Core Concepts",
"bookDescription_s": "This is the description",
"isbn_s": "ABCD:123",
"reviews": [
{
"id": "2",
"Name_s": "review1",
"detail_s": "sample…

teja_98666
- 85
- 1
- 11
0
votes
1 answer
How to fetch solr core data from custom search component
This is our custom component class, in which I want to get the data from one core and search data into another core and use facet query and show in descending order.
means suppose we get t-shirt name from one core and same t-shirt name we will…
0
votes
0 answers
Solr Aliases: Can i search using an alias and will the results be sorted if the alias is pointed to multiple indices
did anyone has experience using aliases in Solr pointing to multiple indices and using the alias to perform search query agains the indices that are pointed to the alias. If yes i am curious how the results will appear ,will they be presented in…

talluri
- 11
- 1
- 2
0
votes
1 answer
trying to create a simple Solr master/slave configuration getting indexFetcher error on SLAVE trying to connect to master
2021-07-26 17:13:30.420 INFO (qtp210506412-18) [ ] o.a.s.s.HttpSolrCall [admin] webapp=null path=/admin/info/logging params={wt=json&=1627318946019&since=0} status=0 QTime=0
2021-07-26 17:13:40.423 INFO (qtp210506412-22) [ ]…
0
votes
0 answers
Solr Case Sensitive Search
I have two fields as below
"ad_code":["fsCy"],
"ad_code_string":"fsCy",
Field Definition
Though the Analysis shows the match…

sarin Wickramasinghe
- 31
- 3
0
votes
1 answer
Solr - Get a string field without case sensitive
Im using the solr engine to an e-commerce website I have store the search tags as a sting in a single field as below, I need to get convert that field to case insensitive.I tried to apply the lowercase filter factory and it goes not work for the…

sarin Wickramasinghe
- 31
- 3
0
votes
0 answers
Solr how to get only the exact match
Sample tags field.
"tags":["[\"Rectangle\",\"Product\",\"Font\",\"Rectangle\",\"Product\",\"Rectangle\",\"Snack\",\"Product\",\"Material property\",\"Product\",\"Material property\"]"],
When I search the keyword land in the tags field I get the…

sarin Wickramasinghe
- 31
- 3
0
votes
0 answers
Hi , I am fairly new to Solr search and when I try to crawl a web page, it is giving me following error
Running it on mac terminal and following error comes up:
Website I am using is https://factorpad.com/tech/solr/index.html
> Ravishers-MacBook-Air:solr-8.6.3 ravishersingh$ bin/post -c solrhelp
> -filetypes html…

Rav Singh Sandhu
- 62
- 6
0
votes
0 answers
Reload managed synonyms in Solr
I am using Solr 8.6.1, started in solrcloud mode.
The field type is
{
"add-field-type" : {
"name":"articleTitle",
"positionIncrementGap":100,
"multiValued":false,
…

user13674325
- 339
- 2
- 14
0
votes
0 answers
Fuzzy search and stopwords in Solr
I want to use fuzzy search, so I append ~1 for each term in the query, for example the initial query is "name:the matrix", so after appending ~1, the query is "name:the~1 matrix~1".
Everything works, except stopwords, now it finds also the documents…

user13674325
- 339
- 2
- 14
0
votes
1 answer
Exclude all tags from facet in Solr
At the moment I am trying
json.facet={
"category" : { "type": "terms", "field": "category" },
"initial_category" : { "type": "terms", "field": "category", domain: { excludeTags: "*"} }
}
But no success.
I need for initial_category to retrieve…

user13674325
- 339
- 2
- 14
0
votes
0 answers
Fuzzy search and boosting in Solr
How to fix the query
name:((lenovo laptop)~1)^4
I want to allow only one character to be wrong, and to boost this query.
I am getting the error
Encountered " "~1 ""
How to fix it?

user13674325
- 339
- 2
- 14
0
votes
0 answers
ArrayIndexOutOfBoundException when facet.method= enum is used
I am seeing below exception when facet.method= enum is used.
Earlier we got error related to "Too many unique values" for facet.method = fc. so changed it to enum.
Anybody is aware of the error ?
field definition in schema file:

Sarita Singe
- 31
- 1