1、root object
就是某个type对应的mapping json,包括了properties,metadata(_id,_source,_type),settings(analyzer),其他setting(比如include_in_all)
比如如下
PUT /my_index
{
"mappings": {
"my_type" : {
"properties": {}
}
}
}
2、properties
下面有type(字段类型),index(是否分词),analyzer(分词器)
比如如下:
PUT /my_index/_mapping/my_type
{
"properties": {
"title" : {
"type": "string",
"index": "analyzed",
"analyzer": "standard"
}
}
}
3、_source
好处
(1)查询的时候,直接可以拿到完整的document,不需要先拿document id,在根据id发一次请求拿document
(2)partial update基于_source实现
(3)reindex时,直接基于_source实现,不需要从数据库(或者其他外部存储)查询数据再修改
(4)可以基于_source定制返回想要的field
(5)debug query更容易,因为可以直接看到_source
如果不需要上述好处,可以禁用_source
PUT /my_index/_mapping/my_type2
{
"_source": {
"enabled": false
}
}
4、_all
将所有field打包在一起,作为一个_all field,建立索引。没有指定任何field进行搜索时,就是使用_all field在搜索。
PUT /my_index/_mapping/my_type2
{
"_all": {
"enabled": false
}
}
也可以在field级别设置include_in_all field,设置是否要将field的值包含在_all field中
PUT /my_index/_mapping/my_type2
{
"properties": {
"my_field" : {
"type": "text",
"include_in_all": false
}
}
}
若设置成false,则在进行_all搜索的时候不会将my_field字段包括进去
若有兴趣,欢迎来加入群,【Java初学者学习交流群】:458430385,此群有Java开发人员、UI设计人员和前端工程师。有问必答,共同探讨学习,一起进步!
欢迎关注我的微信公众号【Java码农社区】,会定时推送各种干货:
qrcode_for_gh_577b64e73701_258.jpg
网友评论