Amazon Elasticsearch Service is a managed Elasticsearch offering as part of Amazon Web Services.
Questions tagged [amazon-elasticsearch]
248 questions
0
votes
0 answers
Test connection between logstash and aws es cluster
So I have a java program which writes a dummy log to a file dummyLog.log every second.
log.error("127.23.12.331 - - [17/May/2015:10:05:03 +0000] \"GET /presentations/logstash-monitorama-2013");
My logstash configuration file :
input {
file {
…

Karup
- 2,024
- 3
- 22
- 48
0
votes
1 answer
ElasticSearch - date range condition should match EXACTLY one item from date range array
I am planning to store million of airbnb type apartments availabilty in elasticsearch .
Where availabilty is an array that contains nested objects (availability type is nested).
And each of those objects have date range, in which that apartment is…

JVK
- 3,782
- 8
- 43
- 67
0
votes
1 answer
ElasticSearch querying using JestClient seems to be very slow
I have recently read about Elasticsearch, and I am using Jest to interact with Amazon Elasticsearch Service. I have been able to leverage Jest's documents and index data into the ES.
However, when I try to query using a boolean query, I see…

Tejas Chopra
- 133
- 1
- 2
- 12
0
votes
3 answers
Getting error 'ascii' codec can't decode byte 0xc3 in position 149: ordinal not in range(128)' when rebuilding haystack index
I have an application where I have to store people's names and make them searchable. The technologies I am using are python (v2.7.6) django (v1.9.5) rest framwork. The dbms is postgresql (v9.2). Since the user names can be arabic we are using utf-8…

taimur
- 103
- 8
0
votes
1 answer
AWS Elasticsearch log format and filter patterns
If my logs are in a key=value format, is there a way to make a filter pattern by keyword in AWS elasticsearch? So far I just don't see a way.
Log:
timestamp=[2016-03-02 17:02:46,129] level=INFO transaction_id=352841324125…

alexfvolk
- 1,810
- 4
- 20
- 40
0
votes
1 answer
Adding a new HTTP client to Elasticsearch to support client apps to run against AWS Elasticsearch?
I am trying to add Elasticsearch HTTP access to the Titan ES client using JEST. titan-es only supports ES' local and transport (TCP) mode. But I would like to support communication over ES' HTTP interface. That would allow client libraries like…

Ingo
- 1,552
- 10
- 31
0
votes
0 answers
How to analyze an HTML text with compound words
I'm writing a search service based on Elasticsearch for a bunch of sites with content written in agglutinated languages like Swedish, German and Finnish.
I know that Elasticsearch offers language analyzers by default but after some testing I found…

Kralizek
- 1,999
- 1
- 28
- 47
-1
votes
1 answer
How to query for the NodeIds in an AWS Elasticsearch cluster?
I'm trying to use Boto3 to return data about the nodes in an AWS elastic search cluster like free storage space, CPU usage, etc. I know that the Ids of the nodes in the cluster can change when the cluster is restarted so I don't want to hardcode…