58,454 questions
0
votes
0
answers
10
views
Filebeat 9.0.4 failing to connect to elasticsearch on local machine
I followed below documentation for setting up filebeat- 9.0.4 on local machine (Ubuntu 24.04.2 LTS)
Filebeat quick start: installation and configuration | Beats (self-managed tab)
I used below command ...
0
votes
0
answers
27
views
How to return the geo distance when NOT sorting with _geo_distance in c# NEST code
I have json data with latitude and longitude in separate?fields instead of having a location of type GeoPoint.
I implemented filtering in ElasticSearch based on geo_distance by mapping this location ...
0
votes
1
answer
43
views
Kafka-Driven Elasticsearch Document Migration (Index A → B)
I'm trying to implement below steps in Logstash but getting error.
Input from kafka i.e. id
Search that Id on elastic i.e. _id
Take doc from Elastic index A
write it to another Elastic index B
Delete ...
0
votes
1
answer
29
views
elasticsearch scoring through multiple indices
I have several indices with similar but still different data which is coming from different sources. However I'm running the search query through all of them.
The issue that I'm trying to solve is ...
3
votes
0
answers
134
views
Validating ES query_string upfront, namely without connecting to an Elasticsearch server
I am looking for a Python library (if any) that could help validate the query_string field of Elasticsearch queries1 upfront, namely without connecting to an Elasticsearch server and without having to ...
0
votes
1
answer
29
views
Elasticsearch query index being updated, not create
I know I can query index creation time with curl 'http://localhost:9200/_cat/indices?v&h=index,creation.date.string'.
Is there a similar query which I can check index update time (not creation ...
0
votes
0
answers
20
views
Adding additional aggregation causes 15x performance degradation despite small result set
I have an Elasticsearch query that returns only 107 documents but takes 1.5 seconds to execute. When I remove one specific aggregation (values_brand), the same query completes in 100ms. The brand ...
0
votes
1
answer
28
views
Adding a normalizer to existing index
I want to add a normalizer to my settings and mapping in order the data will be sorted case-insensitive (currently it is sorted with ascii - which I don't want).
I can't do a reindex, because I don't ...
0
votes
0
answers
42
views
Opensearch Unauthorised Issue
I am using AWS OpenSearch with fine-grained access control enabled. Initially, I was able to log in to the OpenSearch dashboard using my master username and password, and everything was working ...
1
vote
0
answers
18
views
Connect local Kibaba to remote Elasticsearch cluster version 8.x
I had a hard time trying to run local Kibana with Docker and connect to a remote Elasticsearch cluster in version 8.18.x
Previously, I had an ES version 7 running in a k8s-managed cloud
Then I ...
0
votes
0
answers
19
views
Nifi - queryelasticsearchhttp vs jsonqueryelasticsearch
older version of nifi had queryelasticsearchhttp which would have a target as flowfile attribute but it is missing in newer nifi in jsonqueryelasticsearch.
Is there another simpler way to have my ...
1
vote
2
answers
81
views
Vespa ai rank function with multiple operands
I am evaluating vespa ai for our search use case, I want to understand if I am using the rank function correctly and if this is a right way to use it
"default-index": "all_text",
...
0
votes
0
answers
30
views
Ways to support joins on elasticsearch
I'm working with two Elasticsearch indexes -> accounts and contacts. These indexes are related in such a way that each account can be associated to contacts. However, not all contact data is ...
-1
votes
0
answers
29
views
How to configure OpenTelemetry Collector on multiple servers to send logs to the same service in APM?
I have two servers running the same application behind a load balancer (HA setup). Both use the OpenTelemetry Collector to ship logs to Oracle APM via OTLP.
I want all logs (e.g., from osb_server1 and ...
0
votes
0
answers
16
views
The necessity of translating in the writing process of elasticSearch
What are the advantages of using the translog compared to simply setting a very low flush interval? If I set the flush interval to be very low, wouldn't that also achieve persistence? (I realize this ...