All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.elasticsearch.xpack.core.slm.history.package-info Maven / Gradle / Ivy

/*
 * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
 * or more contributor license agreements. Licensed under the Elastic License
 * 2.0; you may not use this file except in compliance with the Elastic License
 * 2.0.
 */

/**
 * This package contains the utility classes used to persist SLM policy execution results to an internal index.
 *
 * 

The {@link org.elasticsearch.xpack.core.slm.history.SnapshotLifecycleTemplateRegistry} class is registered as a * cluster state listener when the ILM plugin starts up. It executes only on the elected master node, and ensures that a template is * configured for the SLM history index, as well as an ILM policy (since the two are always enabled in lock step). * *

The {@link org.elasticsearch.xpack.core.slm.history.SnapshotHistoryItem} is used to encapsulate historical * information about a snapshot policy execution. This contains more data than the * {@link org.elasticsearch.xpack.core.slm.SnapshotInvocationRecord} since it is a more complete history record * stored on disk instead of a low surface area status entry. * *

The {@link org.elasticsearch.xpack.core.slm.history.SnapshotHistoryStore} manages the persistence of the previously * mentioned {@link org.elasticsearch.xpack.core.slm.history.SnapshotHistoryItem}. It simply does an asynchronous put * operation against the SLM history internal index. */ package org.elasticsearch.xpack.core.slm.history;





© 2015 - 2024 Weber Informatics LLC | Privacy Policy