Amazon Elasticsearch Service is a managed Elasticsearch offering as part of Amazon Web Services.
Questions tagged [amazon-elasticsearch]
248 questions
5
votes
1 answer
Is there any difference between using synonyms_path and using synonyms when specifying synonym filter for Elasticsearch?
In term of performance, is there any difference between using synonyms_path and using synonyms when specifying synonym filter for Elasticsearch ? Please refer to the images for example. Note that in my ES cluster, there are many indices that will…

laituan245
- 83
- 7
5
votes
1 answer
AWS Elasticsearch Service Role Permissions
I'm trying to submit documents to an Elasticsearch index from a Python Lambda script running as a role which has the AmazonESFullAccess policy attached. I am creating the requests with the python elasticsearch library, and signing them with the…

unclemeat
- 5,029
- 5
- 28
- 52
5
votes
1 answer
Add multiple domain access policy to AWS Elasticsearch Service (Static IP and Lambda ARN)
After setting up AWS Elasticsearch, I installed Logstash and Kibana proxy on a static IP server, and added this domain access policy on ES and it's working fine:
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "",
"Effect":…

Jubba Smail
- 1,201
- 11
- 15
4
votes
0 answers
Amazon Elasticsearch Service, since upgrade to Amazon Opensearch service is unusably slow
Amazon OpenSearch Service (successor to Amazon Elasticsearch Service), since the upgrade from Amazon Elasticsearch service, the stock dashboards app has been cripplingly slow. Login, as well as most screen access (e.g. visualizations, dashboards,…

gbegley
- 2,609
- 5
- 29
- 41
4
votes
2 answers
Unable to resolve AWSRequestSigningApacheInterceptor
Hi All i have downloaded the below code from AWS in order to index the data to my elasticsearch service but it has end up with error i am unable to build the code.
package com.Lambda.dynamodb;
import org.apache.http.HttpHost;
import…

Mohan vel
- 505
- 9
- 29
4
votes
2 answers
Security token service exception while restoring snapshot from S3 to AWS managed elasticsearch
I have an AWS managed Elasticsearch Service (say smallES) which has an properly working S3 bucket attached to containing day wise rolling indices of last 1 year. I've created another AWS managed ES cluster (say bigES) for some business reason. I…

DeshErBojhaa
- 476
- 2
- 10
- 24
4
votes
0 answers
How can I add lemmatization to AWS Elastic Search
We used to use a lemmatizer with Sphinx search, but have now moved to AWS Elastic search. How can we add a lemmatizer to aws elastic search so when we search for "be", "are" is matched as well?

Paul Preibisch
- 4,115
- 2
- 27
- 32
4
votes
1 answer
Creating a valid signed request to an AWS ES instance from node.js
I'm trying to find an example of how to connect to an AWS ES instance in node.js, and then hit the ES cluster with a simple request.
I'm attempting to use the elasticsearch node package, along with an open source addon called http-aws-es to do…

GrantD71
- 1,787
- 3
- 19
- 27
4
votes
0 answers
AWS elastic search access - using Presigned URL
I'm using presigned URL with the generated aws signature and I can able to get default search responses like _search. But, I'm unable to query it. Below is my presigned URL…

Pradheep Narendran P
- 419
- 3
- 16
4
votes
1 answer
How to handle domain status of Amazon elasticsearch service?
I created an elasticsearch cluster and uploaded 45 GB of data.There, I tried to changed the access policy of the domain. The domain status has been showing "Processing" for last 24 hours. Is there any way to reset access policy and Why is the domain…

AV94
- 1,824
- 3
- 23
- 36
3
votes
2 answers
how to return all documents that has a subset of input array in OpenSearch
I have a document with given structure:
{ "name" : "WF1", "myIndex" : [3, 4, 5] }
Lets say I have 4 of such records -
{ "name" : "WF1", "myIndex" : [3, 4, 5] }
{ "name" : "WF2", "myIndex" : [6, 7, 8] }
{ "name" : "WF3", "myIndex" : [9, 10, 11] }
{…

Mohammad Adnan
- 6,527
- 6
- 29
- 47
3
votes
3 answers
How can I set compatibility mode for Amazon OpenSearch using CloudFormation?
Since AWS has replaced ElasticSearch with OpenSearch, some clients have issues connecting to the OpenSearch Service.
To avoid that, we can enable compatibility mode during the cluster creation.
Certain Elasticsearch OSS clients, such as Logstash,…

icalvete
- 987
- 2
- 16
- 50
3
votes
3 answers
AWS Opensearch with SAML authentication
I have configured SAML for my AWS Opensearch Service Dashboard and keep getting 'Internal Server Error' after succesfully logging in to Okta and getting redirected to the sso endpoint…

Jeroen VP
- 66
- 1
- 5
3
votes
1 answer
How to update nested elasticsearch value via bulkrequest?
We are using AWS Elasticsearch - 7.7 Version
I already followed Update nested field in an index of ElasticSearch with Java API
I have below JSON Elastic Search
{
"_index": "product",
"_type": "_doc",
"_source": {
"id": 1,
…

Jackson
- 1,426
- 3
- 27
- 60
3
votes
0 answers
Elasticsearch 7.1: Convert mongodb aggregation pipeline to elastic search query
This is my first time using elastic search so bear with me.
I have two schemas, Offers Schema and Offer Comment Schema, I need to search by offer title and have each offer result with its comments
Offer Schema:
{
title: {
type: String,
…

Ahmed Hamdy
- 31
- 1