OS 3.3.1
Hi all, I am getting the below error when created an index with derived_source enabled and having a semantic field type. Your help is highly appreciated.
HTTP Request:
PUT test_semantic2
{
“settings”: {
“index”: {
“knn”: true,
“derived_source.enabled”: true
}
},
“mappings”: {
“properties”: {
“passage”: {
“type”: “semantic”,
“model_id”: “SobLOpoBBxUKhJh31EiZ”
}
}
}
}
HTTP Response:
{
“error”: {
“root_cause”: [
{
“type”: “mapper_parsing_exception”,
“reason”: “Failed to parse mapping [_doc]: Derive source is not supported for field [passage] with field type [semantic]”
}
],
“type”: “mapper_parsing_exception”,
“reason”: “Failed to parse mapping [_doc]: Derive source is not supported for field [passage] with field type [semantic]”,
“caused_by”: {
“type”: “unsupported_operation_exception”,
“reason”: “Derive source is not supported for field [passage] with field type [semantic]”
}
},
“status”: 400
}