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
0
votes
2 answers

MoreLikeThis isn't returning all fields of similar documents

I'm trying the MoreLikeThis feature of Solr using the following query in the browser: http://localhost:8983/solr/gettingstarted_shard1_replica1/select?qt=mlt&q=id:31&mlt=true&mlt.fl=firstName,lastName&mlt.mindf=1&mlt.mintf=1&mlt.count=10 Which is…
Songo
  • 5,618
  • 8
  • 58
  • 96
0
votes
1 answer

How to set max string length in Solr configuration

while indexing with SolrJ, I was able to find that, one of my data was impossible to index. Because the length of data(String) was more then 20000. with my googling, was used for the length(before Solr 4.x) and it is now used with . hence I just…
Jin Park
  • 371
  • 1
  • 9
  • 23
0
votes
1 answer

avoid duplicated documents in Solr

while indexing DB documents using SolrJ, I was able to find there were duplicated documents in Solr(5.2.1). I want to avoid duplications and rewrite the documents based on "id" field. with my googling, "dedupe" is useful for duplications, so I…
Jin Park
  • 371
  • 1
  • 9
  • 23
0
votes
1 answer

Solr 5 - disable idf scoring

I am using SOLR 5.5.0, and noticed unwanted behaviour with regards to scoring. The search index is for persons, with fields for givenName and surName. I have weighted givenName a bit higher than surName, but for some queries, the hits from surName…
Tobb
  • 11,850
  • 6
  • 52
  • 77
0
votes
1 answer

One Solr core, multiple unrelated tables

I need to search over multiple tables, getting only one resultset, but these tables don't have any relationship. Can I do it with Solr?
Hernã Saldanha
  • 300
  • 2
  • 10
0
votes
1 answer

Unable to browser solr schema. Getting the following error:

I tried to check solr schema from the web console, but there is error while accessing that too. From the logs: INFO: 2016-04-11 06:19:16 0:0:0:0:0:0:0:1 - 0:0:0:0:0:0:0:1 8983 POST /solr/schema/fields - 500 …
GP92
  • 433
  • 1
  • 12
  • 30
0
votes
1 answer

SOLR 5 Install in a Production Environment

I am a bit confused about installing SOLR 5.5. The 5.5 manual says it is not recommended to deploy solr war on any other web/application servlet containers. It says deploy solr as a stand alone server. What does this mean? SOLR running on port 8983…
tindu edward
  • 299
  • 1
  • 3
  • 17
0
votes
1 answer

Solr GermanNormalizationFilter and special chars

We use Solr 5.4 and have some text fields defined as text_de with following schema.xml
rabudde
  • 7,498
  • 6
  • 53
  • 91
0
votes
1 answer

SolrCloud and zookeeper

I have 5 solr cloud and 4 zookeepers installed several windows servers, I am not able to access the solr cloud in from another windows server, Can you please tell me how can i setup multiple solr clouds with zookeeper in windows machine. I am…
manohar c
  • 21
  • 5
0
votes
0 answers

How to create mappings between multiple Solr docs

I am using Solr 5.4 and have Solr schema containing 5 fields. Now, I am indexing two types of docs: Doc1: field1 field2 field3 Doc2: field1 field4 field5 Here field1 contains unique ID and it is common to both the…
Vivek
  • 75
  • 1
  • 9
0
votes
0 answers

Solr did not come online within 30 seconds version 5.5.0

I am trying to start Solr on Windows Server 2012 R2. When I am executing command: solr start -p 8983 it gives me this error: Solr did not come online within 30 seconds. The only thing I am getting in logs within file: solr-8983-console is Error…
Ankita
  • 1,416
  • 4
  • 17
  • 42
0
votes
1 answer

Can we specifiy order of columns to search in solr?

Can we specify order of columns to be searched in solr? For example my search string is : "Test" Then my result should contain all rows matching column1 and then all rows matching column 2... Similar to union query in SQL. I tried with custom…
user1097437
  • 111
  • 3
  • 12
0
votes
0 answers

Searching in solr doesn't retrieve data

I've indexed two Mysql tables in a SolR core and I'm currently trying to launch requests from the backend (administration panel provided by SolR). Problem : When I type nothing in "q" parameter, Solr gives back all the results it has in its index.…
Ismail H
  • 4,226
  • 2
  • 38
  • 61
0
votes
2 answers

SOLR 5: Error loading class 'solr.XsltUpdateRequestHandler'

On Solr 4.2.1, I was able to use the solr post and now I have upgraded to 5.4 and when I used the post method. I am getting Error loading class 'solr.XsltUpdateRequestHandler' error. Here is the complete…
J-S
  • 85
  • 1
  • 10
0
votes
1 answer

SOLR: Curl update all files

Is there anyway to use the curl command to update the solr with all the files under a directory? For example like update all the XML files: curl "http://localhost:8983/solr/xml/update?commit=true&tr=add.xsl" -H "Content-Type: text/xml" --data-binary…
J-S
  • 85
  • 1
  • 10