ilm-actions.asciidoc 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. [role="xpack"]
  2. [testenv="basic"]
  3. [[ilm-actions]]
  4. == Index lifecycle actions
  5. [[ilm-allocate-action]]
  6. <<ilm-allocate,Allocate>>::
  7. Move shards to nodes with different performance characteristics
  8. and reduce the number of replicas.
  9. [[ilm-delete-action]]<<ilm-delete,Delete>>::
  10. Permanently remove the index.
  11. [[ilm-forcemerge-action]]<<ilm-forcemerge,Force merge>>::
  12. Reduce the number of index segments and purge deleted documents.
  13. Makes the index read-only.
  14. [[ilm-freeze-action]]<<ilm-freeze,Freeze>>::
  15. Freeze the index to minimize its memory footprint.
  16. [[ilm-migrate-action]]<<ilm-migrate,Migrate>>::
  17. Move the index shards to the <<data-tiers, data tier>> that corresponds
  18. to the current {ilm-init] phase.
  19. [[ilm-readonly-action]]<<ilm-readonly,Read only>>::
  20. Block write operations to the index.
  21. [[ilm-rollover-action]]<<ilm-rollover,Rollover>>::
  22. Remove the index as the write index for the rollover alias and
  23. start indexing to a new index.
  24. ifdef::permanently-unreleased-branch[]
  25. [[ilm-searchable-snapshot-action]]<<ilm-searchable-snapshot, Searchable snapshot>>::
  26. Take a snapshot of the managed index in the configured repository
  27. and mount it as a searchable snapshot.
  28. endif::[]
  29. [[ilm-set-priority-action]]<<ilm-set-priority,Set priority>>::
  30. Lower the priority of an index as it moves through the lifecycle
  31. to ensure that hot indices are recovered first.
  32. [[ilm-shrink-action]]<<ilm-shrink,Shrink>>::
  33. Reduce the number of primary shards by shrinking the index into a new index.
  34. [[ilm-unfollow-action]]<<ilm-unfollow,Unfollow>>::
  35. Convert a follower index to a regular index.
  36. ifdef::permanently-unreleased-branch[]
  37. Performed automatically before a rollover or shrink action.
  38. endif::[]
  39. ifndef::permanently-unreleased-branch[]
  40. Performed automatically before a rollover, shrink, or searchable snapshot action.
  41. endif::[]
  42. [[ilm-wait-for-snapshot-action]]<<ilm-wait-for-snapshot,Wait for snapshot>>::
  43. Ensure that a snapshot exists before deleting the index.
  44. include::actions/ilm-allocate.asciidoc[]
  45. include::actions/ilm-delete.asciidoc[]
  46. include::actions/ilm-forcemerge.asciidoc[]
  47. include::actions/ilm-freeze.asciidoc[]
  48. include::actions/ilm-migrate.asciidoc[]
  49. include::actions/ilm-readonly.asciidoc[]
  50. include::actions/ilm-rollover.asciidoc[]
  51. ifdef::permanently-unreleased-branch[]
  52. include::actions/ilm-searchable-snapshot.asciidoc[]
  53. endif::[]
  54. include::actions/ilm-set-priority.asciidoc[]
  55. include::actions/ilm-shrink.asciidoc[]
  56. include::actions/ilm-unfollow.asciidoc[]
  57. include::actions/ilm-wait-for-snapshot.asciidoc[]