org.elasticsearch.plugins.SystemIndexPlugin Maven / Gradle / Ivy
Show all versions of elasticsearch Show documentation
/*
* 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 and the Server Side Public License, v 1; you may not use this file except
* in compliance with, at your election, the Elastic License 2.0 or the Server
* Side Public License, v 1.
*/
package org.elasticsearch.plugins;
import org.elasticsearch.action.ActionListener;
import org.elasticsearch.action.admin.cluster.snapshots.features.ResetFeatureStateResponse;
import org.elasticsearch.client.internal.Client;
import org.elasticsearch.cluster.service.ClusterService;
import org.elasticsearch.common.settings.Settings;
import org.elasticsearch.indices.AssociatedIndexDescriptor;
import org.elasticsearch.indices.SystemDataStreamDescriptor;
import org.elasticsearch.indices.SystemIndexDescriptor;
import org.elasticsearch.indices.SystemIndices;
import java.util.Collection;
import java.util.Collections;
import java.util.Map;
/**
* A Plugin that can store state in protected Elasticsearch indices or data streams.
*
* A Plugin that implements this interface can define {@link SystemIndexDescriptor}s and {@link SystemDataStreamDescriptor}s using
* index patterns. Any index or data stream matching these patterns will be separated from user space.
*
*
The indices and data streams will be restricted to users whose relevant index permissions have the “allow_restricted_indices”
* parameter set to true. Accessing these indices without using specific headers may result in a deprecation warning, or, in some cases,
* will result in denial of the request. In the future, all requests without correct headers will be rejected or ignored.
*
*
SystemIndexPlugin extends {@link ActionPlugin} because, ideally, the plugin will provide its own APIs for manipulating its resources,
* rather than providing direct access to the indices or data streams. However, if direct index access is required, system index
* descriptors can be defined as “external” (see {@link SystemIndexDescriptor.Type}).
*
*
A SystemIndexPlugin may also specify “associated indices,” which hold plugin state in user space. These indices are not managed or
* protected, but they are included in snapshots of the feature.
*
*
An implementation of SystemIndexPlugin may override {@link #cleanUpFeature(ClusterService, Client, ActionListener)} in order to
* provide a “factory reset” of the plugin state. This can be useful for testing. The default method will simply retrieve a list of
* system and associated indices and delete them.
*
*
An implementation may also override {@link #prepareForIndicesMigration(ClusterService, Client, ActionListener)} and
* {@link #indicesMigrationComplete(Map, ClusterService, Client, ActionListener)} in order to take special action before and after a
* feature migration, which will temporarily block access to system indices. For example, a plugin might want to enter a safe mode and
* reject certain requests while the migration is in progress. See {@link org.elasticsearch.upgrades.SystemIndexMigrationExecutor} for
* more details.
*
*
After plugins are loaded, the {@link SystemIndices} class will provide the rest of the system with access to the feature's
* descriptors.
*/
public interface SystemIndexPlugin extends ActionPlugin {
/**
* Returns a {@link Collection} of {@link SystemIndexDescriptor}s that describe this plugin's system indices, including
* name, mapping, and settings.
* @param settings The node's settings. Note that although this parameter is not heavily used in our codebase, it could be an
* excellent way to make the definition of a system index responsive to settings on the node.
* @return Descriptions of the system indices managed by this plugin.
*/
default Collection getSystemIndexDescriptors(Settings settings) {
return Collections.emptyList();
}
default Collection getSystemDataStreamDescriptors() {
return Collections.emptyList();
}
/**
* @return The name of the feature, as used for specifying feature states in snapshot creation and restoration.
*/
String getFeatureName();
/**
* @return A description of the feature, as used for the Get Snapshottable Features API.
*/
String getFeatureDescription();
/**
* Returns a list of descriptors for "associated indices": indices which depend on this plugin's system indices, but are not
* themselves system indices.
*
* @return A list of descriptors of indices which depend on the contents of this plugin's system indices, but are not themselves system
* indices
*/
default Collection getAssociatedIndexDescriptors() {
return Collections.emptyList();
}
/**
* Cleans up the state of the feature by deleting system indices and associated indices.
* Override to do more for cleanup (e.g. cancelling tasks).
* @param clusterService Cluster service to provide cluster state
* @param client A client, for executing actions
* @param listener Listener for post-cleanup result
*/
default void cleanUpFeature(
ClusterService clusterService,
Client client,
ActionListener listener
) {
SystemIndices.Feature.cleanUpFeature(
getSystemIndexDescriptors(clusterService.getSettings()),
getAssociatedIndexDescriptors(),
getFeatureName(),
clusterService,
client,
listener
);
}
/**
* A method used to signal that the system indices owned by this plugin are about to be upgraded.
*
* This method will typically be called once, before any changes are made to the system indices owned by this plugin. However, if there
* is a master failover at exactly the wrong time during the upgrade process, this may be called more than once, though this should be
* very rare.
*
* This method can also store metadata to be passed to
* {@link SystemIndexPlugin#indicesMigrationComplete(Map, ClusterService, Client, ActionListener)} when it is called; see the
* {@code listener} parameter for details.
*
* @param clusterService The cluster service.
* @param client A {@link org.elasticsearch.client.internal.ParentTaskAssigningClient} with the parent task set to the upgrade task.
* Does not set the origin header, so implementors of this method will likely want to wrap it in an
* {@link org.elasticsearch.client.internal.OriginSettingClient}.
* @param listener A listener that should have {@link ActionListener#onResponse(Object)} called once all necessary preparations for the
* upgrade of indices owned by this plugin have been completed. The {@link Map} passed to the listener will be stored
* and passed to {@link #indicesMigrationComplete(Map, ClusterService, Client, ActionListener)}. Note the contents of
* the map *must* be writeable using {@link org.elasticsearch.common.io.stream.StreamOutput#writeGenericValue(Object)}.
*/
default void prepareForIndicesMigration(ClusterService clusterService, Client client, ActionListener