2016-05-04 12:17:10 -04:00
|
|
|
[[modules-scripting]]
|
|
|
|
== Scripting
|
2013-08-28 19:24:34 -04:00
|
|
|
|
2016-05-04 12:17:10 -04:00
|
|
|
The scripting module enables you to use scripts to evaluate custom
|
|
|
|
expressions. For example, you could use a script to return "script fields"
|
|
|
|
as part of a search request or evaluate a custom score for a query.
|
|
|
|
|
2016-08-30 12:06:18 -04:00
|
|
|
The default scripting language is <<modules-scripting-painless, `Painless`>>.
|
2016-05-04 12:17:10 -04:00
|
|
|
Additional `lang` plugins enable you to run scripts written in other languages.
|
|
|
|
Everywhere a script can be used, you can include a `lang` parameter
|
|
|
|
to specify the language of the script.
|
|
|
|
|
|
|
|
[float]
|
|
|
|
=== General-purpose languages:
|
|
|
|
|
|
|
|
These languages can be used for any purpose in the scripting APIs,
|
|
|
|
and give the most flexibility.
|
|
|
|
|
|
|
|
[cols="<,<,<",options="header",]
|
|
|
|
|=======================================================================
|
|
|
|
|Language
|
|
|
|
|Sandboxed
|
|
|
|
|Required plugin
|
|
|
|
|
|
|
|
|<<modules-scripting-painless, `painless`>>
|
|
|
|
|yes
|
|
|
|
|built-in
|
|
|
|
|
|
|
|
|=======================================================================
|
|
|
|
|
|
|
|
[float]
|
|
|
|
=== Special-purpose languages:
|
|
|
|
|
|
|
|
These languages are less flexible, but typically have higher performance for
|
|
|
|
certain tasks.
|
|
|
|
|
|
|
|
[cols="<,<,<,<",options="header",]
|
|
|
|
|=======================================================================
|
|
|
|
|Language
|
|
|
|
|Sandboxed
|
|
|
|
|Required plugin
|
|
|
|
|Purpose
|
|
|
|
|
|
|
|
|<<modules-scripting-expression, `expression`>>
|
|
|
|
|yes
|
|
|
|
|built-in
|
|
|
|
|fast custom ranking and sorting
|
|
|
|
|
|
|
|
|<<search-template, `mustache`>>
|
|
|
|
|yes
|
|
|
|
|built-in
|
|
|
|
|templates
|
|
|
|
|
|
|
|
|<<modules-scripting-native, `java`>>
|
|
|
|
|n/a
|
|
|
|
|you write it!
|
|
|
|
|expert API
|
|
|
|
|
|
|
|
|=======================================================================
|
|
|
|
|
|
|
|
[WARNING]
|
|
|
|
.Scripts and security
|
|
|
|
=================================================
|
|
|
|
|
|
|
|
Languages that are sandboxed are designed with security in mind. However, non-
|
|
|
|
sandboxed languages can be a security issue, please read
|
|
|
|
<<modules-scripting-security, Scripting and security>> for more details.
|
|
|
|
|
|
|
|
=================================================
|
|
|
|
|
|
|
|
|
|
|
|
include::scripting/using.asciidoc[]
|
|
|
|
|
|
|
|
include::scripting/fields.asciidoc[]
|
2013-08-28 19:24:34 -04:00
|
|
|
|
2016-01-31 08:54:17 -05:00
|
|
|
include::scripting/security.asciidoc[]
|
2016-05-04 12:17:10 -04:00
|
|
|
|
|
|
|
include::scripting/painless.asciidoc[]
|
|
|
|
|
2016-06-24 12:06:41 -04:00
|
|
|
include::scripting/painless-syntax.asciidoc[]
|
|
|
|
|
2016-11-21 14:38:41 -05:00
|
|
|
include::scripting/painless-debugging.asciidoc[]
|
|
|
|
|
2016-05-04 12:17:10 -04:00
|
|
|
include::scripting/expression.asciidoc[]
|
|
|
|
|
|
|
|
include::scripting/native.asciidoc[]
|
|
|
|
|
|
|
|
include::scripting/advanced-scripting.asciidoc[]
|