Questions tagged [amazon-opensearch]
242 questions
1
vote
1 answer
OpenSearch - Error when creating index using Java client
I'm trying to create index with given settings from json.
{
"settings": {
"index": {
"analysis": {
"analyzer": {
"my_synonym_analyzer": {
"type": "custom",
"tokenizer": "whitespace",
…

Sabu Shakya
- 334
- 4
- 15
1
vote
1 answer
Is it possible to avoid using basic authentication for AWS OpenSearch security plugin?
I created an AWS OpenSearch cluster with fine-grained access control and a master user & password. I use basic authentication to issue REST requests for the security plugin (_plugins/security/api). Some of the operations I do include creating a user…

user246392
- 2,661
- 11
- 54
- 96
1
vote
1 answer
opensearch dashboards (kibana) - start docker container with index pattern pre-configured
I have a docker-compose file containing opensearch:2.7 and opensearch-dashboards:2.7
services:
opensearch:
image: opensearchproject/opensearch
opensearch-dashboards:
image: opensearchproject/opensearch-dashboards
ports:
-…

terrywb
- 3,740
- 3
- 25
- 50
1
vote
1 answer
aws opensearch Timeout
am trying to reindex in opensearch for large data sets which is around 5gb, since the default timeout of opensearch is 30s , how do we increase the timeout to 5m or 10m
POST _reindex
{
"source": {
"index": "a"
},
"dest": {
"index":…

Keerthi Hassan
- 17
- 4
1
vote
1 answer
How do I specify record TTL in OpenSearch?
How do I define default record ttl for an index?
I read through OpenSearch's create index docs, but can't find how to define default ttl for an index.

quzhi65222714
- 334
- 3
- 9
1
vote
1 answer
How to make Elasticsearch case-insensitive without changing the existing documents?
I am a beginner in Elasticsearch and I am working on a project where the requirement is to look for field values that ought to start with the pattern that has been provided.
I'm using a wildcard for the search pattern in this case. (Eg:…

Green
- 577
- 3
- 10
- 28
1
vote
0 answers
how to resolve AWS OpenSearch error while putting shapshot into S3
I created snaphots of indexes from AWS OpenSearch. It was done successfully. When I'm trying put these snapshots into S3, but getting error:
PUT /_snapshot/snapshots/4
{
"type": "s3",
"settings": {
"bucket": "opensearch-snapshots",
…

annn
- 63
- 5
1
vote
1 answer
Update AWS opensearch "Max clause count" attribute via terraform
I'm trying to update Opensearch "Max clause count" via terraform, but I didn't find a terraform resource that contains this attribute.
That's the code of my resource:
resource "aws_elasticsearch_domain" "discovery" {
domain_name =…

omer blechman
- 277
- 2
- 16
1
vote
1 answer
How can evaluate if AWS OpenSearch Serverless will be cost-effective?
We're currently using AWS OpenSearch Service, the traditional way in which you provision nodes. Recently, Amazon OpenSearch Serverless went GA, and we find interest in this option.
My question is, how can I assess if this will be a good choice for…

YoavKlein
- 2,005
- 9
- 38
1
vote
0 answers
In Opensearch, How do I provide permissions for a specific user/role to save a vega visualization
A user building a visualization in AWS opensearch doesn't have the ability to save the visualization.
When attempting to save the visualization:
{statusCode:403, error:'Forbidden'
message : "no permissions for [indices:data/write/bulk] and User…

gbegley
- 2,609
- 5
- 29
- 41
1
vote
0 answers
Logstash Output OpenSearch: 400 Bad request, aws_iam authentication
I try to configure the Logstash Output OpenSearch plugin to index data in OpenSearch 2.3.0 provisioned by AWS. The access to the AWS OpenService is controlled by IAM. I followed this configuration sample and built the following configuration:
…

Hutsul
- 1,535
- 4
- 31
- 51
1
vote
0 answers
AWS Elasticsearch / Opensearch - Get Metrics On What's Being Searched
I have an instance of Elasticsearch running in AWS OpenSearch. From the documentation I've found online, AWS has something called OpenSearch Dashboards that is essentially their own forked version of Kibana. This can be connected to my…

Lloyd Banks
- 35,740
- 58
- 156
- 248
1
vote
1 answer
OpenSearch 1.3 > 2.3 upgrade, CloudFormation fails on domain update
I recently updated our CDK code to move our OpenSearch cluster from version 1.3 to 2.3. The cluster itself seems to have upgraded to a healthy state and is still accessible / usable by our application, but CloudFormation failed when attempting to…

Anthony
- 806
- 7
- 14
1
vote
2 answers
Aws ElasticSearch is not being accessed from Lambda where as it is being accessed from the localhost
I have an ElasticSearch instance deployed in AWS which is pulically accessable. I can easily query data on localhost but when I deploy on Aws lambda I get the following error
Message: 'User:…

Hamza J
- 69
- 1
- 9
1
vote
2 answers
Stop AWS OpenSearch service temporarily for cost savings
I am looking at doing some cost savings in AWS and want to know if we can stop and then start the AWS Opensearch service for a couple of days.
My scenario is that the application which uses the OpenSearch service (Elasticsearch) remains down during…

Virus
- 2,445
- 1
- 14
- 17