Questions tagged [amazon-opensearch]
242 questions
0
votes
0 answers
Open search SQL query based on date field
I have created an index named index_test in which completedAt field has the following mapping:
"completedAt": {
"type": "date",
"format": "epoch_millis",
"ignore_malformed": true,
},
I'm using the following query to search the…

Deepak Goyal
- 4,747
- 2
- 21
- 46
0
votes
1 answer
`aws opensearch` command is missing in AWS CLI
I'm trying to update AWS Opensearch using following command but "opensearch" command is missing!
aws opensearch start-service-software-update --domain-name --schedule-at "NOW"
AWS CLI Version: aws-cli/2.2.3

Ash
- 1,180
- 3
- 22
- 36
0
votes
1 answer
How to use size option on inner match field in opensearch query
I have below logs in my opensearch DB along with many more.
{
"took": 2,
"timed_out": false,
"_shards": {
"total": 1,
"successful": 1,
"skipped": 0,
"failed": 0
},
"hits": {
"total": {
"value": 5,
…
0
votes
0 answers
Amazon OpenSearch Service upgrade to from 2.3 to 2.5 hangs at 50% since 2 days
I tried to upgrade our production Amazon OpenSearch Service from 2.3 to 2.5 (after making the check which said OK) but the upgrade hangs since 16. March (two days) at 50% and now (at 6:00 ) the Snapshot failure status went from green to red.
Any…

Jörg Rech
- 1,339
- 2
- 13
- 25
0
votes
0 answers
Opensearch trending searches
I want to write an opensearch query for getting the trending or the top searches which the users have made.
I am unable to find anything in the docs related to this. Kindly help.
I have read through the docs and can't find something close to this. I…

Maddy
- 36
- 2
0
votes
0 answers
Elasticsearch search_analyzer has a lower score than expected
I use Elasticsearch version 7.10.0 and noticed that there is a difference in scoring when using search_analyzer with synonyms and using the synonyms as a normal analyzer (index + search).
For this I created two indexes, one that use the synonyms in…

user1934513
- 693
- 4
- 21
0
votes
0 answers
Possible to give Fluentd access to secured OpenSearch domain using IAM?
Describe the issue
I'm using the fluent-operator to deploy fluentdbit to collect logs and fluentd to process and send to an OpenSearch domain with advanced security configuration.
It works with open domains, but not with secured ones.
I noticed the…

Kaio H. Cunha
- 211
- 2
- 10
0
votes
0 answers
Default Secondary Sorting order in Elastic Search
Hey I have the following index in Elastic Search :
"properties": {
"Type": { "type": "keyword" },
"Name": {
"type": "text",
"copy_to": "RawData",
"fields": {
"raw": {
"type": "keyword",
…

SAIKAT CHAKRABORTY
- 15
- 3
0
votes
1 answer
How can I keep an amazon opensearch snapshot in my computer (and not is s3 bucket)
I have automatic snapshots of my opensearch cluster in amazon and I get list of them using this command:
GET _snapshot/cs-automated-enc
now I try to find a way to download this snapshot with all of its data to my computer maybe some day I want to…

Obtice
- 1,205
- 3
- 18
- 44
0
votes
1 answer
Elasticsearch 6.2.0 does not honour size parameter - always returns 10 docs
I'm using the Elasticsearch 6.2.0 Python client and querying an Amazon Opensearch 1.1 index. No matter what value I set the "size" parameter to in Python for a particular search term that I know has over 1000 matches, exactly 10 matching documents…

AlanSwansea
- 21
- 4
0
votes
0 answers
DDB to OpenSearch First Time Sync
We were introducing OpenSearch in our infra for searching & read use-case.
Continuous Sync : We will be doing this via DDB streams plus Lambda.
First Time Sync : Can someone guide us on the best approach one can take for this?

Diksha Goyal
- 260
- 6
- 19
0
votes
1 answer
AWS ElasticSearch ESHttpPost to account "A" with ES cluster setup from lambda in account "B"
I have an AWS ElasticSearch Cluster in account "A".
I'm trying to create a lambda (triggered via API) in account "B" that will fetch data from ES in account "A".
I'm getting the following error:
"Message":"User:…
0
votes
1 answer
OpenSearch Weird Search Behaviour
I encountered a weird search behaviour while exploring opensearch's search engine. All the records within my index are as follows:
[{
"_index": "table1",
"_id": "AO4AnIYBC-oD5gl3Hm7W",
"_score": 1,
"_source": {
…

Diksha Goyal
- 260
- 6
- 19
0
votes
0 answers
Search query in Kibana returning results but the same query in Node.js returns null hits
I have a search query for elastic which returns correct results when I run it in Kibana
{ "_source": ["name", "geotag"],
"query": {
"terms": {
"geotag": ["east", "central"]
}
},
"post_filter": {
"terms": {
"name":…

Hamza J
- 69
- 1
- 9
0
votes
0 answers
How to use common variable for muti-datasources in a single dashboard
I am having a existing grafana dashboard working on Thanos datasource and I have also included a elastic search(datasource) panel in the same dashboard by elasticsearch environment variable. Is there any posible way, having common variables (env,lz)…

only me
- 1
- 1