关于Elastic Search安装可以参考《Elastic Search 8.6.2集群安装部署》及Kibana安装可以参考《Elastic Search 8.6.2简单操作》 。相关命令将在Kibana工具的Console平台上执行 。
文章插图
Elastic Search索引操作主要包含:创建、删除、关闭和打开索引,以及索引别名的操作 。其中,索引别名的操作在生产环境中使用比较广泛,可以和关闭或删除索引配合使用 。在生产环境中使用索引时,都应该特别注意操作不当引起数据丢失或异常的问题 。
1.创建索引使用Elastic Search构建搜索引擎的第一步就是创建索引 。创建索引以PUT方式发起请求,命令 PUT /indexName
{
"settings":{
"number_of_shards": 5,
"number_of_replicas": 2
},
"mAppings":{
"properties":{
"name":{
"type":"text"
},
"age":{
"type": "integer"
}
}
}
}
{
"acknowledged": true,
"shards_acknowledged": true,
"index": "customer"
}
文章插图
2.删除索引删除索引使用 DELETE /indexName
{
"acknowledged": true
}
3.关闭索引有些索引可能在暂时不使用,但未来可能还会使用时,就可以关闭该索引 。索引关闭时,只能使用Elastic Search的Api或者监控工具来查看该索引的信息 。此时对索引的读写操作都会报错:索引关闭异常 。
{
"acknowledged": true,
"shards_acknowledged": true,
"indices": {
"customer": {
"closed": true
}
}
}
4.打开索引索引关闭了,想重新使用可以再次打开索引 。
{
"acknowledged": true,
"shards_acknowledged": true
}
5.索引别名索引别名一般是通过一个别名关联一个或多个索引,让别名与索引之间建立逻辑关系,以地区、时间等划分索引的场景会使用到 。例如日志场景:
文章插图
{
"mappings": {
"properties": {
"title": {
"type": "text"
},
"content": {
"type": "text"
},
"code": {
"type": "keyword"
},
"info": {
"type": "text"
}
}
}
}
POST /log-20230329/_doc/001
{
"title": "日志29",
"content":"内容29",
"code": "0001",
"info":"操作失败"
}
POST /log-20230328/_doc/001
{
"title": "日志28",
"content":"内容28",
"code": "0000",
"info":"操作成功"
}
POST /log-20230327/_doc/001
{
"title": "日志27",
"content":"内容27",
"code": "0000",
"info":"操作成功"
}
创建索引别名
{
"actions": [
{
"add":{
"index": "log-20230329",
"alias": "last_three_day_log"
}
},{
"add":{
"index": "log-20230328",
"alias": "last_three_day_log"
}
},{
"add":{
"index": "log-20230327",
"alias": "last_three_day_log"
}
}
]
}
{
"acknowledged": true
}
这个时候查询last_three_day_log就会查询到关联的三个索引:
{
"query":{
"match":{
"title":"日志"
}
}
}
{
"took": 6,
推荐阅读
- 没有人教你的重要的 Linux 命令
- iOS使用FFmpeg命令行
- Windows常用的一些CMD运行命令
- 如何在 Linux 命令行中查找最大的文件或文件夹
- 永远不要在你的 Linux 系统上运行这些命令
- SQL SERVER日志文件很大20多G日志文件清理 无需分离数据库 SQL命令
- 红色警戒三命令与征服 命运与征服
- 欧美viboss老人 欧美***
- 命令与征服3凯恩之印 凯恩的蹄印
- 魔兽世界坐骑宏命令,魔兽世界坐骑宏