- Plugins and Integrations: other versions:
- Introduction to plugins
- Plugin management
- API extension plugins
- Analysis plugins
- ICU analysis plugin
- Japanese (kuromoji) analysis plugin
kuromoji
analyzerkuromoji_iteration_mark
character filterkuromoji_tokenizer
kuromoji_baseform
token filterkuromoji_part_of_speech
token filterkuromoji_readingform
token filterkuromoji_stemmer
token filterja_stop
token filterkuromoji_number
token filterhiragana_uppercase
token filterkatakana_uppercase
token filterkuromoji_completion
token filter
- Korean (nori) analysis plugin
- Phonetic analysis plugin
- Smart Chinese analysis plugin
- Stempel Polish analysis plugin
- Ukrainian analysis plugin
- Discovery plugins
- Mapper plugins
- Snapshot/restore repository plugins
- Store plugins
- Integrations
- Creating an Elasticsearch plugin
Listing, removing and updating installed plugins
editListing, removing and updating installed plugins
editListing plugins
editA list of the currently loaded plugins can be retrieved with the list
option:
sudo bin/elasticsearch-plugin list
Alternatively, use the node-info API to find out which plugins are installed on each node in the cluster
Removing plugins
editPlugins can be removed manually, by deleting the appropriate directory under
plugins/
, or using the public script:
sudo bin/elasticsearch-plugin remove [pluginname]
After a Java plugin has been removed, you will need to restart the node to complete the removal process.
By default, plugin configuration files (if any) are preserved on disk; this is
so that configuration is not lost while upgrading a plugin. If you wish to
purge the configuration files while removing a plugin, use -p
or --purge
.
This can option can be used after a plugin is removed to remove any lingering
configuration files.
Removing multiple plugins
editMultiple plugins can be removed in one invocation as follows:
sudo bin/elasticsearch-plugin remove [pluginname] [pluginname] ... [pluginname]
Updating plugins
editExcept for text analysis plugins that are created using the stable plugin API, plugins are built for a specific version of Elasticsearch, and must be reinstalled each time Elasticsearch is updated.
sudo bin/elasticsearch-plugin remove [pluginname] sudo bin/elasticsearch-plugin install [pluginname]