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

solr - Stop facet calculation by sending a request to solr

I have an index with 1M docs and 50 facets. Out of the 50 facets I want solr to stop calculating 1 facet (i.e. brand_facet) only sometimes when issued a search request using /search handler. It is a multivalue field. How can I achieve it by sending…
raj247
  • 381
  • 1
  • 4
  • 21
0
votes
1 answer

Get only partially matching records in Solr

Is there a way to get records which matches a query partially in Solr. For &q="java enterprise" in the below mentioned records, { "name":"java", "case:"enterprise", }, { "name":"java enterprise" "case": "enterprise" } I want to fetch only…
Kabhi
  • 135
  • 1
  • 12
0
votes
0 answers

Solr query field precedence

I have a requirement in solr to search for data in the following order for field name: exact match string begins with the word string has the exact word in it fuzzy match - for this i am using ~ operator. e.g. dave~1 The query term can have 1 or…
acorntech
  • 53
  • 8
0
votes
1 answer

Cannot index decimal values from CSV

I'm using SOLR 6.6.2 and im trying to update a core with a CSV file of vehicle data. Each column of data consists of various datatypes such as ints, string, dates and decimal values. The problem is with the decimal values. I have to update them to…
JGilmartin
  • 8,683
  • 14
  • 66
  • 85
0
votes
0 answers

solr response vs qtime

I have a solr query that has a qtime of 30-40ms. The response time varies around 200ms. Fetching 800 documents at a time Returning 10 fields from the search query solr version 6.6 Solr Qtime - ~30ms Solr response time - ~200ms Cache statistics If…
0
votes
2 answers

Where is $SOLR_HOME in SOLR 6.6.2?

I am trying to setup Basic Authentication for SOLR, and trying to follow their instructions: https://lucene.apache.org/solr/guide/6_6/basic-authentication-plugin.html I created the security.json file, and now it says that I am supposed to put it in…
M.R.
  • 4,737
  • 3
  • 37
  • 81
0
votes
1 answer

Match single value of multivalued daterange field

Say I have a field defined in my schema and then indexed as 'dmvf_rab_date_range'
gcalex5
  • 1,091
  • 2
  • 13
  • 23
0
votes
1 answer

Pivot Faceting on multiple fields gives me proper count and 1st record . Is it possible to get all the records?

This is my query: select?q=TYPE:event_time:[2018-04-09T12:36:15.054Z%20TO%202018-04-09T12:36:20.054Z]&fq=FRUIT:Apple&facet.pivot=PROVIDER,SUMMARY&facet=on&facet=true&facet.field=PROVIDER&wt=json
Ravi Rana
  • 1
  • 2
0
votes
0 answers

Solr 6 synonym relevancy score

I have been experimenting with synonyms in solr 6. The stuff I have read before starting pointed out some differences in query time and index time synonyms. The main difference is IDF values while incorporating synonyms at index time and query time.…
K.Ali
  • 41
  • 4
0
votes
0 answers

Solr Warming Up Doubts

Whenever i am running the full-import, my response time for some request increases from 80ms to 3000ms. This must be indicating my poor choice of warming up. 1. newSearcher I have added some 2 frequent used query but all my autowarmCount are set to…
0
votes
1 answer

Solr with no text search

I have successfully implemented the custom search in solr by extending CustomScoreProvider. But the problem is i need to pass some user info like 31,1 which i need in custom sort. q={!mycustomparser}31+1+*:* and it is acting as a text search. Is…
0
votes
1 answer

ERROR: -Xdebug is not supported by this script

bin/solr start -e techproducts -m 5g -Duser.timezone=US/Eastern -Xdebug -Xrunjdwp:server=y,suspend=n,transport=dt_socket,address=8000 ERROR: -Xdebug is not supported by this script when i am running solr6.6 on debug mode, its giving me error. can…
user1682076
0
votes
1 answer

How to nest documents in Solr?

In solr 6.6.0, I want to use nested objects for particular key. So suppose, I have one document as follows : { "ID": "16_nl", "countryIso": "AUS", "regionId": 30, "name": "test", "placeId": 50, "eventID": 100, …
0
votes
1 answer

Curl request in shell script not working

I am trying to execute curl command from shell script. This command works properly from cli. However, I need to execute it in shell script. The curl command is expected to delete records on solr depending upon the query. curl -v -o /dev/null -w…
acorntech
  • 53
  • 8
0
votes
1 answer

Additional fields in schema.xml are not showing up when I do a query

Solr version information: 6.6.0 The core is named: solr Instance: /var/solr/data/new_core In the /var/solr/data/new_core/conf/ directory I have a custom schema.xml file I have multiple custom fields like this in the schema.xml file
AllisonC
  • 2,973
  • 4
  • 29
  • 46