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

Apply solr 4 schema to solr 6

I am new to Solr technology and trying to re-index SOLR-4 data into another SOLR-6 master-slave setup. I have created a core in SOLR-6 with same name as that in SOLR-4 and copied schema.xml (solr-4) into SOLR-6's managed-schema of core. Issue is…
0
votes
0 answers

Regex search with whitespace in Solr

I Have imported a csv file which contains a field "Address" having multiple words with spaces in between" e.g. Address contains "23 delhi ST KANGAROO POINT", "23/50 BANGALORE ST KANGAROO POINT" etc. I want to search with "23", "23 del", "23/50" ,…
prashantas
  • 445
  • 1
  • 7
  • 19
0
votes
1 answer

Solr Indexing using CSV Update UI: unique key is created as a multivalued fields errors out

I am trying to load the CSV file in the solr 6.5 collection, using the solr Admin UI. Here are the steps that I did and got the following error: Created a data driven managed schema config set in Zookeeper. Changed the unique key to "MyId" (String…
Ganesh
  • 573
  • 2
  • 13
0
votes
2 answers

Solr query time increaes after machine reboot

I have a 2.2GB solr core which responds extremely well after running the indexing process via DataImportHandler. I noticed that solr uses a considerable amount of ram while doing that. The problem comes after I reboot the machine. Query time…
0
votes
1 answer

How to remove Scripts and Styles in content of SOLR Indexes[content field], while indexed through URL?

Whenever Solr is indexed to collection ( with configSet sample_techproducts_configs) and using URL, via following command: bin/post -p 8983 -c collection https://www.mywebsite.com -recursive 3 The indexes created do have a field content copied to…
S Jayesh
  • 191
  • 1
  • 4
  • 19
0
votes
1 answer

Solr - Load and Index custom delimited file

I get a feed file data in below format separated by custom delimiters…
user1637487
  • 241
  • 1
  • 9
  • 17
0
votes
1 answer

Loading stopwords from Mysql to Solr6

I am new to solr. I want to load synonyms or stopwords from DB instead of txt file to solr at analyzing phase. How can I acheive it in solr 6. I tried porting Solr-JDBC(https://github.com/shopping24/solr-jdbc), but I am unsuccessful as it uses…
starkk92
  • 5,754
  • 9
  • 43
  • 59
0
votes
2 answers

Solr Update If Record Exists

curl SOLR_URL/update -d \' [ {"id" : "1", "ONLINE" : {"set":"1"} } ]' I am using solr6.3. Above command works fine as it update online flag to 1 for id=1. But the issue is if record is not present then it adds a value as id=1 and online=1 which…
Sheldon Cooper
  • 236
  • 4
  • 17
0
votes
1 answer

Apache Solr 6.4.1 Qtime is much more than Qtime of the same query in Solr 3.6.1

please any one help me !! when i run facet query in solr 6.4.1 the query takes around 5.5 seconds and when running the same query on solr 3.6.1 it takes around 3 seconds the Two solrs run on the same environment and each server run on 8 gigabyte…
0
votes
1 answer

Sorl 6 with jetty issues

Issues with solr settings while migrating from solr 4.0 to solr6.0. Issue Faced : My cpu consumption goes to unacceptable levels. ie. load on solr4.0 is between 6 to 10 while load on solr 6 reaches 100 and since its the production i rolled back…
user1682076
0
votes
0 answers

Time Taken By Solr To Fetch From DB

How to identify the time taken by solr dataimport handler to fetch the results from Database?
Vasan
  • 1
  • 3
0
votes
1 answer

Solr 6 Facet range query over streaming API

While migrating from Solr legacy faceting to Solr streaming API, how to implement the below parameters: &facet = true &facet.range = {!key=age_ranges}age &f.age.facet.range.start = 0 &f.age.facet.range.end = 100 &f.age.facet.range.gap =…
Yauza
  • 180
  • 1
  • 13
0
votes
1 answer

Solr date query to find gaps (intervals)

I am using Solr 6. I have a stream of data (date ranges) with for a specific id. I want to see only the gaps (dates) in them. Example: Here's is what I have {"start":"2016-04-20", "end":"2016-04-21", …
0
votes
3 answers

Full Match on a Field in Solr Search

I'm having a field called "QUERY_TERMS" which consists of words separated by a space. Example: "QUERY_TERMS": "chet swaroop" This record/document should be returned as a result only when the query contains both the terms included in the list say…
Chethan Swaroop
  • 160
  • 2
  • 12
0
votes
1 answer

Solr Query - HTTP error 400 undefined field text

In my solr query I have no problem in one server and another throwing error error { "msg":"undefined field text", "code":400} for certain scenario. I have referred Solr Query - HTTP error 404 undefined field text and many other referrences as…
Naga
  • 2,190
  • 3
  • 16
  • 21