2
我ElasticSearch映射創建如何改變ElasticSearch字段名稱
curl -XPUT 'http://myhostname:9200/data/my_data/_mapping' -d '
{
"my_data" : {
"properties" : {
"empID" : {"type" : "integer"},
"empName" : {"type" : "string"}
}
}
}'
所以,我想改變字段名「empName」到「Emp_Name'.whether它是可能的,而且我有現有的這種映射數據。