Elasticsearch常用语句

elasticsearch常用语句

基础操作

基础查看

1、查看集群的健康状态
curl -XGET  "http://10.45.151.227:9200/_cat/health?v"2、查看nodes
curl -u elastic:123456 -XGET 'http://10.45.186.125:9200/_cat/nodes?v'3、查看索引
curl -XGET 'http://10.45.186.155:9200/_cat/indices?pretty'4、创建索引
curl -XPUT  'http://10.45.186.155:9200/gwtest01?pretty'  -H 'Content-Type: application/json' -d '
{
"settings": {
"number_of_shards": "36",
"number_of_replicas": "0"
}
}'5、给索引添加一条数据
curl -XPOST 'http://10.45.186.155:9200/gwtest01/stu/1?pretty' -H 'Content-Type: application/json' -d '
{
"name":"wangfang",
"age":22,
"sex":1
}'6、查询索引所有文档:
curl -XGET  'http://10.45.151.108:9200/test/_search?pretty' -H 'Content-Type: application/json' -d '
{"query": {"match_all": { }}
}'7、删除一个索引
curl -XDELETE 'http://10.45.186.155:9200/gwtest01?pretty'

详细查看

1、查看一个索引的settings[elastic@gwtest156 0]$  curl -XGET 'http://10.45.186.156:9200/gwtest02/_settings?pretty'
{"gwtest02" : {"settings" : {"index" : {"creation_date" : "1634645232394","number_of_shards" : "5",        #主分片数,默认为5,只能在建索引时设置,不能修改"number_of_replicas" : "1",     #设置索引分片副本数,默认为1,可以随时修改"uuid" : "98xWMOHKQUaP1Rl90p7zQA","version" : {"created" : "6030099"},"provided_name" : "gwtest02"}}}
}2、查看一个文档类型的定义mapping
[elastic@gwtest156 ~]$ curl -XGET 'http://10.45.186.156:9200/gwtest02/stu/_mapping?pretty'
{"gwtest02" : {"mappings" : {"stu" : {"properties" : {"age" : {"type" : "long"},"name" : {"type" : "text","fields" : {"keyword" : {"type" : "keyword","ignore_above" : 256}}}3、查看所有shard情况:curl  -XGET 'http://192.168.1.205:9200/_cat/shards/20240313uganda?v'

4、插入索引模板
通过索引名字通配

curl -u rhino:zxsk@34#$ -XPUT "http://10.45.186.73:9200/_template/template_1" -H 'Content-Type: application/json' -d'
{"index_patterns": ["test*"],"settings": {"number_of_shards": 1,"index":{"max_result_window": 100000,"mapping":{"total_fields":{"limit":5000}}}}
}'

常用运维

配置及解决

1、置空分片

查找当前原因:
curl -XGET 10.45.186.72:9200/_cluster/allocation/explain?pretty
{"index": "222222","shard": 6,"primary": true,"current_state": "unassigned","unassigned_info": {"reason": "NODE_LEFT","at": "2019-10-31T17:02:11.258Z","details": "node_left[removedforsecuritybecimparanoid1]","last_allocation_status": "no_valid_shard_copy"},"can_allocate": "no_valid_shard_copy","allocate_explanation": "cannot allocate because a previous copy of the primary shard existed but can no longer be found on the nodes in the cluster","node_allocation_decisions": [{reroute命令
curl -XPOST 10.45.186.72:9200/_cluster/reroute -H 'Content-Type: application/json'  -d '{
"commands" : [
{
"allocate_empty_primary" : {
"index" : "222222",       ---上面查出的index名字
"shard": 6,					----上面查出来的shard id 
"node" : "removedforsecuritybecimparanoid7",    ----往下翻任找一个node name 填入
"accept_data_loss" : true
}
}
]
}'

2、修改节点最大分片数: 将索引每个节点的最大分片数增加至6个

curl -XPUT "http://ip:port/<index_name>/_settings" -H 'Content-Type:application/json' -d '{"routing.allocation.total_shards_per_node": 6}'

3、修改所有副本数: 将索引副本数增加至1

curl -XPUT "http://ip:port/<index_name>/_settings" -H 'Content-Type:application/json' -d '{"number_of_replicas": 1}'

4、开关索引:

关闭索引
curl -XPOST  http://10.45.186.155:9200/gwtest01/_close开启索引
curl -XPOST  http://10.45.186.155:9200/gwtest01/_open

5、动态设置磁盘阈值参数:

curl -XPUT  -H "Content-Type: application/json" http://10.45.151.221:9200/_cluster/settings -d '{"transient" : {"cluster.routing.allocation.disk.watermark.low" : "90%","cluster.routing.allocation.disk.watermark.high" : "95%"}
}'

6、索引只读状态

查看索引是否是只读:
curl -XGET "192.168.42.155:9200/202104?pretty" | grep 'read_only_allow_delete'取消索引只读状态:
curl -XPUT -H "Content-Type: application/json" http://10.127.48.49:9200/202010/_settings -d '{"index.blocks.read_only_allow_delete": false}'

段操作

1、查看整个集群的状态, 其中segments.count 为段总数

curl -XGET 'http://10.45.151.221:9200/_cluster/stats?pretty'

2、查看每个段,计算行数,统计总个数

curl -XGET http://10.45.151.221:9200/_cat/segments?pretty|wc -l

3、查看具体某个索引段个数

curl -XGET http://10.45.151.221:9200/zxsk_owls45_20230418/_stats?pretty

4、强制段合并命令,将每个shard段合并为1个:

curl -XPOST 'http://10.45.151.221:9200/zxsk_owls45_20230418/_forcemerge?max_num_segments=1'

5、查看段内存情况:

curl -XGET -u  elastic:elastic  "http://10.45.151.227:9200/_cat/nodes?v&h=ip,name,ram.percent,port,sm"

其中sm 即为segment memory

用户相关

1、查看用户

curl  -u zxsk:sinovatio  -XGET 'http://10.45.187.119:9200/_security/user?pretty'

2、查看角色

curl  -u zxsk:sinovatio  -XGET 'http://10.45.187.119:9200/_security/role?pretty'

3、删除role

curl -XDELETE -u elastic:123456 "http://10.45.187.118:9200/_security/role/gwtest_role" 

4、创建role(该role拥有集群的只读操作,索引的增删改写操作):

curl -XPOST -u elastic:123456 "http://10.45.187.118:9200/_security/role/gwtest_role" -H 'Content-Type: application/json' -d '{ "cluster": ["all"],"indices": [{ "names": [ "*" ],
"privileges": ["all"]}],"run_as": [ "other_user" ], "metadata" :{"version" : 1}}'curl -XPOST -u elastic:123456 "http://10.45.187.118:9200/_security/role/gwtest_role" -H 'Content-Type: application/json' -d '{ "cluster": ["monitor"],"indices": [{ "names": [ "*" ],
"privileges": ["write","read","index","create_index","monitor","delete"]}],"run_as": [ "other_user" ], "metadata" :{"version" : 1}}'curl -XPOST -u elastic:123456 "http://10.45.187.118:9200/_security/role/gwtest_role" -H 'Content-Type: application/json' -d '{ "cluster": ["monitor"],"indices": [{ "names": [ "^[^.].*" ],"privileges": ["all"]}],"run_as": [ "other_user" ], "metadata" :{"version" : 1}}'curl -XPOST -u elastic:123456 "http://10.45.187.118:9200/_security/role/gwtest_role" -H 'Content-Type: application/json' -d '{ "cluster": ["monitor"],"indices": [{ "names": [ "*" ],
"privileges": ["write","read","index","create_index","monitor","delete","delete_index"]}],"run_as": [ "other_user" ], "metadata" :{"version" : 1}}'curl -XPOST -u elastic:123456 "http://10.45.187.118:9200/_security/role/gwtest_role" -H 'Content-Type: application/json' -d '{ "cluster": ["monitor"],"indices": [{ "names": [ "gwtest02" ],"privileges": ["read"]},{ "names": [ "*" ],"privileges": ["all"]}],"run_as": [ "other_user" ], "metadata" :{"version" : 1}}'

5、创建用户例子:

1、创建一个所有索引的只读role,名为normal_user_1
curl -XPOST -u elastic:${ESPASSWD} "http://${ES_CURLHOST}:9200/_security/role/normal_user_1" -H 'Content-Type: application/json' -d '{ "cluster": ["monitor","manage_index_templates"],"indices": [{ "names": [ "a*","b*","c*","d*","e*","f*","g*","h*","i*","j*","k*","l*","m*","n*","o*","p*","q*","r*","s*","t*","u*","v*","w*","x*","y*","z*","0*","1","2*","3*","4*","5*","6*","7*","8*","9*" ],"privileges": ["read"]}],"run_as": [ "other_user" ], "metadata" :{"version" : 1}}' 2、创建一个以gwtest 开头索引名 全部权限的role,名为normal_user_2
curl -XPOST -u elastic:elastic "http://10.45.151.227:9200/_security/role/normal_user_2" -H 'Content-Type: application/json' -d '{ "cluster": ["monitor"],"indices": [{ "names": [ "gwtest*"],"privileges": ["all"]}],"run_as": [ "other_user" ], "metadata" :{"version" : 1}}' 3、创建用户
curl -XPOST -u elastic:elastic "http://10.45.151.227:9200/_security/user/test" -H 'Content-Type: application/json' -d '{ "password": "用户密码", "roles": ["normal_user_1","normal_user_2"] }'

扩容缩容

1、删除节点

curl -XPOST 10.45.186.72:9200/_cluster/reroute -H 'Content-Type: application/json'  -d '
{"transient": {"cluster.routing.allocation.exclude._ip": "10.10.0.1"}
}'

参数优化

discovery_zen_minimum_master_nodes    master数量/2 +1 
Gateway Recover After Nodes        master+计算节点数(每台服务器上es进程数*服务器数量) -1
node_max_local_storage_nodes      改为1

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/756948.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

openEuler系统安装并运行nginx

openEuler系统安装并运行nginx 1、安装 Nginx&#xff08;推荐yum install nginx&#xff09; # 更新系统软件包列表 sudo swupd update# 安装 Nginx&#xff08;openEuler 默认使用 swupd 包管理器&#xff09; sudo swupd bundle-add nginx-basic# 或者&#xff0c;如果 op…

vue3+element Plus form 作为子组件,从父组件如何赋值?

刚开始接触vue3时&#xff0c;碰到一个很low的问题&#xff0c;将form作为子组件&#xff0c;在页面中给form表单项输入内容&#xff0c;输入框不显示值&#xff0c;知道问题出在哪&#xff0c;但因为vue3组合式api不熟悉&#xff0c;不知从哪下手... 效果图&#xff1a; 父组…

【力扣TOP100】跳跃游戏ll

题目内容&#xff1a; 分析&#xff1a; 由于确保可以最终到达最后一个位置&#xff0c;所以可以只记录每一次跳跃可以到达的最远位置end&#xff0c;当end>len(nums)-1则结束循环。每次只需要在新可以跳到的位置上再次跳跃即可。 class Solution:def jump(self, nums: Li…

.htaccess全站设置SSL,wordpress全站设置SSL,网站重定向的次数过多”错误最佳解决方法教程

.htaccess全站设置SSL,wordpress全站设置SSL&#xff0c;网站重定向的次数过多”错误最佳解决方法教程 网上找了很多教程网无效**.htacces**设置&#xff0c;访问后台出现重定向次数过多&#xff0c;导致无法访问 找了好久&#xff0c;测试用AI机器人无法解决&#xff0c;参考…

机器学习 - 准备数据

“Data” in machine learning can be almost anything you can imagine. A table of big Excel spreadsheet, images, videos, audio files, text and more. 机器学习其实可以分为两部分 将不管是什么data&#xff0c;都转成numbers.挑选或者建立一个模型来学习这些numbers …

基于VMware虚拟机安装MacOS BigSur系统

这周用VMWare搞了个MacOS虚拟机&#xff0c;也算是完成初中高中时候的梦想了吧~~&#xff08;那时候我的电脑配置还很拉跨&#xff0c;带不动虚拟机&#xff09;~~ 写一篇博客记录一下&#xff0c;当然这也是yonagi04.github.io建站的第一篇新博客 准备工作&#xff08;VMWare…

[GPT概念-02] — 预训练、微调和不同的用例应用

GPT: Generative Pretrained Transformer 一、说明 在之前的博客中&#xff0c;我们研究了生成式预训练转换器的整个概述。现在让我们看看关于预训练、微调和不同用例应用的超级重要主题。 二、预备训练 预训练是关于在没有监督或显式监督的情况下&#xff0c;我们从大型未标记…

海外社交营销为什么用云手机?不用普通手机?

海外社交营销作为企业拓展海外市场的重要手段&#xff0c;正日益受到企业的青睐。云手机以其成本效益和全球性特征&#xff0c;成为海外社交营销领域的得力助手。那么&#xff0c;究竟是什么特性使得越来越多的企业选择利用云手机进行海外社交营销呢&#xff1f;下文将对此进行…

Angular进阶之八: Angular Animation在项目中的实践经验

使用 Angular 进行项目开发的程序员应该都很熟悉 Angular Animation。这是一个 Angular 原生的动画库&#xff0c;它可以替代或者辅助完成原本需要使用 css 的动画功能。 Angular 在国内的运用是很有限的&#xff0c;可借鉴的文档并不很丰富。尤其对于 Angular 动画模块的应用…

如何从零开始拆解uni-app开发的vue项目(一)

uni-app项目分析: 背景:最近接手一个前同事留下的半拉子项目,出拿过来觉得很简单;当我看到app.vue的时候很确定是vue项目,心里不怎么慌,果断安装node.js,然后就去npm ;安装VS code,事实并不是我期盼的那样,或者说根本就不能运行。 报错:应用vs code打开文件,输入命…

智慧城市与数字孪生:科技融合助力城市可持续发展

随着信息技术的迅猛发展&#xff0c;智慧城市和数字孪生作为现代城市发展的重要理念和技术手段&#xff0c;正日益受到广泛关注。智慧城市通过集成应用先进的信息通信技术&#xff0c;实现城市管理、服务、运行的智能化&#xff0c;而数字孪生则是利用数字化手段对物理城市进行…

Stewart并联六自由度摇摆平台计算

六自由度并联Stewart Platform摇摆平台。Matlab GUI界面操作&#xff0c;动画显示河模拟仿真&#xff0c;可以手动设置设备系统参数。 Matlab 程序&#xff0c;源代码包含注释。 程序下载链接&#xff1a; https://download.csdn.net/download/panjinliang066333/88991928 …

Web框架开发-Django-模板继承和静态文件配置

一、模板继承 目的&#xff1a;减少代码的冗余 语法&#xff1a; 1 2 3 {% block classinfo %} {% endblock %} 具体步骤&#xff1a; 1、创建一个base.html文件 2、把要显示的页面的内容写在这里面&#xff0c;也就是HTML要在浏览器显示的内容 3、在rigth里面写一个盒…

【flink】flink on yarn jar异常,类冲突:原因本地上传jar和hdfs的jar冲突

flink jar异常&#xff0c;类冲突可能原因&#xff1a; 报错如下 java.sql.SQLException: ERROR 2006 (INT08): Incompatible jars detected between client and server. Ensure that phoenix-[version]-server.jar is put on the classpath of HBase in every region server…

GPT-4引领AI新纪元,Claude3、Gemini、Sora能否跟上步伐?

【最新增加Claude3、Gemini、Sora、GPTs讲解及AI领域中的集中大模型的最新技术】 2023年随着OpenAI开发者大会的召开&#xff0c;最重磅更新当属GPTs&#xff0c;多模态API&#xff0c;未来自定义专属的GPT。微软创始人比尔盖茨称ChatGPT的出现有着重大历史意义&#xff0c;不亚…

微服务高级篇(一):微服务保护+Sentinel

文章目录 一、初识Sentinel1.1 雪崩问题及解决方案1.2 微服务保护技术对比1.3 Sentinel介绍与安装1.4 微服务整合Sentinel 二、Sentinel的流量控制三、Sentinel的隔离与降级四、Sentinel的授权规则五、规则持久化5.1 规则管理模式【原始模式、pull模式、push模式】5.2 实现push…

web前端框架设计第二课-Vue.js简介

web前端框架设计第二课-Vue.js简介 一.预习笔记 1.Vue.js概述 Vue.js是一套用于构建用户界面的渐进式框架。本质上是一个用于开发Web前端界面的库&#xff0c;其本身具有响应式编程和组件化的特点。 Vue.js的特性&#xff1a; 轻量级 数据绑定 应用指令 插件化开发 2.V…

WebRtc实时音波

摘要&#xff1a; 最近在做音视频相关业务&#xff0c;用的到了webRtc技术,掌握这些方法可以结合业务做&#xff0c;麦克风检测、录制音频&#xff0c;都是可以的&#xff1b;基本操作和其它方法都写好在methods中了&#xff1b; 全局变量 // 后续会创建AnalyserNode对象 let …

【linux】Debian访问Debian上的共享目录

要在Debian系统上访问共享目录&#xff0c;通常意味着要访问通过网络共享的文件夹&#xff0c;比如通过SMB/CIFS&#xff08;Server Message Block/Common Internet File System&#xff09;协议共享的Windows共享文件夹。以下是访问共享目录的步骤&#xff1a; 1. 安装必要的…

Qt中通过函数名(call-by-name)来调用COM的方式

QT中dumpcpp以及dumpdoc使用-CSDN博客 QT使用dumpcpp为COM生成h及cpp的方式&#xff0c;COM是C#的dll注册的-CSDN博客 在qt中调用COM的方式&#xff0c;其中采用函数名的方式算是比较简单的&#xff0c;但是有时候如果没有提供qt版本的函数说明&#xff0c;却是很难调用。笔者…