58,636
questions
0
votes
0
answers
4
views
Opensearch aggregation with an "inner filter"
I have an index of consumers with a keyword field "ssn" and a date field "created". I index consumers every day.
What I want to do is find all consumers in the index that share an ...
0
votes
0
answers
7
views
Elasticsearch: Unexpected Behavior with ICU Collation Keyword Sorting
I am experiencing unexpected behavior with the sorting order of documents in Elasticsearch using the icu_collation_keyword field type. Here are the details:
Steps to Reproduce:
PUT /test-index
{
&...
0
votes
0
answers
5
views
How can I handle Elastic.CommonSchema.NLog with Elastic.NLog.Targets
I have nlog.config file which looks like this :
<?xml version="1.0" encoding="utf-8" ?>
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" xmlns:xsi=&...
0
votes
0
answers
6
views
spring webflux unable to connect elastic search after some days untill pod restart
we have developed spring webflux API which fetch response from elastic search, API giving timeout after few days of deployment, request is getting cancelled while retrieving data from elastic search ...
-2
votes
0
answers
17
views
Best approach for implementing high-performance autocomplete with MongoDB (200K+ records)
I’m building a hotel search feature with an autocomplete field where users can search for destinations and hotels. Our MongoDB collection has over 200K records, hosted on MongoDB Atlas, but we’re ...
0
votes
0
answers
14
views
How to handle alphanumeric combinations (like "Hotel101") in Elasticsearch query results with multi_match?
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 ...
0
votes
0
answers
6
views
Opensearch indexing a key with string and object
I have two application one sends response: "somestring" and other sends with object response: "{statusCode: 200}"
I had the index like below
response:
dynamic: true
...
0
votes
0
answers
40
views
The springboot project encountered a port conflict but the process did not exit
I have the simplest springboot project (java17+springboot[2.7.2|3.0.6]+elasticeasrch8) that only integrates the components of ElasticSearch8.
I found that after running the project again (the previous ...
3
votes
0
answers
35
views
+50
How to manage synonyms of an entity
How to manage synonyms for an entity (say a Sports Team) which can be referenced by multiple names while searching
The following tags refer to Dallas Mavericks team - https://www.mavs.com/
Mavs, ...
1
vote
0
answers
40
views
How can I use NLog with Elasticsearch 8.15.3
<?xml version="1.0" encoding="utf-8" ?>
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-...
0
votes
0
answers
11
views
Does llamaindex hybrid search use a reranker?
LlamaIndex (based on OpenSearch) offers the option to use a hybrid search algorithm which should include a mix of both lexical and semantic search.
The vector store class definition is in this file ...
0
votes
0
answers
18
views
ElasticSearch - search-as-you-type with fuzzy search
I have a Remix app with Vendure backend and and I'm trying to implement a search functionality that works like Google's.
https://i.imgur.com/9P3GLLC.gif
As you can see in the gif, when the user enters ...
0
votes
0
answers
13
views
Elasticsearch fleet server falling to 'unhealthy'
I have 2-node Elasticsearch on-prem cluster. 1/2 nodes, besides Elasticsearch, hosts also Kibana + Logstash. OS for both nodes is Ubuntu server 24.04. Both transport (TCP - 9200) and cluster network (...
0
votes
1
answer
15
views
Elasticsearch lightweight monitors unable to use params
I have a lightweight monitor defined in my @elastic/synthetics project defined as follow:
heartbeat.monitors:
- type: http
name: "XXXXX"
id: "XXXX"
enabled: true
urls: ...
0
votes
0
answers
17
views
python is giving zsh: bus error while attempting create image embeddings
I'm trying to use an ML model to create image embeddings. This code block will send embeddings to ES cluster, but it gives an error;
zsh: bus error
I don't know why, i'm not good at python
It's my ...