Curator: allocating / moving shards to non-existing nodes

Hi,
consider the following action defined in curator:

1:
action: allocation
description: "move data from hot to warm nodes after 14 days"
options:
  key: box_type
  value: warm
  allocation_type: require
  wait_for_completion: True
  continue_if_exception: False
  disable_action: False
  ignore_empty_list: True
filters:
- filtertype: pattern
  kind: prefix
  value: data-
- filtertype: age
  source: name
  direction: older
  timestring: '%Y-%m-%d'
  unit: days
  unit_count: 14

Consider this action to be run by curator against a cluster that only contains "hot-nodes" / no nodes tagged as "warm".

From my point of view, the filter should find indices to consider, but no nodes to be the target of the reallocation, so the action should have no effect in this case, has it?

Thx in advance

It will set an index.routing.allocation.require.box_type: warm setting on the index which will affect the allocation of shards. If there are no warm boxes then I think it doesn't immediately deallocate the replicas, but it will prevent any further replicas from being allocated and will harm your clusters resilience if nodes restart.

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