贵有恒,何必三更起、五更眠、最无益,只怕一日曝、十日寒。这篇文章主要讲述es 修改 mapping 字段类型相关的知识,希望能为你提供帮助。
es 修改 mapping 字段类型
一、原索引
PUT /my_index
{
"mappings": {
"_doc": {
"properties": {
"create_date": {
"type":"date",
"format": "yyyy-MM-dd ||yyyy/MM/dd"
}
}
}
}
}
二、创建新索引
PUT /my_index2
{
"mappings": {
"_doc": {
"properties": {
"create_date": {
"type":"text"
}
}
}
}
}
三、同步数据
POST /_reindex
{
"source": {
"index": "my_index",
"size": 5000
},
"dest": {
"index": "my_index2"
}
}
四、删除原索引
DELETE /my_index
【es 修改 mapping 字段类型】五、设置别名
POST /_aliases
{
"actions": [
{"add": {"index": "my_index2", "alias": "my_index"}}
]
}
推荐阅读
- Android 商城类亚博体育应用实战之购物车附源码
- appium启动android真机
- @SpringBootApplication注解
- Android中listView中的button控件获取item的值
- Win10系统如何关闭自动更新技巧?
- Win10系统如何设置JDK环境变量?
- Win10声音忽高忽低怎样应对?
- Win10关不了飞行模式怎样办?
- Win10系统时间不准怎样办?校准办法