[DOCS] Warn about the caveats with aliasing aliases #10106
Labels
:Data Management/Indices APIs
APIs to create and manage indices and templates
>docs
General docs changes
>enhancement
Aliases are just tags on indices and not constructs in their own right. At the moment you can create an alias using aliases by doing the following:
This makes it look like
thisWeek
points totoday
which points to2015-01-07
. What actually happens is that2015-01-07
gets two aliases:today
andthisWeek
. This works absolutely fine but anyone using this method needs to be aware that if they update thetoday
alias to point to08-01-2015
it will not update thethisWeek
alias and they will need to update that alias as well.Is this something we should add to the documentation?
The text was updated successfully, but these errors were encountered: