您当前的位置:首页 > 电脑百科 > 程序开发 > 编程百科

Elastic Search 命令详解-索引操作

时间:2023-03-30 14:52:36  来源:今日头条  作者:悦睹人生

关于Elastic Search安装可以参考《Elastic Search 8.6.2集群安装部署》及Kibana安装可以参考《Elastic Search 8.6.2简单操作》。相关命令将在Kibana工具的Console平台上执行。

 

Elastic Search索引操作主要包含:创建、删除、关闭和打开索引,以及索引别名的操作。其中,索引别名的操作在生产环境中使用比较广泛,可以和关闭或删除索引配合使用。在生产环境中使用索引时,都应该特别注意操作不当引起数据丢失或异常的问题。

1.创建索引

使用Elastic Search构建搜索引擎的第一步就是创建索引。创建索引以PUT方式发起请求,命令 PUT /indexName

PUT /customer

{

"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

DELETE /customer

{

"acknowledged": true

}

3.关闭索引

有些索引可能在暂时不使用,但未来可能还会使用时,就可以关闭该索引。索引关闭时,只能使用Elastic Search的Api或者监控工具来查看该索引的信息。此时对索引的读写操作都会报错:索引关闭异常。

POST /customer/_close

{

"acknowledged": true,

"shards_acknowledged": true,

"indices": {

"customer": {

"closed": true

}

}

}

4.打开索引

索引关闭了,想重新使用可以再次打开索引。

POST /customer/_open

{

"acknowledged": true,

"shards_acknowledged": true

}

5.索引别名

索引别名一般是通过一个别名关联一个或多个索引,让别名与索引之间建立逻辑关系,以地区、时间等划分索引的场景会使用到。例如日志场景:

 

PUT /log-20230329

{

"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":"操作失败"

}

PUT /log-20230328

POST /log-20230328/_doc/001

{

"title": "日志28",

"content":"内容28",

"code": "0000",

"info":"操作成功"

}

PUT /log-20230327

POST /log-20230327/_doc/001

{

"title": "日志27",

"content":"内容27",

"code": "0000",

"info":"操作成功"

}

创建索引别名

POST /_aliases

{

"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就会查询到关联的三个索引:

GET /last_three_day_log/_search

{

"query":{

"match":{

"title":"日志"

}

}

}

{

"took": 6,

"timed_out": false,

"_shards": {

"total": 3,

"successful": 3,

"skipped": 0,

"fAIled": 0

},

"hits": {

"total": {

"value": 3,

"relation": "eq"

},

"max_score": 0.5753642,

"hits": [

{

"_index": "log-20230327",

"_id": "001",

"_score": 0.5753642,

"_source": {

"title": "日志27",

"content": "内容27",

"code": "0000",

"info": "操作成功"

}

},

{

"_index": "log-20230328",

"_id": "001",

"_score": 0.5753642,

"_source": {

"title": "日志28",

"content": "内容28",

"code": "0000",

"info": "操作成功"

}

},

{

"_index": "log-20230329",

"_id": "001",

"_score": 0.5753642,

"_source": {

"title": "日志29",

"content": "内容29",

"code": "0001",

"info": "操作失败"

}

}

]

}

}

数据是不能直接写到别名的索引,如果需要写入数据则需要在创建别名时添加参数 is_write_index。

别名除了关联多个索引实现组合查询外,还可以用来替换索引。实现原理很简单,例如:当天的日志已经生成了,现在近三天日志,应该将log-20230327删除,重新添加log-20230330的索引,就实现了替换索引,先创建log-20230330索引:

PUT /log-20230330

{

"mappings": {

"properties": {

"title": {

"type": "text"

},

"content": {

"type": "text"

},

"code": {

"type": "keyword"

},

"info": {

"type": "text"

}

}

}

}

POST /log-20230330/_doc/001

{

"title": "日志30",

"content":"内容30",

"code": "0000",

"info":"操作成功"

}

再重新定义索引别名

POST /_aliases

{

"actions": [

{

"add":{

"index": "log-20230330",

"alias": "last_three_day_log"

}

},{

"add":{

"index": "log-20230329",

"alias": "last_three_day_log"

}

},{

"add":{

"index": "log-20230328",

"alias": "last_three_day_log"

}

},{

"remove":{

"index": "log-20230327",

"alias": "last_three_day_log"

}

}

]

}

{

"acknowledged": true

}

重新查询last_three_day_log就会发现没有log-20230327索引的内容了:

GET /last_three_day_log/_search

{

"query":{

"match":{

"title":"日志"

}

}

}

{

"took": 11,

"timed_out": false,

"_shards": {

"total": 3,

"successful": 3,

"skipped": 0,

"failed": 0

},

"hits": {

"total": {

"value": 3,

"relation": "eq"

},

"max_score": 0.5753642,

"hits": [

{

"_index": "log-20230328",

"_id": "001",

"_score": 0.5753642,

"_source": {

"title": "日志28",

"content": "内容28",

"code": "0000",

"info": "操作成功"

}

},

{

"_index": "log-20230329",

"_id": "001",

"_score": 0.5753642,

"_source": {

"title": "日志29",

"content": "内容29",

"code": "0001",

"info": "操作失败"

}

},

{

"_index": "log-20230330",

"_id": "001",

"_score": 0.5753642,

"_source": {

"title": "日志30",

"content": "内容30",

"code": "0000",

"info": "操作成功"

}

}

]

}

}



Tags:Elastic Search   点击:()  评论:()
声明:本站部分内容及图片来自互联网,转载是出于传递更多信息之目的,内容观点仅代表作者本人,不构成投资建议。投资者据此操作,风险自担。如有任何标注错误或版权侵犯请与我们联系,我们将及时更正、删除。
▌相关推荐
Elastic Search 命令详解-索引操作
关于Elastic Search安装可以参考《Elastic Search 8.6.2集群安装部署》及Kibana安装可以参考《Elastic Search 8.6.2简单操作》。相关命令将在Kibana工具的Console平台上执...【详细内容】
2023-03-30  Search: Elastic Search  点击:(233)  评论:(0)  加入收藏
▌简易百科推荐
Netflix 是如何管理 2.38 亿会员的
作者 | Surabhi Diwan译者 | 明知山策划 | TinaNetflix 高级软件工程师 Surabhi Diwan 在 2023 年旧金山 QCon 大会上发表了题为管理 Netflix 的 2.38 亿会员 的演讲。她在...【详细内容】
2024-04-08    InfoQ  Tags:Netflix   点击:(0)  评论:(0)  加入收藏
即将过时的 5 种软件开发技能!
作者 | Eran Yahav编译 | 言征出品 | 51CTO技术栈(微信号:blog51cto) 时至今日,AI编码工具已经进化到足够强大了吗?这未必好回答,但从2023 年 Stack Overflow 上的调查数据来看,44%...【详细内容】
2024-04-03    51CTO  Tags:软件开发   点击:(6)  评论:(0)  加入收藏
跳转链接代码怎么写?
在网页开发中,跳转链接是一项常见的功能。然而,对于非技术人员来说,编写跳转链接代码可能会显得有些困难。不用担心!我们可以借助外链平台来简化操作,即使没有编程经验,也能轻松实...【详细内容】
2024-03-27  蓝色天纪    Tags:跳转链接   点击:(13)  评论:(0)  加入收藏
中台亡了,问题到底出在哪里?
曾几何时,中台一度被当做“变革灵药”,嫁接在“前台作战单元”和“后台资源部门”之间,实现企业各业务线的“打通”和全域业务能力集成,提高开发和服务效率。但在中台如火如荼之...【详细内容】
2024-03-27  dbaplus社群    Tags:中台   点击:(9)  评论:(0)  加入收藏
员工写了个比删库更可怕的Bug!
想必大家都听说过删库跑路吧,我之前一直把它当一个段子来看。可万万没想到,就在昨天,我们公司的某位员工,竟然写了一个比删库更可怕的 Bug!给大家分享一下(不是公开处刑),希望朋友们...【详细内容】
2024-03-26  dbaplus社群    Tags:Bug   点击:(5)  评论:(0)  加入收藏
我们一起聊聊什么是正向代理和反向代理
从字面意思上看,代理就是代替处理的意思,一个对象有能力代替另一个对象处理某一件事。代理,这个词在我们的日常生活中也不陌生,比如在购物、旅游等场景中,我们经常会委托别人代替...【详细内容】
2024-03-26  萤火架构  微信公众号  Tags:正向代理   点击:(11)  评论:(0)  加入收藏
看一遍就理解:IO模型详解
前言大家好,我是程序员田螺。今天我们一起来学习IO模型。在本文开始前呢,先问问大家几个问题哈~什么是IO呢?什么是阻塞非阻塞IO?什么是同步异步IO?什么是IO多路复用?select/epoll...【详细内容】
2024-03-26  捡田螺的小男孩  微信公众号  Tags:IO模型   点击:(9)  评论:(0)  加入收藏
为什么都说 HashMap 是线程不安全的?
做Java开发的人,应该都用过 HashMap 这种集合。今天就和大家来聊聊,为什么 HashMap 是线程不安全的。1.HashMap 数据结构简单来说,HashMap 基于哈希表实现。它使用键的哈希码来...【详细内容】
2024-03-22  Java技术指北  微信公众号  Tags:HashMap   点击:(11)  评论:(0)  加入收藏
如何从头开始编写LoRA代码,这有一份教程
选自 lightning.ai作者:Sebastian Raschka机器之心编译编辑:陈萍作者表示:在各种有效的 LLM 微调方法中,LoRA 仍然是他的首选。LoRA(Low-Rank Adaptation)作为一种用于微调 LLM(大...【详细内容】
2024-03-21  机器之心Pro    Tags:LoRA   点击:(12)  评论:(0)  加入收藏
这样搭建日志中心,传统的ELK就扔了吧!
最近客户有个新需求,就是想查看网站的访问情况。由于网站没有做google的统计和百度的统计,所以访问情况,只能通过日志查看,通过脚本的形式给客户导出也不太实际,给客户写个简单的...【详细内容】
2024-03-20  dbaplus社群    Tags:日志   点击:(4)  评论:(0)  加入收藏
站内最新
站内热门
站内头条