Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
68 views

I'm having trouble setting up the synonym mapping feature in Azure AI Search. My results are very inconsistent, and I don't understand why. The documentation isn't very helpful either. Has anyone else ...
J-H's user avatar
  • 1,901
1 vote
0 answers
123 views

When user strings are submitted to Lucene's StandardQueryParser.parse, the parser will sometimes throw an exception because the string includes special characters in unexpected ways (e.g. search for &...
Ryan Tate's user avatar
  • 1,613
1 vote
1 answer
70 views

One field name say field_one is indexed as indexed=false. But I want to change it to indexed=true. I have also changed the schema.xml and reloaded the collection. Now, I am getting the error cannot ...
sd077's user avatar
  • 493
0 votes
0 answers
234 views

We recently upgraded Solr from version 9.3 to 9.8.0 and have observed a significant performance degradation. The schema changes were made to ensure backward compatibility with 9.3 for all existing ...
Sarita Singe's user avatar
1 vote
1 answer
244 views

So I am trying to use Lucene in a simple project and every search returns examples of how to do this on 10+ year old versions of lucene where entire packages referenced dont even exist anymore. I have ...
Seamus's user avatar
  • 301
-2 votes
1 answer
238 views

I was able to implement a hybrid search engine on Apache Solr 9.6.1 that combines lexical search (edismax) and vector search (KNN-based embeddings) within a single request. The idea is simple: ...
Khaled Alkhouli's user avatar
0 votes
1 answer
46 views

When indexing vector fields, Lucene doesn't allow specifying the vector field as stored (by calling FieldType.setStored(true)) — it throws IllegalStateException: Cannot store value of type class [F. ...
Oliv's user avatar
  • 10.9k
1 vote
0 answers
29 views

My team has come across an error that only happens with a particular sort condition. We are using the latest release(10.0.0) and contrary to things we've read in older documentation, sorting on ...
Heidtmare's user avatar
1 vote
1 answer
42 views

I have a use case where I might need to query <18000 records by their primaryIds. Currently we have these records in a DynamoDb. We want to be able to get all these records under <1s. So far I ...
shivam thakur's user avatar
0 votes
1 answer
56 views

I use below code to remove stop words from string but it not working: package com.example; import java.io.IOException; import java.util.ArrayList; import java.util.List; import org.apache.lucene....
tle130475c's user avatar
0 votes
1 answer
51 views

I am working with Elasticsearch and I have an index that contains entries with alphanumeric combinations like "Hotel101 fort". When I search using a query like "Hotel 101 fort", I ...
A_xay Queuemar's user avatar
1 vote
1 answer
61 views

In elastic search, the data is divided into lucene indexes which in-turn contain several sub-indexes or lucene segments, and each segment could be independently queried. If we have an index with ...
Ramesh's user avatar
  • 187
1 vote
0 answers
55 views

I am trying to perform a query time join of two separate indexes, with different document types, using Lucene query time join. Each index is valid, and they share a common "ID" Long value ...
BMY's user avatar
  • 11
0 votes
1 answer
280 views

Windows 10 Lucene 10.0.0 JDK 23.0 I'm new to Lucene and Java, trying to open an index which I believe is 8-10 years old. There are four files in the directory: Name Size _0.cfx 47,942 KB _s.cfs 1,78,...
Prashant's user avatar
  • 947
2 votes
0 answers
76 views

I’m currently working with a Solr 8.11 SolrCloud setup that uses legacyCloud=true in clusterprops.json. I’ve noticed that in this setup, Solr dynamically creates collections and cores upon startup ...
BrTkCa's user avatar
  • 4,791
0 votes
1 answer
42 views

Is it any difference between exact search query for one value and search query IN list of value with one value. Let me explain with sql notation. E.g. for posgtres doesn't matter Select "name&...
Shakirov Ramil's user avatar
0 votes
1 answer
116 views

I'm struggling with some of the basic concepts, so would be grateful for an explanation of which type of fields to use in what situation (e.g. String or Text), and any relevant parameters (e.g. Field....
Andrew Stephens's user avatar
1 vote
0 answers
60 views

How do I do a bulk delete of some synonyms in the Managed Resource Api. I find it strange that the documentation only talk about about how to delete synonyms one at a time. It will be quite sad if we ...
Baama's user avatar
  • 2,650
0 votes
1 answer
165 views

Being new to solr, I recently came across this error in my Solr Admin UI: core_name: org.apache.solr.common.SolrException:org.apache.solr.common.SolrException: Could not load conf for core core_name: ...
Shubham1212's user avatar
1 vote
0 answers
40 views

I have noticed, a match on a wildcard search with a custom boost, always adds the full boost to the score. If a match on dame^45, the score of 45 is added, from the score-debug: 45.0 = max of: 45....
rustyfinger's user avatar
0 votes
0 answers
58 views

I have a forked out code of lucene 9.10.0 . When I tried to upgrade versions of one of their dependencies org.apache.commons:commons-compress=1.19 to org.apache.commons:commons-compress=1.26.1, i am ...
Francis Salvin's user avatar
-2 votes
1 answer
202 views

I'm new to Hibernate-Search 7.1.1.Final and trying to achieve some basic functionality to work taking reference of this. I'm able to index the data. But can't make the search work. Each time I make ...
sb29595's user avatar
  • 21
-1 votes
1 answer
36 views

I have a log in ELK index like below 2024-06-24T05:05:26.31412196Z stdout F {"time": "2024-06-24T05:05:26+00:00", "remote_addr": "-", "x_forwarded_for"...
Satheesh Pandian Jeganathan's user avatar
2 votes
1 answer
55 views

I want to perform an exact match on elasticsearch but the exact match should be on document not on the search string. for example: I created this index: PUT /indexName { "mappings": { &...
Hamza AlAjlouni's user avatar
0 votes
1 answer
36 views

I'm trying to migrate the Lucene jars for our product from 4.1.0 to the latest if possible. I noticed that we seem to be using org.apache.lucene.facet.search.params.IFieldSet derived classes for our ...
M Sn's user avatar
  • 31

1
2 3 4 5
240