plugins.asciidoc 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303
  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 --url file:///path/to/plugin --install plugin-name
  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. On Linux and Mac, here is an example of setting it:
  114. [source,sh]
  115. -----------------------------------
  116. bin/plugin -DproxyHost=host_name -DproxyPort=port_number --install mobz/elasticsearch-head
  117. -----------------------------------
  118. On Windows, here is an example of setting it:
  119. [source,sh]
  120. -----------------------------------
  121. set JAVA_OPTS="-DproxyHost=host_name -DproxyPort=port_number"
  122. bin/plugin --install mobz/elasticsearch-head
  123. -----------------------------------
  124. [float]
  125. ==== Lucene version dependent plugins
  126. For some plugins, such as analysis plugins, a specific major Lucene version is
  127. required to run. In that case, the plugin provides in its `es-plugin.properties`
  128. file the Lucene version for which the plugin was built for.
  129. If present at startup the node will check the Lucene version before loading the plugin.
  130. You can disable that check using `plugins.check_lucene: false`.
  131. [float]
  132. [[known-plugins]]
  133. === Known Plugins
  134. [float]
  135. [[analysis-plugins]]
  136. ==== Analysis Plugins
  137. .Supported by Elasticsearch
  138. * https://github.com/elasticsearch/elasticsearch-analysis-icu[ICU Analysis plugin]
  139. * https://github.com/elasticsearch/elasticsearch-analysis-kuromoji[Japanese (Kuromoji) Analysis plugin].
  140. * https://github.com/elasticsearch/elasticsearch-analysis-smartcn[Smart Chinese Analysis Plugin]
  141. * https://github.com/elasticsearch/elasticsearch-analysis-stempel[Stempel (Polish) Analysis plugin]
  142. .Supported by the community
  143. * https://github.com/barminator/elasticsearch-analysis-annotation[Annotation Analysis Plugin] (by Michal Samek)
  144. * https://github.com/yakaz/elasticsearch-analysis-combo/[Combo Analysis Plugin] (by Olivier Favre, Yakaz)
  145. * https://github.com/jprante/elasticsearch-analysis-hunspell[Hunspell Analysis Plugin] (by Jörg Prante)
  146. * https://github.com/medcl/elasticsearch-analysis-ik[IK Analysis Plugin] (by Medcl)
  147. * https://github.com/suguru/elasticsearch-analysis-japanese[Japanese Analysis plugin] (by suguru).
  148. * https://github.com/medcl/elasticsearch-analysis-mmseg[Mmseg Analysis Plugin] (by Medcl)
  149. * https://github.com/chytreg/elasticsearch-analysis-morfologik[Morfologik (Polish) Analysis plugin] (by chytreg)
  150. * https://github.com/imotov/elasticsearch-analysis-morphology[Russian and English Morphological Analysis Plugin] (by Igor Motov)
  151. * https://github.com/synhershko/elasticsearch-analysis-hebrew[Hebrew Analysis Plugin] (by Itamar Syn-Hershko)
  152. * https://github.com/medcl/elasticsearch-analysis-pinyin[Pinyin Analysis Plugin] (by Medcl)
  153. * https://github.com/medcl/elasticsearch-analysis-string2int[String2Integer Analysis Plugin] (by Medcl)
  154. * https://github.com/duydo/elasticsearch-analysis-vietnamese[Vietnamese Analysis Plugin] (by Duy Do)
  155. [float]
  156. [[discovery-plugins]]
  157. ==== Discovery Plugins
  158. .Supported by Elasticsearch
  159. * https://github.com/elasticsearch/elasticsearch-cloud-aws[AWS Cloud Plugin] - EC2 discovery and S3 Repository
  160. * https://github.com/elasticsearch/elasticsearch-cloud-azure[Azure Cloud Plugin] - Azure discovery
  161. * https://github.com/elasticsearch/elasticsearch-cloud-gce[Google Compute Engine Cloud Plugin] - GCE discovery
  162. .Supported by the community
  163. * https://github.com/shikhar/eskka[eskka Discovery Plugin] (by Shikhar Bhushan)
  164. * https://github.com/grantr/elasticsearch-srv-discovery[DNS SRV Discovery Plugin] (by Grant Rodgers)
  165. [float]
  166. [[transport]]
  167. ==== Transport Plugins
  168. .Supported by Elasticsearch
  169. * https://github.com/elasticsearch/elasticsearch-transport-wares[Servlet transport]
  170. .Supported by the community
  171. * https://github.com/tlrx/transport-zeromq[ZeroMQ transport layer plugin] (by Tanguy Leroux)
  172. * https://github.com/sonian/elasticsearch-jetty[Jetty HTTP transport plugin] (by Sonian Inc.)
  173. * https://github.com/kzwang/elasticsearch-transport-redis[Redis transport plugin] (by Kevin Wang)
  174. [float]
  175. [[scripting]]
  176. ==== Scripting Plugins
  177. .Supported by Elasticsearch
  178. * https://github.com/elasticsearch/elasticsearch-lang-groovy[Groovy lang Plugin]
  179. * https://github.com/elasticsearch/elasticsearch-lang-javascript[JavaScript language Plugin]
  180. * https://github.com/elasticsearch/elasticsearch-lang-python[Python language Plugin]
  181. .Supported by the community
  182. * https://github.com/hiredman/elasticsearch-lang-clojure[Clojure Language Plugin] (by Kevin Downey)
  183. * https://github.com/NLPchina/elasticsearch-sql/[SQL language Plugin] (by nlpcn)
  184. [float]
  185. [[site]]
  186. ==== Site Plugins
  187. .Supported by the community
  188. * https://github.com/lukas-vlcek/bigdesk[BigDesk Plugin] (by Lukáš Vlček)
  189. * https://github.com/mobz/elasticsearch-head[Elasticsearch Head Plugin] (by Ben Birch)
  190. * https://github.com/royrusso/elasticsearch-HQ[Elasticsearch HQ] (by Roy Russo)
  191. * https://github.com/andrewvc/elastic-hammer[Hammer Plugin] (by Andrew Cholakian)
  192. * https://github.com/polyfractal/elasticsearch-inquisitor[Inquisitor Plugin] (by Zachary Tong)
  193. * https://github.com/karmi/elasticsearch-paramedic[Paramedic Plugin] (by Karel Minařík)
  194. * https://github.com/polyfractal/elasticsearch-segmentspy[SegmentSpy Plugin] (by Zachary Tong)
  195. * https://github.com/xyu/elasticsearch-whatson[Whatson Plugin] (by Xiao Yu)
  196. * https://github.com/lmenezes/elasticsearch-kopf[Kopf Plugin] (by lmenezes)
  197. [float]
  198. [[repository-plugins]]
  199. ==== Snapshot/Restore Repository Plugins
  200. .Supported by Elasticsearch
  201. * https://github.com/elasticsearch/elasticsearch-hadoop/tree/master/repository-hdfs[Hadoop HDFS] Repository
  202. * https://github.com/elasticsearch/elasticsearch-cloud-aws#s3-repository[AWS S3] Repository
  203. .Supported by the community
  204. * https://github.com/kzwang/elasticsearch-repository-gridfs[GridFS] Repository (by Kevin Wang)
  205. * https://github.com/wikimedia/search-repository-swift[Openstack Swift]
  206. [float]
  207. [[misc]]
  208. ==== Misc Plugins
  209. .Supported by Elasticsearch
  210. * https://github.com/elasticsearch/elasticsearch-mapper-attachments[Mapper Attachments Type plugin]
  211. .Supported by the community
  212. * https://github.com/carrot2/elasticsearch-carrot2[carrot2 Plugin]: Results clustering with carrot2 (by Dawid Weiss)
  213. * https://github.com/derryx/elasticsearch-changes-plugin[Elasticsearch Changes Plugin] (by Thomas Peuss)
  214. * https://github.com/johtani/elasticsearch-extended-analyze[Extended Analyze Plugin] (by Jun Ohtani)
  215. * https://github.com/YannBrrd/elasticsearch-entity-resolution[Entity Resolution Plugin] using http://github.com/larsga/Duke[Duke] for duplication detection (by Yann Barraud)
  216. * https://github.com/spinscale/elasticsearch-graphite-plugin[Elasticsearch Graphite Plugin] (by Alexander Reelsen)
  217. * https://github.com/mattweber/elasticsearch-mocksolrplugin[Elasticsearch Mock Solr Plugin] (by Matt Weber)
  218. * https://github.com/viniciusccarvalho/elasticsearch-newrelic[Elasticsearch New Relic Plugin] (by Vinicius Carvalho)
  219. * https://github.com/swoop-inc/elasticsearch-statsd-plugin[Elasticsearch Statsd Plugin] (by Swoop Inc.)
  220. * https://github.com/endgameinc/elasticsearch-term-plugin[Terms Component Plugin] (by Endgame Inc.)
  221. * http://tlrx.github.com/elasticsearch-view-plugin[Elasticsearch View Plugin] (by Tanguy Leroux)
  222. * https://github.com/sonian/elasticsearch-zookeeper[ZooKeeper Discovery Plugin] (by Sonian Inc.)
  223. * https://github.com/kzwang/elasticsearch-image[Elasticsearch Image Plugin] (by Kevin Wang)
  224. * https://github.com/wikimedia/search-highlighter[Elasticsearch Experimental Highlighter] (by Wikimedia Foundation/Nik Everett)
  225. * https://github.com/wikimedia/search-extra[Elasticsearch Trigram Accelerated Regular Expression Filter] (by Wikimedia Foundation/Nik Everett)
  226. * https://github.com/salyh/elasticsearch-security-plugin[Elasticsearch Security Plugin] (by Hendrik Saly)
  227. * https://github.com/codelibs/elasticsearch-taste[Elasticsearch Taste Plugin] (by CodeLibs Project)
  228. * http://siren.solutions/siren/downloads/[Elasticsearch SIREn Plugin]: Nested data search (by SIREn Solutions)