Move to ultrawarm aws managed elasticsearch

Hello all,
We have aws managed Elasticsearch(now opensearch) with weekly indices. We use curator for index retention. Here is what were are doing now

---
actions:
  1:
    action: delete_indices
    description: >-
      Delete indices older than 2 weeks.
    options:
      ignore_empty_list: True
      timeout_override:
      continue_if_exception: False
      disable_action: False
    filters:
    - filtertype: age
      source: name
      direction: older
      timestring: '%Y.%W'
      unit: weeks
      unit_count: 4
      exclude:

We would now like to move indices to ultrawarm first and then delete after a certain amount of time(in weeks).
Unfortunately I haven't found anything in the forum to tackle this. Could someone help me out with how to move to ultrawarm after x weeks before deleting?
Thank you

Unfortunately Opensearch is not supported here, you will need to reach out Amazon for this.

But, UltraWarm is an Opensearch feature only, it does not exists in Elasticsearch, and curator is build to work with Elasticsearch, it works with Opensearch in some cases, but since the APIs are different, I do not think that it supports things like that.

2 Likes

Thank you @leandrojmp.
I was trying to avoid asm as in our case it's not very feasible but I guess I don't have other choice.
B.R

We are unable to help with this sorry, you need to ask aws.

Thank you @warkolm .

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.