_source,_size 元字段
Document source meta-fields(文档源的元字段)
_source field
禁用_source字段
curl -XPUT 'localhost:9200/tweets?pretty' -H 'Content-Type: application/json' -d'
{
"mappings": {
"tweet": {
"_source": {
"enabled": false
}
}
}
}
'
在禁用_source 字段之前请考虑
The metrics use case(指标用例)
包含 / 排除 _source 中的字段
Last updated