20,515 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
1
vote
0
answers
94
views
Solr splitting search term soul-control into two word search ' soul or control '
Using solr for searching document storage.
One document has the word soul-control in it. If I search for soul-control, solr splits that word into a search string soul or control, thus returning any ...
0
votes
0
answers
64
views
Solr stores PostgreSQL date fields as epoch milliseconds (1667952000000) — how to keep pipe-separated date string like 2017年07月17日 | 2018年02月20日?
I'm migrating data from PostgreSQL into Solr. In PostgreSQL my priority dates are stored as two dates and I want them indexed in Solr as a single pipe-separated string:
2017年07月17日 | 2018年02月20日
I tried ...
1
vote
0
answers
36
views
Unable to ingest GeoJSON into DDF 2.26.45 (Solr error + ingest fails with no detailed message)
I'm running DDF 2.26.45 on macOS and configured it to use an external Solr 8.6.1 running locally at:
http://localhost:8983/solr
DDF detects Solr correctly:
solr.client = HttpSolrClient
solr.http.url =...
0
votes
0
answers
48
views
Solr 9.9.0 getting slow when there is high load
I'm using Solr 9.9.0 and I recently increased the server RAM from 16 GB to 32 GB, as well as the JVM heap memory to 16 GB. The issue I'm facing is that under high load, both the Solr 9.9.0 UI ...
2
votes
2
answers
61
views
Trouble Faceting on Text Field Terms in Facet Queries
I'm trying to use faceting to look at the terms that were indexed into a field, realizing this is a bit atypical, but I'm using it as a debugging tool. The problem is I'm not seeing any faceted terms....
0
votes
0
answers
67
views
Solr 9.7 - parent clause only finding one document if used with knn
I have a Solr schema where nested documents are enabled. Nested documents have a vector field that I use for dense vector search using knn and the parent clause, looking for the parent document whose ...
0
votes
1
answer
111
views
Load external file in Solr Cloud
Setup:
Kubernetes Solr Cloud (bitnami chart).
Current version 8.11 (also looking to go to 9)
I've tried various methods to get a larger file 120Mb loaded into KeepWordFilterFactory.
Main problems =>...
1
vote
0
answers
55
views
Why does my Solr multivalued=False copyField return multiple values?
I have in my schema:
<field name="mfName_ntk_cs" type="wc_keywordText" indexed="true" stored="true" multiValued="false" />
...
<copyField ...
-3
votes
1
answer
57
views
Solr reporting wrong host-IP to Zookeper [closed]
I have Solr and Zookeeper both running in a Docker-Container on the same machine. When everything stays within the ecosystem it works quite well. However I need to integrate it with another tool that ...
0
votes
1
answer
64
views
Solr search with parentheses failed
In Solr 9.8.1 the following query does not find any results.
research_project_project_id_intS:(69772 69787 71838)
"response":{"numFound":0,"start":0,"numFoundExact&...
1
vote
1
answer
83
views
Setting update.autoCreateFields to false doesn't work in solr
I am sending a request to solr to disable field gessing
curl-X POST http://localhost:8984/solr/products/config -H 'Content-Type: application/json' -d '{
"set-user-property": {
"...
1
vote
1
answer
573
views
Indexing problem with SOLR after Hybris upgrade (MultiMaxScoreQParserPlugin)
There was a need to upgrade our Hybris version from 2211.37 to 2211.41. In this new version, it includes Solr 9.8. There were some issues before I managed to run both build and deploy successfully. I ...
0
votes
0
answers
55
views
Apache Solr IndexUpgrader fails with java.lang.OutOfMemoryError: Java heap space on Large Index (650 GB)
I'm in the process of upgrading Apache Solr from version 8.6.0 to 9.8.0, and part of this involves upgrading the Lucene index format.
I have a large index directory (~650 GB), and I'm running the ...
0
votes
1
answer
44
views
Solr: Formulate a query that matches all terms in a single entry of a multiValued field
Using Solr 8.11.1
I have a schema with a dynamic multiValued field called tcngramm_X3b_en_field_job_titles whose schema is:
{
"name":"tcngramm_*",
"type":"...
1
vote
1
answer
43
views
Solr filter query issue
I try to make a search that get hits with:
At least one match with my queried "tags" OR no indexed field "tags" at all.
My search looks like this:
query: *
I add a filter query ...