Questions tagged [solr5]

Related to the version 5 of SOLR search engine

Related to the version 5 of SOLR search engine: https://lucene.apache.org/solr/

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

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

165 questions
3
votes
0 answers

ClassCastException: class org.apache.lucene.analysis.tr.ApostropheFilterFactory with Solr 5.5

I'm trying to develop my own filter based on https://dzone.com/articles/writing-solr-analysis-filter, but using TokenFilterFactory as pointed here I'm using Solr 5.5, and for the development project, I added to my pom.xml:
garci560
  • 2,993
  • 4
  • 25
  • 34
3
votes
3 answers

How to import data from one solr core to another solr instance

I need to import data from one Solr instance to another instance Full data and index import. I have searched and spend some times in google but I did not find proper solution. This link has similar question but i could not find the proper answer. I…
Gautam
  • 3,707
  • 5
  • 36
  • 57
3
votes
0 answers

how to store array inside object formate data in solr 5

i am trying to save data in solr 5 in one fields as json formate example "eligibility": "[{\"state_id\": 0, \"name\": \"Anywhere in India\", \"id\": 5000}]", simple data is working "location_search_id": ["5000"], that eligibility data is not…
RahulG
  • 1,028
  • 1
  • 15
  • 27
3
votes
1 answer

Understanding Solr Doc=

I have two indexed documents that I am trying to figure out the relevancy of why one is higher than the other. So I've ran DebugQuery=True in order to get the explain. Below is the relevant difference in the two documents. Two Different Types of…
Adam
  • 388
  • 1
  • 10
3
votes
5 answers

SolrCore Initialization Failures

I am using Solr-5.0.0 and when i am trying to create a core in that i am getting the following error in logging. SolrCore Initialization Failures org.apache.solr.common.SolrException:org.apache.solr.common.SolrException:…
Juhan
  • 1,283
  • 2
  • 11
  • 30
2
votes
1 answer

in-place updates using solrJ

I am trying to achieve in-place update for documents. Solr Version - 5.5.2 Schema.xml -
2
votes
1 answer

Solr - Java heap space tuning for Sitecore

In our Sitecore 8.2 installation we use Solr 5.1.0 as an indexing system. Recently we have had some issues like this: [sitecore_analytics_index] org.apache.solr.common.SolrException; org.apache.solr.common.SolrException: Error opening new…
S. Longo
  • 21
  • 2
2
votes
1 answer

How to properly use a scoring function in Solrj

I'm trying to boost the score of a document according to the value of a floating number field from the document. For example, the user may search for "Oliphaunts named ron, with height between 6 and 10 meters" and I'd like to query the height field…
selotape
  • 846
  • 1
  • 13
  • 26
2
votes
3 answers

How to remove duplicates from Multivalued Fields in SOLR?

I tried the solutions listed in the below question. Removing Solr duplicate values into multivalued field I'm using dataimport handler and creating multiple values for the field using RegexTransformer. My sql returns this for column FOO Johnny…
Razen
  • 156
  • 8
2
votes
0 answers

I'm getting java.lang.NoSuchMethodError while initializing ConcurrentUpdateSolrClient object

I'm getting java.lang.NoSuchMethodError while initializing ConcurrentUpdateSolrClient object by calling ConcurrentUpdateSolrClient _server = new ConcurrentUpdateSolrClient(url, 10, 4); Jar files which I'm using…
Babu
  • 23
  • 1
  • 6
2
votes
1 answer

SolR 5 : how can I index multiple databases in one core

I'm currently trying to index multiple databases (two MySQL and one PostgreSQL) into one same index so as to make a research on a website. I've succeeded in importing each Mysql base separatly on different Core (and different indexes). Edit : The…
Ismail H
  • 4,226
  • 2
  • 38
  • 61
2
votes
0 answers

Nutch cause error while using solrindex command

I am using nutch 1.11 (published in 07 December 2015) and using bin/crawl command to help me do the work and everything is ok until it reaches to solrindex command to put the data to solr search engine, it cause error: SolrIndexWriter …
2
votes
2 answers

schema.xml changes from Solr4 to Solr5

I'm migrating from Solr 4.6.0 to 5.4.0. We opted to use our old schema.xml instead of using the managed_schema because we have quite a few copyFields. Starting up solr server, we got this error: Plugin init failure for [schema.xml] fieldType…
Seeker
  • 297
  • 5
  • 19
2
votes
0 answers

Solr 5 restart losing cores

Noob Solr question I am trying to set up Solr, and to aid I have been using Apache Solr installer from bitnami. This will install Solr 5.4. I have gone and created a new core, and everything looks good. However when I restart solr, the core I have…
Darren Guy
  • 1,123
  • 2
  • 13
  • 39
2
votes
1 answer

node-solr-client: Updating Document and Commiting

I am using node-solr-client for handling solr queries. I have written an update query as per the post here Add and update data to Solr-4.3.0 using node module solr-client My data is: data = { 'type_s':'applicant', 'id': 5, …
Jay Chakra
  • 1,481
  • 1
  • 13
  • 29
1
2
3
10 11