es新增索引库

萝らか妹 提交于 2020-01-26 09:36:17

es新增索引库


postman
删除索引库
delete
47.94.215.96:9200/ds_resource_v1
新增索引库
put
47.94.215.96:9200/ds_resource_v1
新增字段
post
47.94.215.96:9200/ds_resource_v1/doc/_mapping

{
    "doc": {
        "properties": {
            "author_id": {
                "type": "keyword"
            },
            "comment_num": {
                "type": "long"
            },
            "create_date": {
                "type": "date"
            },
            "id": {
                "type": "long"
            },
            "keywords": {
                "type": "text",
                "analyzer": "ik_max_word"
            },
            "level": {
                "type": "long"
            },
            "like_num": {
                "type": "long"
            },
            "pic_list": {
                "type": "keyword"
            },
            "promulgator": {
                "type": "text",
                "analyzer": "ik_max_word"
            },
            "pub_time": {
                "type": "date"
            },
            "read_num": {
                "type": "long"
            },
            "repeat_num": {
                "type": "long"
            },
            "resource_name": {
                "type": "text",
                "analyzer": "ik_max_word"
            },
            "source_form": {
                "type": "keyword"
            },
            "spy_status": {
                "type": "keyword"
            },
            "video_id": {
                "type": "keyword"
            },
            "video_ranking": {
                "type": "float"
            },
            "zhishu": {
                "type": "integer"
            }
        }
    }
}

47.94.215.96:9200/ds_manufacturer_resource_v1/doc/_mapping

{
    "doc": {
        "properties": {
            "id": {
                "type": "long"
            },
            "resource_id": {
                "type": "long"
            },
            "uuid": {
                "type": "long"
            },
            "version": {
                "type": "long"
            },
            "update_date": {
                "type": "date",
                "format": "strict_date_optional_time||epoch_millis"
            },
            "create_date": {
                "type": "date",
                "format": "strict_date_optional_time||epoch_millis"
            },
            "author": {
                "type": "text"
            },
            "resource_name": {
                "type": "text",
                "analyzer": "ik_max_word"
            },
            "resource_status": {
                "type": "integer"
            },
            "package_id": {
                "type": "integer"
            },
            "type_info": {
                "type": "text"
            },
            "keywords": {
                "type": "keyword"
            },
            "info_id": {
                "type": "keyword"
            },
            "topLevel": {
                "type": "integer"
            },
            "source_form": {
                "type": "keyword"
            },
            "correction_status": {
                "type": "integer"
            },
            "assessor": {
                "type": "keyword"
            },
            "assessorId": {
                "type": "long"
            },
            "zhishu": {
                "type": "integer"
            }
        }
    }
}

47.94.215.96:9200/ds_resources_user_v1/doc/_mapping

{
    "doc": {
        "properties": {
        	"id": {
                "type": "long"
            },
            "tag": {
                "type": "keyword"
            },
            "comment_num": {
                "type": "long"
            },
            "intro": {
                "type": "keyword"
            },
            "like_num": {
                "type": "long"
            },
            "author": {
                "type": "text"
            },
            "birthday": {
                "type": "text"
            },
            "read_num": {
                "type": "long"
            },
            "repeat_num": {
                "type": "long"
            },
            "sex": {
                "type": "keyword"
            },
            "avatar_url": {
                "type": "text"
            },
            "zhishu_num": {
                "type": "integer"
            },
            "alarm_num": {
                "type": "integer"
            },
            "uuid": {
                "type": "keyword"
            },
            "resource_ids": {
                "type": "keyword"
            }
        }
    }
}
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!