Questions tagged [amazon-elasticsearch]

Amazon Elasticsearch Service is a managed Elasticsearch offering as part of Amazon Web Services.

248 questions
1
vote
1 answer

Amazon ElasticSearch service Signature mismatch for PUT Request - Amazon SDK php V2

I am using Amazon ElasticSearch Service and when i tried to create SignatureV4 Request it is working fine for search operations (GET Requests). But when i tried to do some operations like create indices (Using PUT request), it will trough the…
1
vote
0 answers

How to get data (read) from AWS managed ElasticSearch using java

In AWS IOT, I created a thing (device), and published messages to a topic, say trucks/truck1234. I created an Elasticsearch domain and stored those messages to analyse further using Kibana. Up to now, all fine. Now i want to read the published…
Srikanth M
  • 31
  • 5
1
vote
2 answers

how to perform search on AWS managed ES using browser javascript SDK?

I am new to AWS managed ES. I earlier worked on ES as local server. I am trying to build two-tier web app using the AWS JavaScript sdk (no Node.js). I have created an managed ES node, but not able to find out the way to connect for search and other…
Shahnaz Khan
  • 1,055
  • 1
  • 14
  • 26
1
vote
2 answers

Have issues access to ES with AWS request signing

I am building a golang RESTful API and trying to access ES using signed requests. I have followed documentation on AWS the documentation of the Golang AWS elastic search client package I am using (olivere/elastic) Following golang code is used to…
1
vote
2 answers

Elasticsearch - Concatenate documents by recalculating mean, min, and max values

I have an index which has latency values reported every 2 seconds. These documents contain timestamp, mean, min, and max. After an arbitrary period of time (say one or two days), I would like to concatenate these documents to reduce space…
unclemeat
  • 5,029
  • 5
  • 28
  • 52
1
vote
1 answer

AWS ElasticSearch Client SDK

Is there any AWS ElasticSearch Client SDK for Java, which signs the requests with AWS credentials? I saw this, but I guess its for managing AWS Elasticsearch Service.
1
vote
1 answer

How can I integrate AWS RDS with the AWS Elasticsearch service

How do I integrate AWS RDS with the AWS Elasticsearch service? Is there any AWS service so that I can use it to stream data from AWS RDS to AWS Elasticsearch for Indexing?
1
vote
1 answer

How to set maximum number of permits for Redisson distributed lock

I have a Java module, that is run with AWS Lambda. This means that multiple instances of the module can be run at the same time. The module is used to access a certain API and retrieve data from it. The problem is that the API uses a leaky bucket…
1
vote
2 answers

AWS lambda error

I'm trying to create a lambda function which takes apache log files from s3 bucket parses them into JSON documents and adds them to ES, as recommended in the following link : https://github.com/awslabs/amazon-elasticsearch-lambda-samples but I'm…
1
vote
1 answer

Elasticsearch TransportError(400, 'mapper_parsing_exception')

I have some Python code where I am trying to parse some files into AWS ES. Below is the code: import re import elasticsearch import itertools from elasticsearch import Elasticsearch, RequestsHttpConnection, helpers from boto3 import client,…
1
vote
1 answer

404 HEAD issue when creating AWS Elasticsearch index

I am trying to create my first index using python and I keep getting a 404 index not found exception. Here is the current code: es = Elasticsearch([{'host': 'host_url', 'port': 443, 'use_ssl': True, 'timeout': 300}]) if…
1
vote
0 answers

How to make an autocompletion search form with data indexed in elasticsearch/kibana?

I have set a real time data indexation of my dynamodb streams into kibana. All work fine. When i make a research in kibana search bar, i can find data without any problem. However i want to make a little search engine in an HTML webpage that i will…
John doe
  • 3,680
  • 7
  • 31
  • 65
1
vote
1 answer

Error in cloudwatch logs while attempting to indexing data in an Amazon ES cluster

I'm following this tutorial to automatically index all my DynamoDB streams into the Amazon ElasticSearch service cluster that I created . I followed it step by step and I created all permissions policies. However, when I am testing, nothing is…
1
vote
2 answers

Allowing Elastic beanstalk app access to elasticsearch domain

I'm trying to allow beanstalk applications to access our elasticsearch service, but every method I find in your documentation fails to grant access to these apps. So far the only methods that worked for me in enabling access was to open the cluster…
1
vote
1 answer

AWS Elasticsearch Service not authorized to perform scroll

I'm trying to use elasticdump to copy indexes from AWS Elasticsearch Service: elasticdump --input=https://xxx.xx-xxx-x.es.amazonaws.com/my_index --output=my_index.json The relevant part of the policy: ... "Action": "es:*", "Resource": [ …
Michael
  • 3,206
  • 5
  • 26
  • 44