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

Solr - Suggest Component with 2 different field types

Im having trouble finding a way how to have 2 differently structured fields in one suggest component. (https://cwiki.apache.org/confluence/display/solr/Suggester) The goal is to have an autocomplete module with these fields. A field where…
Jointts
  • 121
  • 3
  • 11
0
votes
0 answers

Solr6 fails to add a core, shows following error

I am using solr 6.3.0 on redhat machine, integrated with tomcat server. One of my core is not getting added. The core imports data from a SQL Server database. The solr.log files prints the following message. Can someone help finding me, what is…
0
votes
1 answer

Select query for search with 2 or more words without double quotes against more than one field in solr

Please refer My previous question . With respect to the this answer for my question, I could do with one filed. I Could not able to do with multiple fields. http://$solr_host:8983/solr/magazines/select&q=sport+education&df=title&q.op=OR - this is…
Naga
  • 2,190
  • 3
  • 16
  • 21
0
votes
1 answer

SQL Equivalence of Solr Query

In my spring boot project, i connect to a solr server. Instead of solr queries I need to use sql queries. I can get expected results for basic queries like select * from reportCore, but I cannot add filters or specify field names. What i would like…
user7289227
0
votes
1 answer

How do I import a mySQL database table into Solr 6?

I am trying to import a simple mySQL table into Solr and keep failing. Having ploughed through: https://gist.github.com/maxivak/3e3ee1fca32f3949f052 https://wiki.apache.org/solr/DataImportHandler How to import data from mysql to solr and half a…
Lefty G Balogh
  • 1,771
  • 3
  • 26
  • 40
0
votes
1 answer

Solr 6.2 represent parent child fields

I have a json structure like this: { "foo": "123", "bar" : { "baz" : ["1","2","3"], "faz" : "hello" } } Which I am trying to represent in Solr 6.2 and this schema fails to give me the expected result:
Woot4Moo
  • 23,987
  • 16
  • 94
  • 151
0
votes
2 answers

Select query for search with 2 or more words without double quotes in solr

I have a column named title. I want to search this column. There is no problem when I use single word like title:'sport' OR title:"sport". Both giving same number of record. My problem is when I search with 2 or more words without double…
Naga
  • 2,190
  • 3
  • 16
  • 21
0
votes
1 answer

Unable to index multivalued field in solr

I am indexing data from two tables(unrelated) mysql in solr 6.3 . Few fields from One of the tables is multivalued while rest are not. Now that when I run fullImport from solr admin panel, it indexes only single data for multivalued field. I have…
Ajit Kumar
  • 41
  • 1
  • 7
0
votes
2 answers

Solr Delta Import Query is not working

I am trying to import data from Mongodb to Solr6.0. Full import is executing properly but delta import is not working. When I execute delta import I get below result. Requests: 0 , Fetched: 0 , Skipped: 0 , Processed: 0 My data config file queries…
Kamini
  • 690
  • 2
  • 13
  • 36
0
votes
1 answer

How to run Alfresco 5.2.c (EA) with Solr 6.3?

I want to run Alfresco Community Edition 201611 EA with Solr 6.3 using Solr 6 Integration. The alfresco-search-services-1.0.a\README.MD instruction: Install & Run To run, unzip then solr/bin/solr start ... unfortunately it isn't enough ;( Can…
kinjelom
  • 6,105
  • 3
  • 35
  • 61
0
votes
1 answer

Solr 6.1: UpdateRequestProcessor to Append to Field Name Based on Field Name

The goal is to have all my field names match the following schema of fields:
rotsner
  • 642
  • 3
  • 6
  • 23
0
votes
1 answer

QueryElevationComponent requires the schema to have a uniqueKeyField

I am migrating a Solr 4 applcation to Solr 6.2.0. My schema includes the following field: id I am using the classic…
Klaus
  • 2,328
  • 5
  • 41
  • 62
0
votes
1 answer

error creating solr core

I got this error: Error CREATEing SolrCore 'my': Unable to create core [my] Caused by: Input length = 1 I don't have any idea about this error. I am using solr 6.2.1. I made the collection folder, added solrconfig, schema, data-config file in conf…
0
votes
1 answer

Solr Query very slow with extensive qf

I'm operating a productive Solr server with more than 700.000 datasets in it. I'm using the query mode dismax with the following settings: mm = 2<-1 5<80% tie = 0.1 qf = title^4 text title_bg^4 text_bg title_hr^4 text_hr title_cs^4 text_cs…
fabian.kirstein
  • 708
  • 8
  • 26
0
votes
1 answer

solr count group by

I would like to "convert" a SQL query in a solr command. I have 2 SQL tables "jobs" and "companies". Today to count the number of jobs published by a company, I run this query : select c.id, count(j.id) from companies c left join jobs j on…
barden
  • 349
  • 6
  • 18
1 2 3
11
12