1. 程式人生 > >ElasticSearch命令增加字段總結

ElasticSearch命令增加字段總結

type ear url tty detail details earch analyze title

1、建立一個String類型的字段

curl -XPUT http://192.168.46.163:9200/t_risk_case/_mapping/t_risk_case?pretty -d ‘{"properties":{"uuid":{"type":"string"}}}‘ 

2、建一個嵌套型的字段

curl -XPUT http://192.168.46.163:9200/t_risk_case/_mapping/t_risk_case?pretty -d ‘{"properties":{"case_details":{"type":"nested"}}}‘

3、建一個不做分詞的字段

 curl -XPUT http://
192.168.46.163:9200/t_risk_case/_mapping/t_risk_case?pretty -d ‘{"properties":{"title":{"type":"string","index":"not_analyzed"}}}‘

ElasticSearch命令增加字段總結