Questions tagged [amazon-opensearch]

242 questions
0
votes
0 answers

How to add range filter to Opensearch dashboard queries?

I have an Opensearch index with a unix epoch millis timestamp field defined as below: {"name":"asctime","type":"number","esTypes":["long"],"count":0,"scripted":false,"searchable":true,"aggregatable":true,"readFromDocValues":true} I'm able to query…
0
votes
0 answers

Open search aws ebs volume getting full

We are using kuberentes cluster and using fluent to send logs to open search aws service, we are having 2 nodes and 250GB of volume, but its getting full within 2 days, how do we troubleshoot this issue and how do we found which pod is generating…
0
votes
1 answer

Checking if a field exists for any and/or all nested objects

I took a look at ElasticSearch: search inside the array of objects and while it helps, I'm actually trying to determine if at least one has a field and if all nested objects have the field. Pretending we have an index of all refrigerators with a…
Erik Philips
  • 53,428
  • 11
  • 128
  • 150
0
votes
0 answers

Signalling end of indexing in elastic for ReactiveElasticsearchRepository?

I insert multiple documents using ReactiveElasticsearchRepository.saveAll. However, when I want to search just after that using findByName on my repository I get no results. Is it possible to somehow wait/query the indexing process to finish?
pixel
  • 24,905
  • 36
  • 149
  • 251
0
votes
2 answers

Open search query to retrieve data of past 10 seconds with matching query

I want create alert with extraction query. Query should fetch last 10 sec data and find the matching phrase I have tried below getting the matching phrase but it is taking from all the logs which are present. i want this phrase should search in last…
0
votes
0 answers

how to search in a dictionary using dashboards query language?

I have the following columns in my data: time variable 2021 mydic: {"value1" : 123, "value2" : 234} As you can see, the column variable contains some sort of dictionary. How can I filter on this using the discover pane in…
ℕʘʘḆḽḘ
  • 18,566
  • 34
  • 128
  • 235
0
votes
1 answer

Amazon OpenSearch: how many searches per index?

I have a cluster containing two indexes, and I'd like to see how many searches are going to each index. In the Amazon OpenSearch UI, and in Cloudwatch, I can see that the search rate is being tracked, but only at the cluster level, not at the index…
Mike Baranczak
  • 8,291
  • 8
  • 47
  • 71
0
votes
1 answer

How can I remove the login page when running OpenSearch Dashboards in Docker?

I'm running an OpenSearch instance in a docker container locally. I've added an OpenSearch Dashboards container alongside it, but there's a login screen when I access http://localhost:5601 in my browser. How can I disable the login page? This is…
rouan
  • 5,339
  • 6
  • 22
  • 36
0
votes
1 answer

Facing Issue for data migration from ElasticSearch 8.3 to Opensearch 1.3

I am trying to migrate database & data from ElasticSeach 8.3 (instance) to Opensearch 1.3 (domain). For that using _reindex API for data migration. It is giving below error : - Error : - Error parsing the response, remote is likely not an…
Sunrise
  • 29
  • 2
0
votes
1 answer

OpenSearch/ElasticSearch Error: unknown query [query]

I am trying to run a request against AWS OpenSearch with the _update_by_query plugin. In my code (below) I am trying to update the value of the column "ccstatus" to the string "NULL" wherever it is Null (or not specified). However when I try to run…
0
votes
1 answer

OpenSearch Getting Run Execution Times

I am doing research on AWS OpenSearch and one of the things I'm trying to measure is run times or execution times for different queries andindex commands. For example how long does it take to perform an action such as a query search, create index,…
dredbound
  • 1,579
  • 3
  • 17
  • 27
0
votes
1 answer

Return parent records even if no child records query matches

(this is actually AWS OpenSearch, which I believe is a fork of Elastic Search 7.x) So in this contrived example, I have a parent-child relationship between manufacturer and products. I want to return "acme" information and all of the products. …
Erik Philips
  • 53,428
  • 11
  • 128
  • 150
0
votes
3 answers

AWS Grafana connecting to AWS Opensearch `OpenSearch error: Bad Gateway`

We have an AWS Org with AWS Grafana running in the root account setup with Org access. We have successfully connected to AWS Prometheus and other data sources across different organization accounts. But cant get AWS Grafana to connect to Amazon…
Staggerlee011
  • 847
  • 2
  • 13
  • 23
0
votes
0 answers

Elasticsearch slow query during certain time period

We have an AWS OpenSearch index with 1 billion records (180 shards). The problem we face is whenever we query that index around 5 AM (UTC) we are getting the result fast (within a second). But the same query when we execute it around 2 PM (UTC) we…
0
votes
2 answers

How to issue POST requests to opensearch cluster in VPC?

I've deployed an opensearch cluster into a VPC. I have a VPC endpoint and can successfully issue GET requests to "VPC endpoint URL"/_cluster/settings to get the cluster config, but issuing POST requests to the same URL does not work. Should issuing…