getting-started-slm.asciidoc 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. [role="xpack"]
  2. [testenv="basic"]
  3. [[getting-started-snapshot-lifecycle-management]]
  4. === Configure snapshot lifecycle policies
  5. Let's get started with {slm} ({slm-init}) by working through a
  6. hands-on scenario. The goal of this example is to automatically back up {es}
  7. indices using the <<snapshot-restore,snapshots>> every day at a particular
  8. time. Once these snapshots have been created, they are kept for a configured
  9. amount of time and then deleted per a configured retention policy.
  10. [float]
  11. [[slm-gs-register-repository]]
  12. ==== Register a repository
  13. Before we can set up an SLM policy, we'll need to set up a
  14. snapshot repository where the snapshots will be
  15. stored. Repositories can use {plugins}/repository.html[many different backends],
  16. including cloud storage providers. You'll probably want to use one of these in
  17. production, but for this example we'll use a shared file system repository:
  18. [source,console]
  19. -----------------------------------
  20. PUT /_snapshot/my_repository
  21. {
  22. "type": "fs",
  23. "settings": {
  24. "location": "my_backup_location"
  25. }
  26. }
  27. -----------------------------------
  28. [float]
  29. [[slm-gs-create-policy]]
  30. ==== Setting up a snapshot policy
  31. Now that we have a repository in place, we can create a policy to automatically
  32. take snapshots. Policies are written in JSON and will define when to take
  33. snapshots, what the snapshots should be named, and which indices should be
  34. included, among other things. We'll use the <<slm-api-put-policy>> API
  35. to create the policy.
  36. When configurating a policy, retention can also optionally be configured. See
  37. the <<slm-retention,SLM retention>> documentation for the full documentation of
  38. how retention works.
  39. [source,console]
  40. --------------------------------------------------
  41. PUT /_slm/policy/nightly-snapshots
  42. {
  43. "schedule": "0 30 2 * * ?", <1>
  44. "name": "<nightly-snap-{now/d}>", <2>
  45. "repository": "my_repository", <3>
  46. "config": { <4>
  47. "indices": ["*"] <5>
  48. },
  49. "retention": { <6>
  50. "expire_after": "30d", <7>
  51. "min_count": 5, <8>
  52. "max_count": 50 <9>
  53. }
  54. }
  55. --------------------------------------------------
  56. // TEST[continued]
  57. <1> when the snapshot should be taken, using
  58. <<schedule-cron,Cron syntax>>, in this
  59. case at 1:30AM each day
  60. <2> whe name each snapshot should be given, using
  61. <<date-math-index-names,date math>> to include the current date in the name
  62. of the snapshot
  63. <3> the repository the snapshot should be stored in
  64. <4> the configuration to be used for the snapshot requests (see below)
  65. <5> which indices should be included in the snapshot, in this case, every index
  66. <6> Optional retention configuration
  67. <7> Keep snapshots for 30 days
  68. <8> Always keep at least 5 successful snapshots
  69. <9> Keep no more than 50 successful snapshots, even if they're less than 30 days old
  70. This policy will take a snapshot of every index each day at 1:30AM UTC.
  71. Snapshots are incremental, allowing frequent snapshots to be stored efficiently,
  72. so don't be afraid to configure a policy to take frequent snapshots.
  73. In addition to specifying the indices that should be included in the snapshot,
  74. the `config` field can be used to customize other aspects of the snapshot. You
  75. can use any option allowed in <<snapshots-take-snapshot,a regular snapshot
  76. request>>, so you can specify, for example, whether the snapshot should fail in
  77. special cases, such as if one of the specified indices cannot be found.
  78. [float]
  79. [[slm-gs-test-policy]]
  80. ==== Test the snapshot policy
  81. While snapshots taken by SLM policies can be viewed through the standard snapshot
  82. API, SLM also keeps track of policy successes and failures in ways that are a bit
  83. easier to use to make sure the policy is working. Once a policy has executed at
  84. least once, when you view the policy using the <<slm-api-get-policy>>,
  85. some metadata will be returned indicating whether the snapshot was sucessfully
  86. initiated or not.
  87. Instead of waiting for our policy to run, let's tell SLM to take a snapshot
  88. as using the configuration from our policy right now instead of waiting for
  89. 1:30AM.
  90. [source,console]
  91. --------------------------------------------------
  92. POST /_slm/policy/nightly-snapshots/_execute
  93. --------------------------------------------------
  94. // TEST[skip:we can't easily handle snapshots from docs tests]
  95. This request will kick off a snapshot for our policy right now, regardless of
  96. the schedule in the policy. This is useful for taking snapshots before making
  97. a configuration change, upgrading, or for our purposes, making sure our policy
  98. is going to work successfully. The policy will continue to run on its configured
  99. schedule after this execution of the policy.
  100. [source,console]
  101. --------------------------------------------------
  102. GET /_slm/policy/nightly-snapshots?human
  103. --------------------------------------------------
  104. // TEST[continued]
  105. This request will return a response that includes the policy, as well as
  106. information about the last time the policy succeeded and failed, as well as the
  107. next time the policy will be executed.
  108. [source,console-result]
  109. --------------------------------------------------
  110. {
  111. "nightly-snapshots" : {
  112. "version": 1,
  113. "modified_date": "2019-04-23T01:30:00.000Z",
  114. "modified_date_millis": 1556048137314,
  115. "policy" : {
  116. "schedule": "0 30 1 * * ?",
  117. "name": "<nightly-snap-{now/d}>",
  118. "repository": "my_repository",
  119. "config": {
  120. "indices": ["*"],
  121. },
  122. "retention": {
  123. "expire_after": "30d",
  124. "min_count": 5,
  125. "max_count": 50
  126. }
  127. },
  128. "last_success": { <1>
  129. "snapshot_name": "nightly-snap-2019.04.24-tmtnyjtrsxkhbrrdcgg18a", <2>
  130. "time_string": "2019-04-24T16:43:49.316Z",
  131. "time": 1556124229316
  132. } ,
  133. "last_failure": { <3>
  134. "snapshot_name": "nightly-snap-2019.04.02-lohisb5ith2n8hxacaq3mw",
  135. "time_string": "2019-04-02T01:30:00.000Z",
  136. "time": 1556042030000,
  137. "details": "{\"type\":\"index_not_found_exception\",\"reason\":\"no such index [important]\",\"resource.type\":\"index_or_alias\",\"resource.id\":\"important\",\"index_uuid\":\"_na_\",\"index\":\"important\",\"stack_trace\":\"[important] IndexNotFoundException[no such index [important]]\\n\\tat org.elasticsearch.cluster.metadata.IndexNameExpressionResolver$WildcardExpressionResolver.indexNotFoundException(IndexNameExpressionResolver.java:762)\\n\\tat org.elasticsearch.cluster.metadata.IndexNameExpressionResolver$WildcardExpressionResolver.innerResolve(IndexNameExpressionResolver.java:714)\\n\\tat org.elasticsearch.cluster.metadata.IndexNameExpressionResolver$WildcardExpressionResolver.resolve(IndexNameExpressionResolver.java:670)\\n\\tat org.elasticsearch.cluster.metadata.IndexNameExpressionResolver.concreteIndices(IndexNameExpressionResolver.java:163)\\n\\tat org.elasticsearch.cluster.metadata.IndexNameExpressionResolver.concreteIndexNames(IndexNameExpressionResolver.java:142)\\n\\tat org.elasticsearch.cluster.metadata.IndexNameExpressionResolver.concreteIndexNames(IndexNameExpressionResolver.java:102)\\n\\tat org.elasticsearch.snapshots.SnapshotsService$1.execute(SnapshotsService.java:280)\\n\\tat org.elasticsearch.cluster.ClusterStateUpdateTask.execute(ClusterStateUpdateTask.java:47)\\n\\tat org.elasticsearch.cluster.service.MasterService.executeTasks(MasterService.java:687)\\n\\tat org.elasticsearch.cluster.service.MasterService.calculateTaskOutputs(MasterService.java:310)\\n\\tat org.elasticsearch.cluster.service.MasterService.runTasks(MasterService.java:210)\\n\\tat org.elasticsearch.cluster.service.MasterService$Batcher.run(MasterService.java:142)\\n\\tat org.elasticsearch.cluster.service.TaskBatcher.runIfNotProcessed(TaskBatcher.java:150)\\n\\tat org.elasticsearch.cluster.service.TaskBatcher$BatchedTask.run(TaskBatcher.java:188)\\n\\tat org.elasticsearch.common.util.concurrent.ThreadContext$ContextPreservingRunnable.run(ThreadContext.java:688)\\n\\tat org.elasticsearch.common.util.concurrent.PrioritizedEsThreadPoolExecutor$TieBreakingPrioritizedRunnable.runAndClean(PrioritizedEsThreadPoolExecutor.java:252)\\n\\tat org.elasticsearch.common.util.concurrent.PrioritizedEsThreadPoolExecutor$TieBreakingPrioritizedRunnable.run(PrioritizedEsThreadPoolExecutor.java:215)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)\\n\\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)\\n\\tat java.base/java.lang.Thread.run(Thread.java:834)\\n\"}"
  138. } ,
  139. "next_execution": "2019-04-24T01:30:00.000Z", <4>
  140. "next_execution_millis": 1556048160000
  141. }
  142. }
  143. --------------------------------------------------
  144. // TESTRESPONSE[skip:the presence of last_failure and last_success is asynchronous and will be present for users, but is untestable]
  145. <1> information about the last time the policy successfully initated a snapshot
  146. <2> the name of the snapshot that was successfully initiated
  147. <3> information about the last time the policy failed to initiate a snapshot
  148. <4> the is the next time the policy will execute
  149. NOTE: This metadata only indicates whether the request to initiate the snapshot was
  150. made successfully or not - after the snapshot has been successfully started, it
  151. is possible for the snapshot to fail if, for example, the connection to a remote
  152. repository is lost while copying files.
  153. If you're following along, the returned SLM policy shouldn't have a `last_failure`
  154. field - it's included above only as an example. You should, however, see a
  155. `last_success` field and a snapshot name. If you do, you've successfully taken
  156. your first snapshot using SLM!
  157. While only the most recent sucess and failure are available through the Get Policy
  158. API, all policy executions are recorded to a history index, which may be queried
  159. by searching the index pattern `.slm-history*`.
  160. That's it! We have our first SLM policy set up to periodically take snapshots
  161. so that our backups are always up to date. You can read more details in the
  162. <<snapshot-lifecycle-management-api,SLM API documentation>> and the
  163. <<modules-snapshots,general snapshot documentation.>>