注:以下操作是在Kibana的“开发工具”中完成,既然了解elasticsearch就默认大家会“elasticsearch的界面”Kibana了文章来源:https://www.toymoban.com/news/detail-519241.html
效果:相当于给索引名称取了一个小名,叫小名叫大名索引都会答应的文章来源地址https://www.toymoban.com/news/detail-519241.html
创建测试索引:
PUT my_test_index
响应结果:
{
"acknowledged" : true,
"shards_acknowledged" : true,
"index" : "my_test_index"
}
创建索引别名:
POST _aliases
{
"actions": [
{
"add": {
"index": "my_test_index",
"alias": "my_test_index_alias"
}
}
]
}
响应结果:
{
"acknowledged" : true
}
查询索引别名:
GET my_test_index/_alias
响应效果:
{
"my_test_index" : {
"aliases" : {
"my_test_index_alias" : { }
}
}
}
删除索引别名:
POST _aliases
{
"actions": [
{
"remove": {
"index": "my_test_index",
"alias": "my_test_index_alias"
}
}
]
}
响应效果:
{
"acknowledged" : true
到了这里,关于ES索引别名的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!