Elasticsearch 새 필드

1375 단어 ElasticSearch
Elasticsearch 6.3 릴리즈에서 새로 추가된 필드
인덱스 index의 유형 type에 새 필드name:
POST index/type/_mapping
{
  "properties": {
    "name":{
      "type":"keyword",
      "doc_values":false,
      "norms": false
    }
  }
}

주: PUT도 사용할 수 있습니다.
중첩 노드 아래에 새 필드를 추가합니다. mapping은 정상적으로 작성됩니다.
PUT index/type/_mapping
{
    "properties": {
        "channelTradeNo": {
            "type": "keyword",
            "norms": false,
            "doc_values": false
        },
        "orderDetails": {
            "type": "nested",
            "properties": {
                "rightsStatus": {
                    "type": "keyword",
                    "norms": false,
                    "doc_values": false
                },
                "rightsCurrTime": {
                    "type": "keyword",
                    "norms": false,
                    "doc_values": false
                },
                "rightsEndTime": {
                    "type": "keyword",
                    "norms": false,
                    "doc_values": false
                }
            }
        }
    }
}

좋은 웹페이지 즐겨찾기