Questions tagged [aws-elasticsearch]

Use this tag for questions related to AWS OpenSearch, which is an open-source, RESTful, distributed search and analytics engine built on Apache Lucene.

Useful Links:

  1. OpenSearch
  2. OpenSearch Service
448 questions
0
votes
2 answers

Handle elastic search failure - How do I sync records in Dynamodb and Elastic Search ?

I am using AWS Dynamo DB and Elastic Search. I am looking for some way to keep Dynamo DB data in sync with Elastic Search if any of them fails. Currently I use lambda to push my record into Elastic Search. I know there is plugin - Logstash…
boms
  • 91
  • 1
  • 11
0
votes
1 answer

Spring Integration Http Outbound to AWS ElasticSearch

I am trying to use HTTP Outbound gateway to read data from AWS elasticsearch. I am aware of setting up a request-factory to provide username and password credentials. Is there a similar way to provide the AWS access and secret…
0
votes
1 answer

In Elastic search why does the time taken varies?

In Elastic search why does the time taken varies? Its okay if the time taken is high at first hit and reduces at next hits. The time taken goes from 80 ms to 20 ms and again increases to 70? Here is the sample **"took": 17,** "timed_out":…
Vishnu Ranganathan
  • 1,277
  • 21
  • 45
0
votes
1 answer

RestHighLevelClient with BulkProcessor Elastic Search issue

Earlier I was using TransportClient in my app. Recently moving towards AWS manages Elastic Search services. Learned that AWS managed ES Cluster would not support TransportClient. So migrating the code where it was using BulkProcessort to insert…
0
votes
1 answer

how to search data from amazon elastic search based on multiple conditions?

I have pushed JSON documents like below { "Apartment_Area": "marathahali", "Apartment_bhk": "2bhk", "Apartment_owner": "praveen", "Apartment_forSale": "sold_out" } { "Apartment_Area": "kadugodi", "Apartment_bhk": "1bhk", "Apartment_owner":…
Vishnu Ranganathan
  • 1,277
  • 21
  • 45
0
votes
1 answer

Elasticsearch scripted field with value from another document

Imagine that I have two type of documents: Customers - contains information such as region, locale, etc) Purchases - contain details about individual purchases). There is a parent/child relationship between customers/purchases. I need to generate…
Tofig Hasanov
  • 3,303
  • 10
  • 51
  • 81
-1
votes
3 answers

Store and Search Stock Symbols AWS Architecture - Elasticsearch or DynamoDB

I have an external API to synchronize all the Stock Symbols from all markets (NASDAQ, NYSE...). I have an AWS Lambda to get this data from the external API. Then I want a frontend website with a search bar, where the user can type "Tes" and it…
-1
votes
1 answer

connect to kibana index using python

I'm a beginner in using Kibana and I want to query my data using Python script, I'm not sure about how to connect to my Kibana index: from elasticsearch import Elasticsearch es = Elasticsearch() here is how I used elasticsearch library, but I'm not…
rufy26
  • 1
  • 1
-1
votes
1 answer

How to Access VPC enabled Elasticsearch Using AWS Lambda function

I am trying to access Elastic search cluster using lambda function. The problem I am facing is that it gives an error. The response is: { "errorMessage": "Failed to parse:…
-1
votes
1 answer

fluentd is not able to connect aws elasticsearch from eks

I have installed a aws-es-proxy helm chart. I am using https://github.com/kokuwaio/helm-charts/tree/main/charts/fluentd-elasticsearch repo for created fluentd. 2020-10-07 04:34:38 +0000 [error]: unexpected error error_class=NoMethodError…
-1
votes
2 answers

Is it possible to integrate functionbeat with AWS elasticsearch service?

I'm trying to integrate AWS Elasticsearch Service with Functionbeat follow a lot of…
-1
votes
3 answers

AWS Firehose delivery to Cross Account Elasticsearch in VPC

I have a Elasticsearch inside the VPC running in account A. I want to deliver logs from Firehose in Account B to the Elasticsearch in Account A. Is it possible? When I try to create delivery stream from AWS CLI I am getting below exception, $:…
-1
votes
1 answer

Failed to search on AWS Elasticsearch using python elasticsearch returns 411

I tried to search the data over AWS elasticsearch with python client elasticsearch I can able to create index, load data. But search is not working. Please help me out from this problem. Here is sample code: es.search(index="test_index", size=2,…
1 2 3
29
30