1
我有一個包含30,000.000個文檔的索引。 我需要爲即將到來的新文檔添加一個新字段。 但我需要指定這個新字段的正確映射。更新ElasticSearch映射
此命令是否會導致已有文檔的任何重新編排操作?
PUT /my_index/_mappings/my_type
{
"my_type": {
"properties": {
"A": {
"properties": {
"new_field": {
"type": "string",
"analyzer": "analyzer_keyword"
}
}
}
}
}
}