Questions tagged [amazon-elasticsearch]

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

248 questions
0
votes
1 answer

How do I find out that Amazon ElasticSearch service is used instead of casual ES?

I am writing my tool for Elasticsearch and have found out that when working with Amazon that some parts work differently. So I am writing custom handlers for that. But is there a way I can determine that ES cluster is on AWS ES?
naneri
  • 3,771
  • 2
  • 29
  • 53
0
votes
0 answers

How to see the indexing rate in elasticsearch cluster in AWS on Kibana?

If you deploy elasticsearch on a server, you can see the indexing rate on "Stack Monitoring", but this option is missing from Elasticsearch in AWS. Is there any way to activate it or to replicate it with other software?
0
votes
2 answers

Searching for a field in AWS ElasticSearch

After indexing ddb records into ElasticSearch, when doing a simple search /_search?q=test, I see the hits shown like this "hits": [ { // ignore other fields ... "_id": "z0YdS3I", "_source":…
chepukha
  • 2,371
  • 3
  • 28
  • 40
0
votes
0 answers

Exact search getting less precedence than phonetic search?

I have an elasticsearch index and am using the following query: "_source": [ "title", "content" ], "size": 15, "from": 0, "query": { "bool": { "must": { "multi_match": { …
0
votes
1 answer

Trying to consolidate multiple Amazon DynamoDB tables into one

Scenario: I've got a semi-structured dataset in JSON format. I'm storing the 3 subsets (new_records, upated_records, and deleted_records) from the dataset in 3 different Amazon DynamoDB tables. Scheduled to truncate and load daily. I'm trying to…
Ronnie
  • 992
  • 1
  • 9
  • 25
0
votes
1 answer

Elastic Search update doesn't return any result with node.js

I have an elastic search connection in my code as below. const config = require('../../config/index'); const logger = require('winston'); var elasticsearch = require('elasticsearch'); var elasticClient; var state = { connection:…
Sachin Shah
  • 4,503
  • 3
  • 23
  • 50
0
votes
1 answer

Any way in ElasticSearch it would automatically increase the cluster size?

Is there any way in Amazon elastic search, that it automatically adds the data nodes when the used size of the cluster is about to reach the maximum? Or someone, always have to do it manually?
hatellla
  • 4,796
  • 8
  • 49
  • 101
0
votes
0 answers

How to Authenticate Amazon Elasticsearch Service with AWS Access key ID & Secret access key?

I'm using Amazon Elasticsearch Service. I need to authenticate it with the access_key_id and secret_access_key. I saw some aws-sdk available for this service but I need to access the URL in terminal. Something similar to this. curl -H…
Guru
  • 411
  • 3
  • 20
0
votes
1 answer

using AWS Elastic search with VPC endpoint django haystack

I want to use AWS Elastic-search service with my django application which is running on EC2 instance. For that I use the settings - HAYSTACK_CONNECTIONS = { 'default': { 'ENGINE':…
0
votes
1 answer

Error inserting json file in aws elasticsearch

I have a small json file am using t2 instance in elasticsearch, but I am unable to insert the data in aws elasticsearch my file looks like following [{"Company_Name": "11 plc (NGSE:MOBIL)", "Business_Description": "11 plc markets petroleum products…
Khaned
  • 441
  • 2
  • 14
0
votes
1 answer

already stored zipped S3 data to ElasticSearch Aws

I've been doing some research on how to move zipped S3 data to Elasticsearch. On Aws website there is information where you could create a lambda that unzips file and re-upload it then move it to ES. Right now since I do not have too large dataset I…
haneulkim
  • 4,406
  • 9
  • 38
  • 80
0
votes
2 answers

Logstash : Is there a way to change some of the properties in document while migrating

I have been migrating some of the indexes from self-hosted Elasticsearch to AmazonElasticSearch using Logstash. While migrating the documents, We need to change the field names in the index based on some logic. Our Logstash Config file input { …
Thilak
  • 126
  • 2
  • 12
0
votes
1 answer

Logstash: Missing data after migration

I have been migrating one of the indexes in self-hosted Elasticsearch to amazon-elasticsearch using Logstash. we have around 1812 documents in our self-hosted Elasticsearch but in amazon-elasticsearch, we have only about 637 documents. Half of the…
Thilak
  • 126
  • 2
  • 12
0
votes
2 answers

Java Elasticsearch Highlevel REST Client lib on AWS Managed Elasticsearch

I use Java Elasticsearch Highlevel REST Client lib on AWS Managed Elasticsearch like below, and I got error. public static void main(String[] args) throws Exception { RestHighLevelClient client = new RestHighLevelClient( …
Bromo Programmer
  • 670
  • 2
  • 13
  • 37
0
votes
2 answers

Standard way to monitor ingress traffic in K8 or EKS

Is there a standard way to monitor the traffic of K8 Ingress. We were trying to extract metrics like Requests per second HTTP errors Response time etc... Specific Environment AWS EKS Nginx ingress AWS Elastic search service [Store and search…