以下操作均在postman中操作
1. 創(chuàng)建索引
1.1請(qǐng)求地址
http://127.0.0.1:9200/test_index?pretty
1.2請(qǐng)求方式
PUT
1.3請(qǐng)求體
{
"settings": {
"number_of_shards": 3,
"number_of_replicas": 2
},
"mappings": {
"test_type": {
"properties": {
"id": {
"type": "long"
},
"name": {
"type": "text"
},
"url": {
"type": "keyword"
},
"price": {
"type": "double"
}
}
}
}
}
test_index:索引名稱
test_type:索引類型
properties:字段及其類型
number_of_shards:分片數(shù)量
number_of_replicas:副本數(shù)量
2. 修改索引(增加字段)
2.1 請(qǐng)求地址
http://127.0.0.1:9200/test_index/_mapping/test_type
2.2 請(qǐng)求方式
POST
2.3 請(qǐng)求體
{
"properties": {
"desc": {
"fielddata": true,
"analyzer": "keyword",
"type": "text"
}
}
}
在 test_type 下屏箍,增加 desc 屬性
3.刪除索引
3.1請(qǐng)求地址
http://127.0.0.1:9200/test_index
3.2 請(qǐng)求方式
DELETE
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者