Amazon Elasticsearch Service is a managed Elasticsearch offering as part of Amazon Web Services.
Questions tagged [amazon-elasticsearch]
248 questions
0
votes
1 answer
How to secure access to AWS Elasticsearch from a mobile application
I'm building a mobile app that requires access to an AWS Elasticsearch (ES) cluster and would like to make sure only the app can make queries.
Assuming I'm not going to distribute AWS user credentials with my mobile application, what would be a…

Javier Artiles
- 175
- 1
- 2
- 7
0
votes
3 answers
Spring Boot Elastic Search And Not Able to Connect
I was following this tutorial on the Mkyong site
https://www.mkyong.com/spring-boot/spring-boot-spring-data-elasticsearch-example/
It uses the spring-boot-starter-data-elasticsearch library to connect to elasticSearch
I was using the following…

Damien Gallagher
- 535
- 1
- 6
- 16
0
votes
1 answer
Running aggregations on case insensitive keywords elasticsearch 5.1
I am trying to run aggregations on some keywords in my index but I want to lowercase all the keywords while indexing and searching but elastic 5.1 does not support normalizer. Also, I don't want to index them as text and enable fielddata. What are…

Ishank Gulati
- 633
- 1
- 8
- 22
0
votes
1 answer
AWS Elasticsearch python implementation
I am writing AWS Elasticsearch snapshots backup/restore implementation using python boto. I was able to register AWS S3 as ES snapshots repository. Here is the snippet of my create snapshots function.
import boto
import urllib
from boto.connection…

Pankaj Kolhe
- 241
- 1
- 4
- 20
0
votes
0 answers
DJANGO background task always on
I am currently developing an Django based web application which does some sentiment processing on global tweets and displays them on a google map. I am currently stuck in one part that how do i get the Django application to keep collecting tweets…

Pooja Gupta
- 357
- 1
- 4
- 13
0
votes
1 answer
Bad Request on AWS ElasticSearch
I'm trying to connect to an IAM controlled ElasticSearch domain, I've created a request, and signed it, and everything works fine for method GET, but on method POST I get a 400 Bad Request
This clearly has something to do with the payload. If I…

lostinplace
- 1,538
- 3
- 14
- 38
0
votes
1 answer
Why do I get 403 forbidden error while posting a json to elasticsearch endpoint on AWS?
I am posting a json to AWS elasticsearch,using a java lambda function.
public Object handleRequest(DynamodbEvent dynamodbEvent, Context context) {
//code to general the json document
AmazonDynamoDBClient…
user7399250
0
votes
1 answer
How not to analyze time based indices in elasticsearch?
We are creating time based indices in Elasticsearch. We need to ensure that all string fields are "not analyzed". What are the best practices to achieve this? **Sample indices are: bounce-email_2017-01-25, bounce-email_2017-01-26,…

Onkaar Singh
- 10,187
- 3
- 14
- 26
0
votes
1 answer
AWS ElasticSearch 2.3 Java HTTP bulk API
I'm attampting to use a bulk HTTP api in Java on AWS ElasticSearch 2.3.
When I use a rest client for teh bulk load, I get the following error:
504 GATEWAY_TIMEOUT
When I run it as Lambda in Java, for HTTP Posts, I get:
{
"errorMessage":…

user2917629
- 883
- 2
- 15
- 30
0
votes
1 answer
Laravel Scout with AWS ElasticSearch added Basic Auth Header
So I am using Laravel Scout in a 5.3 app to connect to AWS ElasticSearch. Everything is connected except when I try to connect to ElasticSearch an extra Basic Auth header is being added even though I am specifying an IAM credentials. Specifically,…

jjohnson
- 39
- 1
- 6
0
votes
1 answer
What does it mean to use "Amazon ES for content recommendations"?
Looking at the marketing literature for amazon kinesis analytics, I'm looking through their real-time log analytics flow and they have a 4th step where the data is piped to Amazon ES for content suggestions.
What is Amazon ES? Is that their…

MonkeyBonkey
- 46,433
- 78
- 254
- 460
0
votes
1 answer
elasticsearch term aggregation over not_analyzed string returns buckets with very low doc count
While playing with AWS Elasticsearch (2.3), I loaded it with some sample data
https://www.elastic.co/guide/en/kibana/3.0/snippets/shakespeare.json with following mapping
$ curl --url…

T A
- 566
- 5
- 13
0
votes
1 answer
AWS ElasticSearch Loading Streaming Data
I am following this guide to load realtime web traffic data into S3, configure Lambda to load into ES domain index. Currently for each record, I create a new json file in S3 bucket named like this {GUID}.json that contains only one row. for…

Bo Hu
- 327
- 1
- 3
- 13
0
votes
2 answers
Accessing Kibana of AWS ElasticSearch by Gateway using AWS IAM
I'm studying about ELK Stack and AWS Gateway.
I created AWS ElasticSearch and set this access policy:
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": {
"AWS": "arn:aws:iam::[AWS account…

Camarar
- 11
- 4
0
votes
2 answers
How to index Dynamodb streams data in Amazon Elasticsearch Services via AWS Lambda?
I followed step by step this tutorial but when I'm arriving at the "Testing the result" step, I don't see my table name in the indices time as "all products" is showed in the example.
So it means my dynamodb table is not indexed in my Amazon ES…

John doe
- 3,680
- 7
- 31
- 65