定制化dynamic mapping策略
定制dynamic策略
PUT /my_index
{
"mappings": {
"my_type": {
"dynamic": "strict",
"properties": {
"title": {
"type": "text"
},
"address": {
"type": "object",
"dynamic": "true"
}
}
}
}
}定制dynamic mapping策略
(1)date_detection (日期检测)
(3)定制自己的default mapping template(type 级别)
资料:
Last updated