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