Обновление поля _source

Здравствуйте! Можно ли обновить поле _source при обновлении маппинга?
Я пытаюсь добавить новое поле в исключения:

http://localhost:9200/documents_2017/_mapping/document
{
"_source": {
"excludes": [
"content",
"lots"
]
}
}

В ответ на такой запрос я получаю следующую ошибку:

{
"error": {
"root_cause": [
{
"type": "illegal_argument_exception",
"reason": "Can't merge because of conflicts: [Cannot update excludes setting for [_source]]"
}
],
"type": "illegal_argument_exception",
"reason": "Can't merge because of conflicts: [Cannot update excludes setting for [_source]]"
},
"status": 400
}

Нет. На данный момент это не поддерживается.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.