查看别名get /xx-index/_aliases
1对1 添加
post /_aliases
{
"actions": [
{"add" : { "index" : "xx-2018-08-08", "alias": "xxxxxx"} }
]
}
1对1 移除
post /_aliases
{
"actions": [
{"remove" : { "index" : "xx-2018-08-08", "alias": "xxxxxx"} }
]
}
多对1(同样支持通配符)
post /_aliases
{
"actions": [
{"add" : { "indices" : ["xx-2018-08-08","xx-2018-08-09"], "alias": "xxxxxx"} }
]
}
移除跟1对1移除一样
这里有个注意点 搜索文档的时候,多对1无法搜索会报错
网友评论