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

org.elasticsearch.index.IndexModule Maven / Gradle / Ivy

There is a newer version: 8.14.0
Show newest version
/*
 * 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.index;

import org.apache.lucene.index.DirectoryReader;
import org.apache.lucene.index.FilterDirectoryReader;
import org.apache.lucene.index.IndexReader;
import org.apache.lucene.index.LeafReader;
import org.apache.lucene.search.similarities.BM25Similarity;
import org.apache.lucene.search.similarities.Similarity;
import org.apache.lucene.store.MMapDirectory;
import org.apache.lucene.util.Constants;
import org.apache.lucene.util.SetOnce;
import org.elasticsearch.Version;
import org.elasticsearch.client.internal.Client;
import org.elasticsearch.cluster.metadata.IndexNameExpressionResolver;
import org.elasticsearch.cluster.service.ClusterService;
import org.elasticsearch.common.TriFunction;
import org.elasticsearch.common.io.stream.NamedWriteableRegistry;
import org.elasticsearch.common.settings.Setting;
import org.elasticsearch.common.settings.Setting.Property;
import org.elasticsearch.common.settings.Settings;
import org.elasticsearch.common.util.BigArrays;
import org.elasticsearch.common.util.Maps;
import org.elasticsearch.core.CheckedFunction;
import org.elasticsearch.core.IOUtils;
import org.elasticsearch.env.NodeEnvironment;
import org.elasticsearch.index.analysis.AnalysisRegistry;
import org.elasticsearch.index.analysis.IndexAnalyzers;
import org.elasticsearch.index.cache.query.DisabledQueryCache;
import org.elasticsearch.index.cache.query.IndexQueryCache;
import org.elasticsearch.index.cache.query.QueryCache;
import org.elasticsearch.index.engine.Engine;
import org.elasticsearch.index.engine.EngineFactory;
import org.elasticsearch.index.mapper.IdFieldMapper;
import org.elasticsearch.index.mapper.MapperRegistry;
import org.elasticsearch.index.mapper.MapperService;
import org.elasticsearch.index.shard.IndexEventListener;
import org.elasticsearch.index.shard.IndexingOperationListener;
import org.elasticsearch.index.shard.SearchOperationListener;
import org.elasticsearch.index.similarity.SimilarityService;
import org.elasticsearch.index.store.FsDirectoryFactory;
import org.elasticsearch.indices.IndicesQueryCache;
import org.elasticsearch.indices.breaker.CircuitBreakerService;
import org.elasticsearch.indices.fielddata.cache.IndicesFieldDataCache;
import org.elasticsearch.indices.recovery.RecoveryState;
import org.elasticsearch.plugins.IndexStorePlugin;
import org.elasticsearch.script.ScriptService;
import org.elasticsearch.search.aggregations.support.ValuesSourceRegistry;
import org.elasticsearch.threadpool.ThreadPool;
import org.elasticsearch.xcontent.XContentParserConfiguration;

import java.io.IOException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Set;
import java.util.concurrent.atomic.AtomicBoolean;
import java.util.function.BiFunction;
import java.util.function.BooleanSupplier;
import java.util.function.Consumer;
import java.util.function.Function;

/**
 * IndexModule represents the central extension point for index level custom implementations like:
 * 
    *
  • {@link Similarity} - New {@link Similarity} implementations can be registered through * {@link #addSimilarity(String, TriFunction)} while existing Providers can be referenced through Settings under the * {@link IndexModule#SIMILARITY_SETTINGS_PREFIX} prefix along with the "type" value. For example, to reference the * {@link BM25Similarity}, the configuration {@code "index.similarity.my_similarity.type : "BM25"} can be used.
  • *
  • {@link IndexStorePlugin.DirectoryFactory} - Custom {@link IndexStorePlugin.DirectoryFactory} instances can be registered * via {@link IndexStorePlugin}
  • *
  • {@link IndexEventListener} - Custom {@link IndexEventListener} instances can be registered via * {@link #addIndexEventListener(IndexEventListener)}
  • *
  • Settings update listener - Custom settings update listener can be registered via * {@link #addSettingsUpdateConsumer(Setting, Consumer)}
  • *
*/ public final class IndexModule { public static final Setting NODE_STORE_ALLOW_MMAP = Setting.boolSetting("node.store.allow_mmap", true, Property.NodeScope); private static final FsDirectoryFactory DEFAULT_DIRECTORY_FACTORY = new FsDirectoryFactory(); private static final IndexStorePlugin.RecoveryStateFactory DEFAULT_RECOVERY_STATE_FACTORY = RecoveryState::new; public static final Setting INDEX_STORE_TYPE_SETTING = new Setting<>( "index.store.type", "", Function.identity(), Property.IndexScope, Property.NodeScope ); public static final Setting INDEX_RECOVERY_TYPE_SETTING = new Setting<>( "index.recovery.type", "", Function.identity(), Property.IndexScope, Property.NodeScope ); /** On which extensions to load data into the file-system cache upon opening of files. * This only works with the mmap directory, and even in that case is still * best-effort only. */ public static final Setting> INDEX_STORE_PRE_LOAD_SETTING = Setting.listSetting( "index.store.preload", Collections.emptyList(), Function.identity(), Property.IndexScope, Property.NodeScope ); public static final String SIMILARITY_SETTINGS_PREFIX = "index.similarity"; // whether to use the query cache public static final Setting INDEX_QUERY_CACHE_ENABLED_SETTING = Setting.boolSetting( "index.queries.cache.enabled", true, Property.IndexScope ); // for test purposes only public static final Setting INDEX_QUERY_CACHE_EVERYTHING_SETTING = Setting.boolSetting( "index.queries.cache.everything", false, Property.IndexScope ); private final IndexSettings indexSettings; private final AnalysisRegistry analysisRegistry; private final EngineFactory engineFactory; private final SetOnce>> indexReaderWrapper = new SetOnce<>(); private final Set indexEventListeners = new HashSet<>(); private final Map> similarities = new HashMap<>(); private final Map directoryFactories; private final SetOnce> forceQueryCacheProvider = new SetOnce<>(); private final List searchOperationListeners = new ArrayList<>(); private final List indexOperationListeners = new ArrayList<>(); private final IndexNameExpressionResolver expressionResolver; private final AtomicBoolean frozen = new AtomicBoolean(false); private final BooleanSupplier allowExpensiveQueries; private final Map recoveryStateFactories; /** * Construct the index module for the index with the specified index settings. The index module contains extension points for plugins * via {@link org.elasticsearch.plugins.Plugin#onIndexModule(IndexModule)}. * * @param indexSettings the index settings * @param analysisRegistry the analysis registry * @param engineFactory the engine factory * @param directoryFactories the available store types */ public IndexModule( final IndexSettings indexSettings, final AnalysisRegistry analysisRegistry, final EngineFactory engineFactory, final Map directoryFactories, final BooleanSupplier allowExpensiveQueries, final IndexNameExpressionResolver expressionResolver, final Map recoveryStateFactories ) { this.indexSettings = indexSettings; this.analysisRegistry = analysisRegistry; this.engineFactory = Objects.requireNonNull(engineFactory); this.searchOperationListeners.add(new SearchSlowLog(indexSettings)); this.indexOperationListeners.add(new IndexingSlowLog(indexSettings)); this.directoryFactories = Collections.unmodifiableMap(directoryFactories); this.allowExpensiveQueries = allowExpensiveQueries; this.expressionResolver = expressionResolver; this.recoveryStateFactories = recoveryStateFactories; } /** * Adds a Setting and it's consumer for this index. */ public void addSettingsUpdateConsumer(Setting setting, Consumer consumer) { ensureNotFrozen(); if (setting == null) { throw new IllegalArgumentException("setting must not be null"); } indexSettings.getScopedSettings().addSettingsUpdateConsumer(setting, consumer); } /** * Adds a Setting, it's consumer and validator for this index. */ public void addSettingsUpdateConsumer(Setting setting, Consumer consumer, Consumer validator) { ensureNotFrozen(); if (setting == null) { throw new IllegalArgumentException("setting must not be null"); } indexSettings.getScopedSettings().addSettingsUpdateConsumer(setting, consumer, validator); } /** * Returns the index {@link Settings} for this index */ public Settings getSettings() { return indexSettings.getSettings(); } /** * Returns the {@link IndexSettings} for this index */ public IndexSettings indexSettings() { return indexSettings; } /** * Returns the index this module is associated with */ public Index getIndex() { return indexSettings.getIndex(); } /** * The engine factory provided during construction of this index module. * * @return the engine factory */ EngineFactory getEngineFactory() { return engineFactory; } /** * Adds an {@link IndexEventListener} for this index. All listeners added here * are maintained for the entire index lifecycle on this node. Once an index is closed or deleted these * listeners go out of scope. *

* Note: an index might be created on a node multiple times. For instance if the last shard from an index is * relocated to another node the internal representation will be destroyed which includes the registered listeners. * Once the node holds at least one shard of an index all modules are reloaded and listeners are registered again. * Listeners can't be unregistered they will stay alive for the entire time the index is allocated on a node. *

*/ public void addIndexEventListener(IndexEventListener listener) { ensureNotFrozen(); if (listener == null) { throw new IllegalArgumentException("listener must not be null"); } if (indexEventListeners.contains(listener)) { throw new IllegalArgumentException("listener already added"); } this.indexEventListeners.add(listener); } /** * Adds an {@link SearchOperationListener} for this index. All listeners added here * are maintained for the entire index lifecycle on this node. Once an index is closed or deleted these * listeners go out of scope. *

* Note: an index might be created on a node multiple times. For instance if the last shard from an index is * relocated to another node the internal representation will be destroyed which includes the registered listeners. * Once the node holds at least one shard of an index all modules are reloaded and listeners are registered again. * Listeners can't be unregistered they will stay alive for the entire time the index is allocated on a node. *

*/ public void addSearchOperationListener(SearchOperationListener listener) { ensureNotFrozen(); if (listener == null) { throw new IllegalArgumentException("listener must not be null"); } if (searchOperationListeners.contains(listener)) { throw new IllegalArgumentException("listener already added"); } this.searchOperationListeners.add(listener); } /** * Adds an {@link IndexingOperationListener} for this index. All listeners added here * are maintained for the entire index lifecycle on this node. Once an index is closed or deleted these * listeners go out of scope. *

* Note: an index might be created on a node multiple times. For instance if the last shard from an index is * relocated to another node the internal representation will be destroyed which includes the registered listeners. * Once the node holds at least one shard of an index all modules are reloaded and listeners are registered again. * Listeners can't be unregistered they will stay alive for the entire time the index is allocated on a node. *

*/ public void addIndexOperationListener(IndexingOperationListener listener) { ensureNotFrozen(); if (listener == null) { throw new IllegalArgumentException("listener must not be null"); } if (indexOperationListeners.contains(listener)) { throw new IllegalArgumentException("listener already added"); } this.indexOperationListeners.add(listener); } /** * Registers the given {@link Similarity} with the given name. * The function takes as parameters:
    *
  • settings for this similarity *
  • version of Elasticsearch when the index was created *
  • ScriptService, for script-based similarities *
* * @param name Name of the SimilarityProvider * @param similarity SimilarityProvider to register */ public void addSimilarity(String name, TriFunction similarity) { ensureNotFrozen(); if (similarities.containsKey(name) || SimilarityService.BUILT_IN.containsKey(name)) { throw new IllegalArgumentException("similarity for name: [" + name + " is already registered"); } similarities.put(name, similarity); } /** * Sets the factory for creating new {@link DirectoryReader} wrapper instances. * The factory ({@link Function}) is called once the IndexService is fully constructed. * NOTE: this method can only be called once per index. Multiple wrappers are not supported. *

* The {@link CheckedFunction} is invoked each time a {@link Engine.Searcher} is requested to do an operation, * for example search, and must return a new directory reader wrapping the provided directory reader or if no * wrapping was performed the provided directory reader. * The wrapped reader can filter out document just like delete documents etc. but must not change any term or * document content. * NOTE: The index reader wrapper ({@link CheckedFunction}) has a per-request lifecycle, * must delegate {@link IndexReader#getReaderCacheHelper()}, {@link LeafReader#getCoreCacheHelper()} * and must be an instance of {@link FilterDirectoryReader} that eventually exposes the original reader * via {@link FilterDirectoryReader#getDelegate()}. * The returned reader is closed once it goes out of scope. *

*/ public void setReaderWrapper( Function> indexReaderWrapperFactory ) { ensureNotFrozen(); this.indexReaderWrapper.set(indexReaderWrapperFactory); } IndexEventListener freeze() { // pkg private for testing if (this.frozen.compareAndSet(false, true)) { return new CompositeIndexEventListener(indexSettings, indexEventListeners); } else { throw new IllegalStateException("already frozen"); } } public static boolean isBuiltinType(String storeType) { for (Type type : Type.values()) { if (type.match(storeType)) { return true; } } return false; } public enum Type { HYBRIDFS("hybridfs"), NIOFS("niofs"), MMAPFS("mmapfs"), SIMPLEFS("simplefs"), FS("fs"); private final String settingsKey; Type(final String settingsKey) { this.settingsKey = settingsKey; } private static final Map TYPES; static { final Map types = Maps.newMapWithExpectedSize(4); for (final Type type : values()) { types.put(type.settingsKey, type); } TYPES = Collections.unmodifiableMap(types); } public String getSettingsKey() { return this.settingsKey; } public static Type fromSettingsKey(final String key) { final Type type = TYPES.get(key); if (type == null) { throw new IllegalArgumentException("no matching store type for [" + key + "]"); } return type; } /** * Returns true iff this settings matches the type. */ public boolean match(String setting) { return getSettingsKey().equals(setting); } } public static Type defaultStoreType(final boolean allowMmap) { if (allowMmap && Constants.JRE_IS_64BIT && MMapDirectory.UNMAP_SUPPORTED) { return Type.HYBRIDFS; } else { return Type.NIOFS; } } public IndexService newIndexService( IndexService.IndexCreationContext indexCreationContext, NodeEnvironment environment, XContentParserConfiguration parserConfiguration, IndexService.ShardStoreDeleter shardStoreDeleter, CircuitBreakerService circuitBreakerService, BigArrays bigArrays, ThreadPool threadPool, ScriptService scriptService, ClusterService clusterService, Client client, IndicesQueryCache indicesQueryCache, MapperRegistry mapperRegistry, IndicesFieldDataCache indicesFieldDataCache, NamedWriteableRegistry namedWriteableRegistry, IdFieldMapper idFieldMapper, ValuesSourceRegistry valuesSourceRegistry, IndexStorePlugin.IndexFoldersDeletionListener indexFoldersDeletionListener, Map snapshotCommitSuppliers ) throws IOException { final IndexEventListener eventListener = freeze(); Function> readerWrapperFactory = indexReaderWrapper .get() == null ? (shard) -> null : indexReaderWrapper.get(); eventListener.beforeIndexCreated(indexSettings.getIndex(), indexSettings.getSettings()); final IndexStorePlugin.DirectoryFactory directoryFactory = getDirectoryFactory(indexSettings, directoryFactories); final IndexStorePlugin.RecoveryStateFactory recoveryStateFactory = getRecoveryStateFactory(indexSettings, recoveryStateFactories); final IndexStorePlugin.SnapshotCommitSupplier snapshotCommitSupplier = getSnapshotCommitSupplier( indexSettings, snapshotCommitSuppliers ); QueryCache queryCache = null; IndexAnalyzers indexAnalyzers = null; boolean success = false; try { if (indexSettings.getValue(INDEX_QUERY_CACHE_ENABLED_SETTING)) { BiFunction queryCacheProvider = forceQueryCacheProvider.get(); if (queryCacheProvider == null) { queryCache = new IndexQueryCache(indexSettings, indicesQueryCache); } else { queryCache = queryCacheProvider.apply(indexSettings, indicesQueryCache); } } else { queryCache = new DisabledQueryCache(indexSettings); } if (IndexService.needsMapperService(indexSettings, indexCreationContext)) { indexAnalyzers = analysisRegistry.build(indexSettings); } final IndexService indexService = new IndexService( indexSettings, indexCreationContext, environment, parserConfiguration, new SimilarityService(indexSettings, scriptService, similarities), shardStoreDeleter, indexAnalyzers, engineFactory, circuitBreakerService, bigArrays, threadPool, scriptService, clusterService, client, queryCache, directoryFactory, eventListener, readerWrapperFactory, mapperRegistry, indicesFieldDataCache, searchOperationListeners, indexOperationListeners, namedWriteableRegistry, idFieldMapper, allowExpensiveQueries, expressionResolver, valuesSourceRegistry, recoveryStateFactory, indexFoldersDeletionListener, snapshotCommitSupplier ); success = true; return indexService; } finally { if (success == false) { IOUtils.closeWhileHandlingException(queryCache, indexAnalyzers); } } } private static IndexStorePlugin.DirectoryFactory getDirectoryFactory( final IndexSettings indexSettings, final Map indexStoreFactories ) { final String storeType = indexSettings.getValue(INDEX_STORE_TYPE_SETTING); final Type type; final Boolean allowMmap = NODE_STORE_ALLOW_MMAP.get(indexSettings.getNodeSettings()); if (storeType.isEmpty() || Type.FS.getSettingsKey().equals(storeType)) { type = defaultStoreType(allowMmap); } else { if (isBuiltinType(storeType)) { type = Type.fromSettingsKey(storeType); } else { type = null; } } if (allowMmap == false && (type == Type.MMAPFS || type == Type.HYBRIDFS)) { throw new IllegalArgumentException("store type [" + storeType + "] is not allowed because mmap is disabled"); } final IndexStorePlugin.DirectoryFactory factory; if (storeType.isEmpty() || isBuiltinType(storeType)) { factory = DEFAULT_DIRECTORY_FACTORY; } else { factory = indexStoreFactories.get(storeType); if (factory == null) { throw new IllegalArgumentException("Unknown store type [" + storeType + "]"); } } return factory; } private static IndexStorePlugin.RecoveryStateFactory getRecoveryStateFactory( final IndexSettings indexSettings, final Map recoveryStateFactories ) { final String recoveryType = indexSettings.getValue(INDEX_RECOVERY_TYPE_SETTING); if (recoveryType.isEmpty()) { return DEFAULT_RECOVERY_STATE_FACTORY; } IndexStorePlugin.RecoveryStateFactory factory = recoveryStateFactories.get(recoveryType); if (factory == null) { throw new IllegalArgumentException("Unknown recovery type [" + recoveryType + "]"); } return factory; } // By default we flush first so that the snapshot is as up-to-date as possible. public static final IndexStorePlugin.SnapshotCommitSupplier DEFAULT_SNAPSHOT_COMMIT_SUPPLIER = e -> e.acquireLastIndexCommit(true); private static IndexStorePlugin.SnapshotCommitSupplier getSnapshotCommitSupplier( final IndexSettings indexSettings, final Map snapshotCommitSuppliers ) { final String storeType = indexSettings.getValue(INDEX_STORE_TYPE_SETTING); // we check that storeType refers to a valid store type in getDirectoryFactory() so there's no need for strictness here too. final IndexStorePlugin.SnapshotCommitSupplier snapshotCommitSupplier = snapshotCommitSuppliers.get(storeType); return snapshotCommitSupplier == null ? DEFAULT_SNAPSHOT_COMMIT_SUPPLIER : snapshotCommitSupplier; } /** * creates a new mapper service to do administrative work like mapping updates. This *should not* be used for document parsing. * doing so will result in an exception. */ public MapperService newIndexMapperService( XContentParserConfiguration parserConfiguration, MapperRegistry mapperRegistry, ScriptService scriptService ) throws IOException { return new MapperService( indexSettings, analysisRegistry.build(indexSettings), parserConfiguration, new SimilarityService(indexSettings, scriptService, similarities), mapperRegistry, () -> { throw new UnsupportedOperationException("no index query shard context available"); }, indexSettings.getMode().buildNoFieldDataIdFieldMapper(), scriptService ); } /** * Forces a certain query cache to use instead of the default one. If this is set * and query caching is not disabled with {@code index.queries.cache.enabled}, then * the given provider will be used. * NOTE: this can only be set once * * @see #INDEX_QUERY_CACHE_ENABLED_SETTING */ public void forceQueryCacheProvider(BiFunction queryCacheProvider) { ensureNotFrozen(); this.forceQueryCacheProvider.set(queryCacheProvider); } private void ensureNotFrozen() { if (this.frozen.get()) { throw new IllegalStateException("Can't modify IndexModule once the index service has been created"); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy