Questions tagged [solrconfig]

53 questions
4
votes
1 answer

Is Solr's DatePointField a drop-in replacement for TrieDateField?

I get some deprecation warnings in my Solr 7.5 installation: [ WARN] 16:38:36 Solr loaded a deprecated plugin/analysis class [solr.TrieIntField]. Please consult documentation how to replace it accordingly. [] [ WARN] 16:38:36 Solr loaded a…
neu242
  • 15,796
  • 20
  • 79
  • 114
3
votes
0 answers

Apache solr configuration to connect and search with Database

Configuring my solr server, am able to start and stop the server and can see the dashboard etc. Just created a core called "Wish". So in the wish folder of the server I added the data source details in solrconfig.xml Here is the essential part of…
Suresh Atta
  • 120,458
  • 37
  • 198
  • 307
2
votes
1 answer

How can I highlight solr field of type StringField

I am having a problem enabling solr highlighting on some of my schema fields For example, I have the following field types:
2
votes
1 answer

How to add solr core in windows?

Downloaded (Apache solr 8.8.1) [https://archive.apache.org/dist/lucene/solr/8.1.1/] In path \solr-8.8.1\bin Opened command prompt, and executed following command solr start command prompt screen after starting solr core Accessed…
2
votes
0 answers

Solr 8.7 configset empty when uploaded with authentication

We have enabled authentication in Solr 8.7 and now I want to upload a configset and thereby create a collection based on this configset. I have followed the below steps: create config zip (cd /disk/configsets/my-collection/conf && zip -r - *) >…
2
votes
1 answer

SuggestorComponent with contextFilter in solr

Which lookup should i use for implementing context Filtering in solr Suggestor component? I am trying to use contextFiler in FuzzyLookupFactory and AnalyzingLookupFactory but it is throwing me the below error: Caused by: …
2
votes
1 answer

Solr suggest - context filtering with DocumentDictionaryFactory returns entire field

I'm working on an autocomplete feature for an app that provides full text searching of books. I'm trying to configure Solr (v.7.4.0) suggester with context filtering (e.g. limit results to text from pages of a single book) to return matching terms…
eben.english
  • 1,625
  • 1
  • 11
  • 9
2
votes
1 answer

Returning single word from Solr Suggester

I am developing a web application, and am using Solr as search engine. I would like to add autocomplete functionality. To do this, I have added the Suggester component, and configured a separate field for it. This works ok. The problem is that…
Knut
  • 136
  • 9
1
vote
1 answer

How to update solrconfig.xml with Java code? (Solr Cloud)

I want to edit solrconfig.xml to enable Solr SpellCheck.(Using solr cloud) I already do this via zookeper on the server, but I want to implement this in my Java code. I take a look at Solrj to edit config files but I couldn't find anything for…
sselinkurt
  • 11
  • 1
1
vote
1 answer

How do you use the Solr 7.4 restore API with HDFS?

I'm using Solr 7.4 along with Hadoop 2.7.5. I have an existing Collection that I want to backup and restore. I was able to complete the backup with no issues, but now I want to test the restore API. I'm doing all this in a staging environment as a…
RyanWorks
  • 39
  • 6
1
vote
1 answer

How to design multiple concurent imports using DIH in SOLR?

There is a case when an external application should send a unknown number of different indexing requests to SOLR. In fact, those requests should be processed by SOLR Data Import Handlers according to the config submitted inside the request. There is…
Eduard BABKIN
  • 71
  • 1
  • 5
1
vote
1 answer

Solr - ReplicationHandler - masterUrl error when defining it on core.properties for slave

I'm having some issues with adding some customization to solrconfig.xml, what I'm trying to do is set the masterUrl for the ReplicationHandler using the core.properties file. Funny thing is that if I manually paste the url on the solrconfig.xml it…
Bluuu
  • 75
  • 1
  • 6
1
vote
0 answers

Allow SOLR core only for a single user

I can't find any information on how to allow access to specific SOLR core just for a single user. I am using SOLR7. This is what I've got: security.json { "authentication": { "blockUnknown": true, "class": "solr.BasicAuthPlugin", …
Paulius Matulionis
  • 23,085
  • 22
  • 103
  • 143
1
vote
1 answer

Changes to solrconfig.xml are not reflected in SolrCloud

Solr Version: 7.1.0 Changes I made to solrconfig.xml: Added a updateRequestProcessorChain using TolerantUpdateProcessorFactory as suggested here
bhargavpss
  • 21
  • 1
  • 4
1
vote
1 answer

SOLR search not including data within JSON Field

I have a bunch of documents included in my SOLR index. These documents contain a field that contains JSON data. When I perform a query with a keyword I want that JSON field to be also searched. Right now it is not working. QUERY: { …
Rob Fyffe
  • 719
  • 1
  • 8
  • 22
1
2 3 4