使用kibana修改数据流索引mapping
修改索引模板mapping
{
"dynamic_templates": [],
"properties": {
"@timestamp": {
"type": "date",
"format": "strict_date_optional_time||epoch_second"
},
...
"link": {
"type": "keyword",
"normalizer": "lowercase"
}
}
}数据流滚动
POST web-rss-data/_rollover使用reindex把旧索引数据导入到数据流
删除旧索引
删除旧索引
Last updated