Elasticsearch之增加和删除索引
Posted wishsaber
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Elasticsearch之增加和删除索引相关的知识,希望对你有一定的参考价值。
增加索引
利用postMan工具发送restfulAPI添加索引库 请求方式为put代表添加
创建索引index时映射mapping
请求URL:
使用put发送http://localhost:9200/blog1
{ "mappings": { "article": { "properties": { "id": { "type": "long", "store": true, "index":"not_analyzed" }, "title": { "type": "text", "store": true, "index":"analyzed", "analyzer":"standard" }, "content": { "type": "text", "store": true, "index":"analyzed", "analyzer":"standard" } } } } }
效果:
创建索引index后映射mapping
先使用 put 请求发送 http://localhost:9200/blog2
然后使用 post 请求发送http://localhost:9200/blog2/hello/_mapping
删除索引
使用DELET请求发送 http://localhost:9200/blo
以上是关于Elasticsearch之增加和删除索引的主要内容,如果未能解决你的问题,请参考以下文章
大数据技术之_20_Elasticsearch学习_01_概述 + 快速入门 + Java API 操作 + 创建删除索引 + 新建搜索更新删除文档 + 条件查询 + 映射操作