四.ElasticSearch 进阶检索(mapping 映射)
1)映射介绍:
a:映射是定义 文档及其包含的字段 被 存储和索引方式的过程。(是如何被处理的)
2)映射查询:
a:查询 所有映射:
GET bank/_mapping
b:查询结果:
{
"bank" : {
"mappings" : {
"properties" : {
"account_number" : {
"type" : "long"
},
"address" : {
"type" : "text",
"fields" : {
"keyword" : {
"type" : "keyword",
"ignore_above" : 256
}
}
},
"age" : {
"type" : "long"
}
}
}
}
}
3)映射修改:
a:添加 :
b:修改 :创建新的索引,再将数据迁移。