PUT
http://{{url}}/index1
Content-Type application/json
{
"mappings": {
"{{mappings}}": {
"properties": {
"interest": {
"type": "text",
"analyzer": "ik_max_word"
},
"account_number": {
"type": "text"
},
"balance": {
"type": "integer"
},
"firstname": {
"type": "text"
},
"lastname": {
"type": "text"
},
"age": {
"type": "integer"
},
"gender": {
"type": "text"
},
"address": {
"type": "text"
},
"employer": {
"type": "text"
},
"email": {
"type": "text"
},
"city": {
"type": "text"
},
"state": {
"type": "text"
}
}
}
},
"settings": {
"number_of_shards": 1,
"number_of_replicas": 1
}
}
网友评论