You're viewing version 2.8 of the OpenSearch documentation. This version is no longer maintained. For the latest version, see the current documentation. For information about OpenSearch version maintenance, see Release Schedule and Maintenance Policy.
Script processor
This is an experimental feature and is not recommended for use in a production environment. For updates on the progress of the feature or if you want to leave feedback, join the discussion in the OpenSearch forum.
The script search request processor intercepts a search request and adds an inline Painless script that is run on incoming requests. The script can only run on the following request fields:
fromsizeexplainversionseq_no_primary_termtrack_scorestrack_total_hitsmin_scoreterminate_afterprofile
For request field definitions, see search request fields.
Request fields
The following table lists all available request fields.
| Field | Data type | Description |
|---|---|---|
source | Inline script | The script to run. Required. |
lang | String | The script language. Optional. Only painless is supported. |
tag | String | The processor’s identifier. Optional. |
description | String | A description of the processor. Optional. |
Example
The following request creates a search pipeline with a script request processor. The script limits score explanation to only one document because explain is an expensive operation:
PUT /_search/pipeline/explain_one_result
{
"description": "A pipeline to limit the explain operation to one result only",
"request_processors": [
{
"script": {
"lang": "painless",
"source": "if (ctx._source['size'] > 1) { ctx._source['explain'] = false } else { ctx._source['explain'] = true }"
}
}
]
}