elasticsearch에서 맵핑을 설정할 때 모든 type에 유효합니다

elasticsearch의 index 아래에 많은 type이 있습니다. 한 프로젝트에서 type의 수량을 알 수 없기 때문에template를 만들 때 mapping이 필요합니다. type을 지정하지 않기 때문에 _default_ 필드를 사용해야 합니다.
PUT /my_index{
"mappings": {
    "_default_": {
            "properties": {
                "field1": {
                    "type": "string",
                    "index": "analyzed"
                }
             }
     }
}

프로젝트에 필요한 프로필을 참고하십시오.
{
    "template":"projectlog*",
    "settings":{
         "number_of_shards" : 5
    },
    "mappings": {

            "_default_": {
                "_source" : { "enabled" : true },
                "properties": {
                    "additionInfo": {
                        "type": "string",
                        "index": "not_analyzed" },
                    "devEnv": {
                        "type": "string",
                        "index": "not_analyzed" },
                    "eventId": {
                        "type": "string",
                        "index": "not_analyzed" },
                    "eventName": {
                        "type": "string",
                        "index": "not_analyzed" },
                    "hit": {
                        "type": "integer" },
                    "hitRules": {
                        "type": "string",
                        "index": "not_analyzed" },
                    "ip": {
                        "type": "string",
                        "index": "not_analyzed" },
                    "mainBody": {
                        "type": "string",
                        "index": "not_analyzed" },
                    "requestTime": {
                        "type": "long" },
                    "riskParam": {
                       "index": "not_analyzed",
                        "type": "string" },
                    "ruleId": {
                        "type": "string",
                        "index": "not_analyzed" },
                    "serialNumber": {
                        "type": "string",
                        "index": "not_analyzed" },
                    "shootPenalties": {
                        "type": "string",
                        "index": "not_analyzed" }
                }
            }          

        }
}

http://stackoverflow.com/questions/27277609/elasticsearch-is-it-possible-to-set-mapping-for-field-in-index-for-all-types

좋은 웹페이지 즐겨찾기