elasticsearch在已有mapping添加字段

最近在接手elasticsearch 方面的工做,其中向已有的mapping添加新的字段的時候,一開始在網上找 資料,發現 網上 的資料都是關於更新mapping中已有字段類型的,因此寫 一篇關於向 已有mapping添加新 字段的文章,僅供elasticsearch的新手學習。app

curl -XPUT http://localhost:9200/test/regist/_mapping -d '
{
"properties": {
"user_id": {
"type": "string",
"index": "not_analyzed"
},
"thks_id": {
"type": "string",
"index": "not_analyzed"
},
"retype": {
"type": "string",
"index": "not_analyzed"
}
}
}
'curl

這段代碼的意思是向test這個mapping中type 爲regist,添加user_id、thks_id、retype三個新字段。執行以後,在elasticsearch的插件中能夠看到test這個mapping中已經追加了這三個字段。elasticsearch

相關文章
相關標籤/搜索