獲取mapping
GET http://xxx:9200/demo_index/_mapping
{
"demo_index": {
"mappings": {
"online": {
"properties": {
"did_number": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
}
}
},
"end_time": {
"type": "long"
},
"id": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
}
}
},
"start_time": {
"type": "long"
},
}
}
}
}
}
將字段的類型修改為正確類型
{
"demo_index": {
"mappings": {
"online": {
"properties": {
"did_number": {
"type": "keyword",
},
"end_time": {
"type": "long"
},
"id": {
"type": "keyword"
},
"start_time": {
"type": "long"
},
}
}
}
}
}
新建index_new
PUT http://xxx:9200/demo_index_new
{
"mappings": {
"online": {
"properties": {
"did_number": {
"type": "keyword",
},
"end_time": {
"type": "long"
},
"id": {
"type": "keyword"
},
"start_time": {
"type": "long"
},
}
}
}
}
遷移數(shù)據(jù)
POST http://xxx:9200/_reindex
{
"source": {
"index": "demo_index"
},
"dest": {
"index": "demo_index_new"
}
}
先刪除舊索引
DELETE http://xxx:9200/demo_index
添加別名
POST http://xxx:9200/_aliases
{
"actions": [
{"add": {"index": "demo_index_new", "alias": "demo_index"}}
]
}