plugins.asciidoc 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295
  1. [[modules-plugins]]
  2. == Plugins
  3. [float]
  4. === Plugins
  5. Plugins are a way to enhance the basic elasticsearch functionality in a
  6. custom manner. They range from adding custom mapping types, custom
  7. analyzers (in a more built in fashion), native scripts, custom discovery
  8. and more.
  9. [float]
  10. [[installing]]
  11. ==== Installing plugins
  12. Installing plugins can either be done manually by placing them under the
  13. `plugins` directory, or using the `plugin` script.
  14. Installing plugins typically take the following form:
  15. [source,sh]
  16. -----------------------------------
  17. bin/plugin install plugin_name
  18. -----------------------------------
  19. The plugin will be automatically downloaded in this case from `download.elastic.co` download service using the
  20. same version as your elasticsearch version.
  21. For older version of elasticsearch (prior to 2.0.0) or community plugins, you would use the following form:
  22. [source,sh]
  23. -----------------------------------
  24. bin/plugin install <org>/<user/component>/<version>
  25. -----------------------------------
  26. The plugins will be automatically downloaded in this case from `download.elastic.co` (for older plugins),
  27. and in case they don't exist there, from maven (central and sonatype).
  28. Note that when the plugin is located in maven central or sonatype
  29. repository, `<org>` is the artifact `groupId` and `<user/component>` is
  30. the `artifactId`.
  31. A plugin can also be installed directly by specifying the URL for it,
  32. for example:
  33. [source,sh]
  34. -----------------------------------
  35. bin/plugin install plugin-name --url file:///path/to/plugin
  36. -----------------------------------
  37. You can run `bin/plugin -h`.
  38. [float]
  39. [[site-plugins]]
  40. ==== Site Plugins
  41. Plugins can have "sites" in them, any plugin that exists under the
  42. `plugins` directory with a `_site` directory, its content will be
  43. statically served when hitting `/_plugin/[plugin_name]/` url. Those can
  44. be added even after the process has started.
  45. Installed plugins that do not contain any java related content, will
  46. automatically be detected as site plugins, and their content will be
  47. moved under `_site`.
  48. The ability to install plugins from Github allows to easily install site
  49. plugins hosted there by downloading the actual repo, for example,
  50. running:
  51. [source,js]
  52. --------------------------------------------------
  53. bin/plugin install mobz/elasticsearch-head
  54. bin/plugin install lukas-vlcek/bigdesk
  55. --------------------------------------------------
  56. Will install both of those site plugins, with `elasticsearch-head`
  57. available under `http://localhost:9200/_plugin/head/` and `bigdesk`
  58. available under `http://localhost:9200/_plugin/bigdesk/`.
  59. [float]
  60. ==== Mandatory Plugins
  61. If you rely on some plugins, you can define mandatory plugins using the
  62. `plugin.mandatory` attribute, for example, here is a sample config:
  63. [source,js]
  64. --------------------------------------------------
  65. plugin.mandatory: mapper-attachments,lang-groovy
  66. --------------------------------------------------
  67. For safety reasons, if a mandatory plugin is not installed, the node
  68. will not start.
  69. [float]
  70. ==== Installed Plugins
  71. A list of the currently loaded plugins can be retrieved using the
  72. <<cluster-nodes-info,Node Info API>>.
  73. [float]
  74. ==== Removing plugins
  75. Removing plugins can either be done manually by removing them under the
  76. `plugins` directory, or using the `plugin` script.
  77. Removing plugins typically take the following form:
  78. [source,sh]
  79. -----------------------------------
  80. plugin remove <pluginname>
  81. -----------------------------------
  82. [float]
  83. ==== Silent/Verbose mode
  84. When running the `plugin` script, you can get more information (debug mode) using `--verbose`.
  85. On the opposite, if you want `plugin` script to be silent, use `--silent` option.
  86. Note that exit codes could be:
  87. * `0`: everything was OK
  88. * `64`: unknown command or incorrect option parameter
  89. * `74`: IO error
  90. * `70`: other errors
  91. [source,sh]
  92. -----------------------------------
  93. bin/plugin install mobz/elasticsearch-head --verbose
  94. plugin remove head --silent
  95. -----------------------------------
  96. [float]
  97. ==== Timeout settings
  98. By default, the `plugin` script will wait indefinitely when downloading before failing.
  99. The timeout parameter can be used to explicitly specify how long it waits. Here is some examples of setting it to
  100. different values:
  101. [source,sh]
  102. -----------------------------------
  103. # Wait for 30 seconds before failing
  104. bin/plugin install mobz/elasticsearch-head --timeout 30s
  105. # Wait for 1 minute before failing
  106. bin/plugin install mobz/elasticsearch-head --timeout 1m
  107. # Wait forever (default)
  108. bin/plugin install mobz/elasticsearch-head --timeout 0
  109. -----------------------------------
  110. [float]
  111. ==== Proxy settings
  112. To install a plugin via a proxy, you can pass the proxy details using the environment variables `proxyHost` and `proxyPort`.
  113. [source,sh]
  114. -----------------------------------
  115. set JAVA_OPTS="-DproxyHost=host_name -DproxyPort=port_number"
  116. bin/plugin install mobz/elasticsearch-head
  117. -----------------------------------
  118. [float]
  119. ==== Lucene version dependent plugins
  120. For some plugins, such as analysis plugins, a specific major Lucene version is
  121. required to run. In that case, the plugin provides in its `es-plugin.properties`
  122. file the Lucene version for which the plugin was built for.
  123. If present at startup the node will check the Lucene version before loading the plugin.
  124. You can disable that check using `plugins.check_lucene: false`.
  125. [float]
  126. [[known-plugins]]
  127. === Known Plugins
  128. [float]
  129. [[analysis-plugins]]
  130. ==== Analysis Plugins
  131. .Supported by Elasticsearch
  132. * https://github.com/elasticsearch/elasticsearch-analysis-icu[ICU Analysis plugin]
  133. * https://github.com/elasticsearch/elasticsearch-analysis-kuromoji[Japanese (Kuromoji) Analysis plugin].
  134. * https://github.com/elasticsearch/elasticsearch-analysis-smartcn[Smart Chinese Analysis Plugin]
  135. * https://github.com/elasticsearch/elasticsearch-analysis-stempel[Stempel (Polish) Analysis plugin]
  136. .Supported by the community
  137. * https://github.com/barminator/elasticsearch-analysis-annotation[Annotation Analysis Plugin] (by Michal Samek)
  138. * https://github.com/yakaz/elasticsearch-analysis-combo/[Combo Analysis Plugin] (by Olivier Favre, Yakaz)
  139. * https://github.com/jprante/elasticsearch-analysis-hunspell[Hunspell Analysis Plugin] (by Jörg Prante)
  140. * https://github.com/medcl/elasticsearch-analysis-ik[IK Analysis Plugin] (by Medcl)
  141. * https://github.com/suguru/elasticsearch-analysis-japanese[Japanese Analysis plugin] (by suguru).
  142. * https://github.com/medcl/elasticsearch-analysis-mmseg[Mmseg Analysis Plugin] (by Medcl)
  143. * https://github.com/chytreg/elasticsearch-analysis-morfologik[Morfologik (Polish) Analysis plugin] (by chytreg)
  144. * https://github.com/imotov/elasticsearch-analysis-morphology[Russian and English Morphological Analysis Plugin] (by Igor Motov)
  145. * https://github.com/synhershko/elasticsearch-analysis-hebrew[Hebrew Analysis Plugin] (by Itamar Syn-Hershko)
  146. * https://github.com/medcl/elasticsearch-analysis-pinyin[Pinyin Analysis Plugin] (by Medcl)
  147. * https://github.com/medcl/elasticsearch-analysis-string2int[String2Integer Analysis Plugin] (by Medcl)
  148. * https://github.com/duydo/elasticsearch-analysis-vietnamese[Vietnamese Analysis Plugin] (by Duy Do)
  149. [float]
  150. [[discovery-plugins]]
  151. ==== Discovery Plugins
  152. .Supported by Elasticsearch
  153. * https://github.com/elasticsearch/elasticsearch-cloud-aws[AWS Cloud Plugin] - EC2 discovery and S3 Repository
  154. * https://github.com/elasticsearch/elasticsearch-cloud-azure[Azure Cloud Plugin] - Azure discovery
  155. * https://github.com/elasticsearch/elasticsearch-cloud-gce[Google Compute Engine Cloud Plugin] - GCE discovery
  156. .Supported by the community
  157. * https://github.com/shikhar/eskka[eskka Discovery Plugin] (by Shikhar Bhushan)
  158. * https://github.com/grantr/elasticsearch-srv-discovery[DNS SRV Discovery Plugin] (by Grant Rodgers)
  159. [float]
  160. [[transport]]
  161. ==== Transport Plugins
  162. .Supported by Elasticsearch
  163. * https://github.com/elasticsearch/elasticsearch-transport-wares[Servlet transport]
  164. .Supported by the community
  165. * https://github.com/tlrx/transport-zeromq[ZeroMQ transport layer plugin] (by Tanguy Leroux)
  166. * https://github.com/sonian/elasticsearch-jetty[Jetty HTTP transport plugin] (by Sonian Inc.)
  167. * https://github.com/kzwang/elasticsearch-transport-redis[Redis transport plugin] (by Kevin Wang)
  168. [float]
  169. [[scripting]]
  170. ==== Scripting Plugins
  171. .Supported by Elasticsearch
  172. * https://github.com/elasticsearch/elasticsearch-lang-groovy[Groovy lang Plugin]
  173. * https://github.com/elasticsearch/elasticsearch-lang-javascript[JavaScript language Plugin]
  174. * https://github.com/elasticsearch/elasticsearch-lang-python[Python language Plugin]
  175. .Supported by the community
  176. * https://github.com/hiredman/elasticsearch-lang-clojure[Clojure Language Plugin] (by Kevin Downey)
  177. * https://github.com/NLPchina/elasticsearch-sql/[SQL language Plugin] (by nlpcn)
  178. [float]
  179. [[site]]
  180. ==== Site Plugins
  181. .Supported by the community
  182. * https://github.com/lukas-vlcek/bigdesk[BigDesk Plugin] (by Lukáš Vlček)
  183. * https://github.com/mobz/elasticsearch-head[Elasticsearch Head Plugin] (by Ben Birch)
  184. * https://github.com/royrusso/elasticsearch-HQ[Elasticsearch HQ] (by Roy Russo)
  185. * https://github.com/andrewvc/elastic-hammer[Hammer Plugin] (by Andrew Cholakian)
  186. * https://github.com/polyfractal/elasticsearch-inquisitor[Inquisitor Plugin] (by Zachary Tong)
  187. * https://github.com/karmi/elasticsearch-paramedic[Paramedic Plugin] (by Karel Minařík)
  188. * https://github.com/polyfractal/elasticsearch-segmentspy[SegmentSpy Plugin] (by Zachary Tong)
  189. * https://github.com/xyu/elasticsearch-whatson[Whatson Plugin] (by Xiao Yu)
  190. * https://github.com/lmenezes/elasticsearch-kopf[Kopf Plugin] (by lmenezes)
  191. [float]
  192. [[repository-plugins]]
  193. ==== Snapshot/Restore Repository Plugins
  194. .Supported by Elasticsearch
  195. * https://github.com/elasticsearch/elasticsearch-hadoop/tree/master/repository-hdfs[Hadoop HDFS] Repository
  196. * https://github.com/elasticsearch/elasticsearch-cloud-aws#s3-repository[AWS S3] Repository
  197. .Supported by the community
  198. * https://github.com/kzwang/elasticsearch-repository-gridfs[GridFS] Repository (by Kevin Wang)
  199. * https://github.com/wikimedia/search-repository-swift[Openstack Swift]
  200. [float]
  201. [[misc]]
  202. ==== Misc Plugins
  203. .Supported by Elasticsearch
  204. * https://github.com/elasticsearch/elasticsearch-mapper-attachments[Mapper Attachments Type plugin]
  205. .Supported by the community
  206. * https://github.com/carrot2/elasticsearch-carrot2[carrot2 Plugin]: Results clustering with carrot2 (by Dawid Weiss)
  207. * https://github.com/derryx/elasticsearch-changes-plugin[Elasticsearch Changes Plugin] (by Thomas Peuss)
  208. * https://github.com/johtani/elasticsearch-extended-analyze[Extended Analyze Plugin] (by Jun Ohtani)
  209. * https://github.com/YannBrrd/elasticsearch-entity-resolution[Entity Resolution Plugin] using http://github.com/larsga/Duke[Duke] for duplication detection (by Yann Barraud)
  210. * https://github.com/spinscale/elasticsearch-graphite-plugin[Elasticsearch Graphite Plugin] (by Alexander Reelsen)
  211. * https://github.com/mattweber/elasticsearch-mocksolrplugin[Elasticsearch Mock Solr Plugin] (by Matt Weber)
  212. * https://github.com/viniciusccarvalho/elasticsearch-newrelic[Elasticsearch New Relic Plugin] (by Vinicius Carvalho)
  213. * https://github.com/swoop-inc/elasticsearch-statsd-plugin[Elasticsearch Statsd Plugin] (by Swoop Inc.)
  214. * https://github.com/endgameinc/elasticsearch-term-plugin[Terms Component Plugin] (by Endgame Inc.)
  215. * http://tlrx.github.com/elasticsearch-view-plugin[Elasticsearch View Plugin] (by Tanguy Leroux)
  216. * https://github.com/sonian/elasticsearch-zookeeper[ZooKeeper Discovery Plugin] (by Sonian Inc.)
  217. * https://github.com/kzwang/elasticsearch-image[Elasticsearch Image Plugin] (by Kevin Wang)
  218. * https://github.com/wikimedia/search-highlighter[Elasticsearch Experimental Highlighter] (by Wikimedia Foundation/Nik Everett)
  219. * https://github.com/wikimedia/search-extra[Elasticsearch Trigram Accelerated Regular Expression Filter] (by Wikimedia Foundation/Nik Everett)
  220. * https://github.com/salyh/elasticsearch-security-plugin[Elasticsearch Security Plugin] (by Hendrik Saly)
  221. * https://github.com/codelibs/elasticsearch-taste[Elasticsearch Taste Plugin] (by CodeLibs Project)
  222. * http://siren.solutions/siren/downloads/[Elasticsearch SIREn Plugin]: Nested data search (by SIREn Solutions)