赞
踩
- #创建索引(并且指定分片数量)
- PUT my_index1
- {
- "settings": {
- "number_of_shards": 2,
- "number_of_replicas": 2
- }
- }
- #创建索引(并且指定分片数量)
- PUT myindex2
- {
- "settings": {
- "number_of_shards": 5,
- "number_of_replicas": 0
- },
- "mappings": {
- "properties": {
- "id": {
- "type": "long"
- },
- "name": {
- "type": "text"
- },
- "type": {
- "type": "keyword"
- },
- "score": {
- "type": "double"
- }
- }
- }
- }
- #创建索引(并且指定分片数量)
- PUT my_index1/_settings
- {
- "index": {
- "number_of_replicas": "4"
- }
- }
- POST /my_index2/_mapping
- {
- "properties": {
- "phone":{
- "type": "keyword"
- }
- }
- }
注:只能新增字段,不能删除字段,一旦设置type类型,不可更改。
为什么不能修改一个字段的type?原因是一个字段的类型修改以后,那么该字段的所有数据都需要重新索引。Elasticsearch底层使用的是lucene库,字段类型修改以后索引和搜索要涉及分词方式等操作。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。