elasticsearch设置mapping

curl -XPUT 'http://localhost:9200/carsrc' -d @carsource.json

carsource.json文件内容

{
    "settings": {
        "number_of_shards": 3,
        "number_of_replicas": 1
    },
    "mappings": {
        "carsource": {
            "properties": {
                "car_source_id": {
                    "type": "string",
                    "index": "not_analyzed"
                },
                "car_source_code": {
                    "type": "string",
                    "index": "not_analyzed"
                },
                "sales_region": {
                    "type": "string",
                    "index": "not_analyzed"
                },
                "car_code": {
                    "type": "string",
                    "index": "not_analyzed"
                },
                "car_id": {
                    "type": "string",
                    "index": "not_analyzed"
                },
                "car_name": {
                    "type": "string",
                    "index": "not_analyzed"
                },
                "cars": {
                    "type": "string",
                    "index": "not_analyzed"
                },
                "msrp": {
                    "type": "string",
                    "index": "not_analyzed"
                },
                "sale_price": {
                    "type": "string",
                    "index": "not_analyzed"
                },
                "over_msrp": {
                    "type": "string",
                    "index": "not_analyzed"
                },
                "car_color": {
                    "type": "string",
                    "index": "not_analyzed"
                },
                "car_trim_color": {
                    "type": "string",
                    "index": "not_analyzed"
                },
                "remark": {
                    "type": "string",
                    "index": "not_analyzed"
                },
                "source_type": {
                    "type": "string",
                    "index": "not_analyzed"
                },
                "source_kind": {
                    "type": "string",
                    "index": "not_analyzed"
                },
                "source_status": {
                    "type": "string",
                    "index": "not_analyzed"
                },
                "product_date": {
                    "type": "string",
                    "index": "not_analyzed"
                },
                "procedure": {
                    "type": "string",
                    "index": "not_analyzed"
                },
                "car_vin": {
                    "type": "string",
                    "index": "not_analyzed"
                },
                "area_code": {
                    "type": "string",
                    "index": "not_analyzed"
                },
                "area_name": {
                    "type": "string",
                    "index": "not_analyzed"
                },
                "status": {
                    "type": "string",
                    "index": "not_analyzed"
                },
                "company_id": {
                    "type": "string",
                    "index": "not_analyzed"
                },
                "company_name": {
                    "type": "string",
                    "index": "not_analyzed"
                },
                "order_user_id": {
                    "type": "string",
                    "index": "not_analyzed"
                },
                "pay_user_id": {
                    "type": "string",
                    "index": "not_analyzed"
                },
                "transport": {
                    "type": "string",
                    "index": "not_analyzed"
                },
                "plate_limit": {
                    "type": "string",
                    "index": "not_analyzed"
                },
                "validate": {
                    "type": "string",
                    "index": "not_analyzed"
                },
                "valid_status": {
                    "type": "string",
                    "index": "not_analyzed"
                },
                "buy_deposit": {
                    "type": "string",
                    "index": "not_analyzed"
                },
                "sale_deposit": {
                    "type": "string",
                    "index": "not_analyzed"
                },
                "pay_order_id": {
                    "type": "string",
                    "index": "not_analyzed"
                },
                "score": {
                    "type": "string",
                    "index": "not_analyzed"
                },
                "company_type": {
                    "type": "string",
                    "index": "not_analyzed"
                },
                "come_from": {
                    "type": "string",
                    "index": "not_analyzed"
                },
                "brand_logo": {
                    "type": "string",
                    "index": "not_analyzed"
                },
                "pic_flag": {
                    "type": "string",
                    "index": "not_analyzed"
                },
                 "cost_price": {
                    "type": "string",
                    "index": "not_analyzed"
                },
                 "mini_price": {
                    "type": "string",
                    "index": "not_analyzed"
                },
                 "reason": {
                    "type": "string",
                    "index": "not_analyzed"
                },
                 "real_price": {
                    "type": "string",
                    "index": "not_analyzed"
                },
                 "number": {
                    "type": "string",
                    "index": "not_analyzed"
                },
                 "bill": {
                    "type": "string",
                    "index": "not_analyzed"
                },
                 "source_flag": {
                    "type": "string",
                    "index": "not_analyzed"
                },
                "gmt_create": {
                    "type": "string",
                    "index": "not_analyzed"
                },
                "gmt_modify": {
                    "type": "string",
                    "index": "not_analyzed"
                },
                "price_type": {
                    "type": "string",
                    "index": "not_analyzed"
                },
                "price_value": {
                    "type": "string",
                    "index": "not_analyzed"
                }

            }
        }
    }
}

 

posted @ 2017-12-28 23:45  Nice&&Day  阅读(889)  评论(0编辑  收藏  举报