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
1
vote
1 answer

Solr 6 DateRangeField search exact match

I have salesperson index which has availableDateRange as multivalue dateRangeField. Following is the schema for availableDateRange field
vikram eklare
  • 800
  • 7
  • 25
1
vote
1 answer

Solr 6 streaming evaluator errors out - unknown operands found

I am trying to use solr streaming with stream evalutors (6.5 version of solr). I got an error with solr streaming. Please let me know what i am doing wrong. select( search(loc-1215, q=*:*, fq="LOCATION_POINTS:[100 TO 300]", fl="id,LOCATION_POINTS",…
Ganesh
  • 573
  • 2
  • 13
1
vote
0 answers

Modifying router.name and router.field after creating a collection

i have created a collection in solr with number of shards=2 and replication factor=2 and while doing that by default solr assigned router.name=compositeId but I want to change the name to "implicit" and I also want to specify the value of…
1
vote
3 answers

Solr Suggester - Store Lookup build failed

I've exhausted my search efforts as to why this isn't working. I believe I'm following the documentation correctly found at https://cwiki.apache.org/confluence/display/solr/Suggester However, every time I attempt to build the suggester, I receive…
jaryd
  • 861
  • 12
  • 21
1
vote
0 answers

Connection refused while connecting to Solr

I am in process for setting up Solr-6 in cloud mode and I started Solr server with command - bin/solr -e cloud -noprompt IP to which solr was bound was - 15.xxx.xxx.103. I restarted my server the next day it is picking up and trying to connect to…
1
vote
0 answers

solr shingleFilterFactory not working

Recently I migrated from solr 4 to 6. In solr 4 shinglefilterfactory is working correctly my configration is
1
vote
1 answer

Solr 6.4.1 Update very long

Solr 6.4.1 Take very long time to update. I have Solr 6.4.1. About 600 000 documents indexed. When I do an update it takes about 20 to 60 seconds. Blocking my app (web page) for too long time. Solr Logs doesn't show anything like not enough memory…
kollo
  • 1,285
  • 3
  • 20
  • 33
1
vote
1 answer

How to add JNDI in solr6

I am new to jetty. I used to deploy solr using tomcat. But we moved to solr6 and I had hard time configuring resources in jetty which comes with solr 6. How can I configure JNDI resource in Solr 6? This is what I have tried so far with no…
starkk92
  • 5,754
  • 9
  • 43
  • 59
1
vote
1 answer

Solr dynamic field blowing up the index size

Recently, I upgraded from solr 5.0 to solr 6.4.1. I can run my app fine but the problem is that index size with solr 6 is way too large. In solr 5, index size was about 15GB and in solr 6, for the same data, the index size is 300GB! I am not able to…
Pratik Patel
  • 1,305
  • 1
  • 17
  • 44
1
vote
0 answers

DistributedUpdateProcessorFactory was explicitly disabled from this updateRequestProcessorChain

I am using SOLR Cloud 6.0 with below setup, 3 physical VM, 5 collections with 6 shrad each with replication factor 2 I am running zookeeper on each VM I am receiving below exception very frequently in solr logs, o.a.s.h.RequestHandlerBase…
pratik thaker
  • 21
  • 1
  • 7
1
vote
0 answers

how to use pseudo-field in facet

I generated a pseudo-field by function query like "fl=new_field:sum(a,b)","a,b" are defined numeric fields in manage-schema. I want to know how I can make the pseudo-field or the function expression can be used by facet? I want to use it for…
X.joe
  • 11
  • 1
1
vote
1 answer

Solr More Like This result not as expected, Start field other than 0 shows no result

My More Like This query doesn't return the results for any start value other than 0. My Query URLs with Responses are below: http://IP_ADDRESS:8983/solr/CORE_NAME/select?indent=on&q=one:ABC&mlt=true&mlt.fl=one,two,three&&rows=100&start=0&wt=json…
Kabhi
  • 135
  • 1
  • 12
1
vote
1 answer

SolrClient is Working in browser, Not working in terminal Ubuntu 16.04

I have following php script which is run perfectly in browser. But when I try to run in terminal, it throwing Fatal Error: Uncausght Error: 'SolrClient' not found for line($fetch_client = new SolrClient($fetch_options);) $solr_ip =…
Naga
  • 2,190
  • 3
  • 16
  • 21
1
vote
2 answers

Convert time in milliseconds to Solr date format using ScriptUpdateProcessor

I need to convert a field say,timestamp_ms(ex: 1473794840429) which is in long data type to solr date format yyyy-mm-ddThh:mm:ssZ through Solr ScriptUpdateProcessor. Below is my solrconfig.xml
Anurag.D
  • 21
  • 4
1
vote
2 answers

Solr Language Detection

I have a field "text", which I need to copy to text_en or text_es based on the language of "text". Below is my managed_schema.xml:
Anurag.D
  • 21
  • 4