Questions tagged [solr6]

Related to the version 6 of SOLR search engine.

Related to the version 6 of SOLR search engine.

For more version specific information see Major Changes from Solr 5 to Solr 6

Solr is the popular, blazing-fast, open source enterprise search platform built on Apache Lucene™

174 questions
0
votes
1 answer

Frequency of Full reindex on SolrCloud

How often do I need to run full reindex on SolrCloud? It takes more than 12 hours for full reindex to run and we run it every night but is it really necessary to do it as delta runs correctly. New data comes in at the rate of 2000 documents on every…
raj247
  • 381
  • 1
  • 4
  • 21
0
votes
1 answer

Solr query with filter query

I need to handle suggestion using solr query. Suggestion is working fine. But the problem is that suggestions are conditional i.e. suggestions are based on geo locations. I want the following equivalent query: q=&fq=country:"
Mridul Vishal
  • 2,160
  • 4
  • 16
  • 17
0
votes
1 answer

solr : How to Clear the baseDir folder after the DIH import

Solr Version :: 6.6.1 I am able to import the pdf files into the Solr system using the DIH and performs the indexing as expected. But i wish to clear the folder C:/solr-6.6.1/server/solr/core_K2_Depot/Depot after the successful finish of the…
Karan
  • 3,265
  • 9
  • 54
  • 82
0
votes
2 answers

Solr 6.6.0 Case Insensitive Query Not Working

Solr 6.6.0 Case Insensitive Query Not Working. I had tried all other option/answer available on internet. I had tired with, but its not working. I had tired with,
Kiran
  • 1,176
  • 2
  • 14
  • 27
0
votes
1 answer

Indexing joined records in Solr

I am new to Solr and stuck at something basic (I think), which is probably a lack of understanding/comprehension on my behalf. I've read the documentation on DIH and spent a lot of time searching this issue, without finding my solution. My use case…
Richard
  • 4,341
  • 5
  • 35
  • 55
0
votes
1 answer

Filename getting parsed incorrectly in filter query in Solr 6.6

How do i prevent a filter query such as ss_content:70756_box4_v29.jpg from being parsed as below "filter_queries":["ss_content:(41339_box4_v29.jpg)"], "parsed_filter_queries":["ss_content:41339_box4_v29 ss_content:jpg"] in the…
Pankaj Kumar
  • 1,748
  • 6
  • 28
  • 41
0
votes
1 answer

Solr spellchecking nor returning results for indexes larger than 10k items

I have a Solr core (Solr version 6.4.1) where I'm also using a spellcheck component. Problem is, as long as I have less than 30k items my spellchecker works fine. Increasing the number of docs to 30k or more causes the spellcheck not to return any…
picci
  • 1
  • 2
0
votes
1 answer

Searching other fields with Solr hon-lucene-synonyms plugin?

I'm trying to figure out how to use this plugin: https://github.com/healthonnet/hon-lucene-synonyms If I run: http://solr.example.com/solr/graphics/select/?q=royalty+free&debugQuery=on&defType=synonym_edismax&synonyms=true It works as I want, and…
Andrew Newby
  • 4,941
  • 6
  • 40
  • 81
0
votes
1 answer

Solr 6 highlighting does not show content or _text_

I have a solr 6.6.0 instance running and have indexed some docs - PDF and HTML. Previously I had solr 4 and searching with highlighting results was fine. Unfortunately this (default) behaviour seems to have disappeared in v6. The setup is the…
Aviator
  • 512
  • 3
  • 7
0
votes
1 answer

Solr synonymns don't appear to be working

I'm moving from one server to another, and I've installed a fresh copy of Solr 6.6.0. I have it all working, apart from the synonyms. This is an example of what I have in my synonyms.txt file: cartoon, comic, cartoons, funny, drawing, sketch, draw,…
Andrew Newby
  • 4,941
  • 6
  • 40
  • 81
0
votes
1 answer

Solr search engine need to restart after adding docs

I am working with solr 6.6.0 using solr PHP client. I am adding the docs using below code and it is working properly : foreach ($data as $key => $value) { $docs['doc_no'.$i]['id'] = $value['id']; …
Rakesh Shetty
  • 4,548
  • 7
  • 40
  • 79
0
votes
1 answer

Unable to find docs for search term having number in Solr

I am having solr 6.6 installation. I am trying to look up documents having search term with a number e.g. q=testterm 2 The field on which I am trying to run search has following definition:
acorntech
  • 53
  • 8
0
votes
1 answer

How to sort by geodist() function in Spring Solr Data?

Ciao, I'm unable to get the following solr query working with Spring Solr Data. q=name:rsa&sfield=coordinates&pt=-8.506854,115.262478&sort=geodist()%20asc The query works if I put it inside solr admin console, but it doesn't work with spring solr…
Davide
  • 1
  • 2
0
votes
2 answers

Partial document update in SOLR 6.5.1

I have ID(unique key) and URL fields in my indexed document. They have same values. And I am able to update the URL field(changing the DNS) as…
0
votes
1 answer

Solr 6 index content in intervals

I am using solr 6 and my requirement is to find documents which have 5 consecutive words (seperated by space) duplicated in them. So to achieve this I am planning to index the contents in the inverval of 5 words for example if my content is "The…
Vikash Patel
  • 1,328
  • 9
  • 28