Package org.elasticsearch.plugins
Interface IndexStorePlugin
-
public interface IndexStorePluginA plugin that provides alternative directory implementations.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceIndexStorePlugin.DirectoryFactoryAn interface that describes how to create a new directory instance per shard.
-
Method Summary
Modifier and Type Method Description java.util.Map<java.lang.String,IndexStorePlugin.DirectoryFactory>getDirectoryFactories()TheIndexStorePlugin.DirectoryFactorymappings for this plugin.
-
-
-
Method Detail
-
getDirectoryFactories
java.util.Map<java.lang.String,IndexStorePlugin.DirectoryFactory> getDirectoryFactories()
TheIndexStorePlugin.DirectoryFactorymappings for this plugin. When an index is created the store type settingIndexModule.INDEX_STORE_TYPE_SETTINGon the index will be examined and either use the default or a built-in type, or looked up among all the directory factories fromIndexStorePluginplugins.- Returns:
- a map from store type to an directory factory
-
-