【elasticsearch7.x】(5) 字段⾃动添加功能是否关闭

"dynamic": "strict"可以实现字段不符合要求就拒绝写入的需求,这种拒绝是整个文档都拒绝

"dynamic": "strict" 

在6.2.4上可以防止字段名错误而新增字段的情况, 它会抛出异常。

PUT your_index
{
 "mappings":{
   "doc": {
    "dynamic": "strict",
    "properties": {
       ...
    }
   }
 }
}
posted @ 2022-11-10 19:25  彬在俊  阅读(20)  评论(0编辑  收藏  举报