头图

一、参考

elasticsearch 学习系列目录——更新ing

二、命名规范

2.1 索引名称必须是小写

image.png

2.2 字段名称不能包含点号.

(1)创建索引

PUT testfieldname/
{
  "mappings": {
    "properties": {
      "f1.f2": {
        "type": "keyword"
      }
    }
  }
}

(2) 查看mapping

GET testfieldname/_mapping

{
  "testfieldname" : {
    "mappings" : {
      "properties" : {
        "f1" : {
          "properties" : {
            "f2" : {
              "type" : "keyword"
            }
          }
        }
      }
    }
  }
}

字段名称中包含有., 会自动解析为json结构


一曲广陵散
76 声望21 粉丝

柴米油盐酱醋茶