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

Best way to retire an index

I am retiring an old elastic search index in AWS that has not received a new document since 2016. However, something is still trying to search it. I still want deprecate this index in a manner manner where I can get back to the original state…
user2344442
  • 301
  • 1
  • 3
  • 8
0
votes
1 answer

Elastic Search - Filter data which match value along with data type

I am using ES 5.7 of AWS. There is list of objects stored in elastic search cluster.Each object has one field status which value is integer, but because of one programmatic bug of indexer for some objects status value stored as text instead of…
Ashok Singh
  • 233
  • 1
  • 4
  • 12
0
votes
1 answer

Is there a way for parsing the IAM users credentials inside a http body for the elasticsearch service?

I'm setting up some authentication methods in my elasticsearch endpoint in AWS. So, I'm trying to make HTTP requests to this endpoint parsing inside this body the IAM credentials but I have no idea how I can do it. Maybe adding a field in the…
0
votes
1 answer

How to migrate AWS Elasticsearch to Azure Elasticsearch?

Is there any procedure or documentation supported by Microsoft in order to migrate AWS Elasticsearch to Azure Elasticsearch? Do anyone knows the process to do so?
0
votes
1 answer

How to properly delete AWS ElasticSearch index to free disk space

I am using AWS ElasticSearch, and publishing data to it from AWS Kinesis Firehose delivery stream. In Kinesis Firehose settings I specified rotation period for ES index as 1 month. Every month Firehose will create new index for me appending month…
0
votes
0 answers

What are the methods which are used to increase the performance of AWS Elasticsearch service?

What are the methods used for the performance enhancement of AWS Elasticsearch in general? How can I achieve that? How many Data instances and Dedicated master instances are ideal for my app when the storage I provided is 10 GB. Can anyone explain…
0
votes
1 answer

How to get 3 random search results in elasticserch query

I have my elasticsearch query that returns record between the range of publishedDates: { query : { bool: { filter: [ ], must: { range: { publishedDate: { gte: "2018-11-01", lte:…
Bharthan
  • 1,458
  • 2
  • 17
  • 29
0
votes
1 answer

Can't connect to Elasticsearch (access key & secret not being respected) when running under IIS

I'm using the ElasticClient C# class for connecting to an Elasticsearch instance hosted on AWS. var pool = new SingleNodeConnectionPool(new Uri(Url)); var httpConnection = new AwsHttpConnection(Region); var config = new ConnectionSettings(pool,…
Justin
  • 17,670
  • 38
  • 132
  • 201
0
votes
1 answer

Elasticsearch nested sort - mismatch between document and nested object used for sorting

I've been developing a new search API with AWS Elasticsearch (version 6.2) as backend. Right now, I'm trying to support "sort" options for the API. My mapping is as follows (unrelated fields not included): { "properties": { "id": { …
0
votes
1 answer

Is there a way to define attribute type as Keyword in ElasticSearch Array data type?

I am working on indexing a large data set which has multiple name fields for a particular entity. I have defined the name field of type array and I am adding around 4 names in that. Some of the names have spaces in between and they are getting…
Divyesh Kalbhor
  • 385
  • 3
  • 19
0
votes
1 answer

Elastic search query for name / value pair columns pull

We have one document in elastic search with multiple sections of name/value pair and we want to fetch value's only based on name column value. "envelopeData": { "envelopeName": "Bills", "details": { "detail": [ { "name":…
0
votes
1 answer

Is there a way to control auto generated Elastic Search Index with amplify GraphQL transform @searchable annotation?

I am building a graphQL api with schema and annotations to use AWS Amplify's GraphQL transform. How can I control what kind of ES index it produces behind the scene? This is a simple API that provides search functionality based on the, lets say, "5…
0
votes
0 answers

Elasticsearch queries consuming 100% of CPU

I'm still relatively new to Elasticsearch and, currently, I'm attempting to switch from Solr to Elasticsearch and am seeing a huge increase in CPU usage when ES is on our production website. The site sees anywhere from 10,000 to 30,000 requests to…
Nathan
  • 2,699
  • 5
  • 30
  • 44
0
votes
1 answer

exact match with IN Operator in elasticsearch

How to find exact match of multiple text values with IN operation? e.g., SELECT * WHERE name in ('george','michael') AND testID in (1,2) When I try to run below query, it returns extra data for matching values e.g., "the george", not for the exact…
0
votes
1 answer

How to delete the Elasticsearch data without deleting visualization dashboards?

I am ingesting(using python-lambda) the data into AWS Elasticsearch cluster on a need basis. While ingesting the new data, I want to clear the old data but keep the visualizations intact. How can this be achieved? Currently, I am using…
ExploringApple
  • 1,348
  • 2
  • 17
  • 30