Closed
Description
Describe the bug
#11725 introduced a regression in to OpenSearch 2.8 where the following ingest processor will fail:
{
"description": "_description",
"processors": [
{
"script" : {
"source" : "ctx.byte = (byte)127;ctx.short = (short)32767"
}
},
{
"script" : {
"source" : "ctx.other_field = 'other_field'"
}
}
]
}
Related component
Indexing
To Reproduce
Index a document using the pipeline defined above in OpenSearch 2.8 or newer
Expected behavior
Request should not fail
Additional Details
No response
Activity