This version of the OpenSearch documentation is no longer maintained. For the latest version, see the current documentation. For information about OpenSearch version maintenance, see Release Schedule and Maintenance Policy.
Get stored script
Retrieves a stored script.
Path parameters
Parameter | Data type | Description |
---|---|---|
script | String | Stored script or search template name. Required. |
Query parameters
Parameter | Data type | Description |
---|---|---|
cluster_manager_timeout | Time | Amount of time to wait for a connection to the cluster manager. Optional, defaults to 30s . |
Example request
The following retrieves the my-first-script
stored script.
GET _scripts/my-first-script
copy
Example response
The GET _scripts/my-first-script
request returns the following fields:
{
"_id" : "my-first-script",
"found" : true,
"script" : {
"lang" : "painless",
"source" : """
int total = 0;
for (int i = 0; i < doc['ratings'].length; ++i) {
total += doc['ratings'][i];
}
return total;
"""
}
}
Response fields
The GET _scripts/my-first-script
request returns the following response fields:
Field | Data type | Description |
---|---|---|
_id | String | The script’s name. |
found | Boolean | The requested script exists and was retrieved. |
script | Object | The script definition. See Script object. |
Script object
Field | Data type | Description |
---|---|---|
lang | String | The script’s language. |
source | String | The script’s body. |
当前内容版权归 OpenSearch 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 OpenSearch .