elasticsearch 创建索引 mapping 分词

2020-04-16  本文已影响0人  淼哥1986

PUT

http://{{url}}/index1

Content-Type application/json

{
    "mappings": {
        "{{mappings}}": {
            "properties": {
                "interest": {
                    "type": "text",
                    "analyzer": "ik_max_word"
                },
                "account_number": {
                    "type": "text"
                },
                "balance": {
                    "type": "integer"
                },
                "firstname": {
                    "type": "text"
                },
                "lastname": {
                    "type": "text"
                },
                "age": {
                    "type": "integer"
                },
                "gender": {
                    "type": "text"
                },
                "address": {
                    "type": "text"
                },
                "employer": {
                    "type": "text"
                },
                "email": {
                    "type": "text"
                },
                "city": {
                    "type": "text"
                },
                "state": {
                    "type": "text"
                }
            }
        }
    },
    "settings": {
        "number_of_shards": 1,
        "number_of_replicas": 1
    }
}
上一篇 下一篇

猜你喜欢

热点阅读