ElasticSearch常用操作API

基础操作

以下均为[GET]操作

bash 复制代码
查看ElasticSearch全部索引	http://{ip}:9200/_cat/indices?v
查看ElasticSearch集群节点	http://{ip}:9200/_cat/nodes?v
查看ElasticSearch版本信息	http://{ip}:9200/
查看ElasticSearch集群状态	http://{ip}:9200/_cluster/health?pretty
查看ElasticSearch当前主节点	http://{ip}:9200/_cat/master?v
查看ElasticSearch集群指标	http://{ip}:9200/_cluster/stats?pretty
查看ElasticSearch别名信息	http://{ip}:9200/_cat/aliases?v
查看ElasticSearch模板信息	http://{ip}:9200/_cat/templates?v
查看ElasticSearch分配情况	http://{ip}:9200/_cat/allocation?v
查看ElasticSearch文档总数	http://{ip}:9200/_cat/count?v
查看ElasticSearch修复状态	http://{ip}:9200/_cat/recovery?v
查看ElasticSearch分片信息	http://{ip}:9200/_cat/shards?v
查看ElasticSearch挂起任务	http://{ip}:9200/_cluster/pending_tasks?pretty
查看ElasticSearch热线程	    http://{ip}:9200/_nodes/hot_threads?pretty

进阶操作

1.开启、关闭索引通配符删除

false表示可以通配符删除

true表示不可以通配符删除

bash 复制代码
[PUT] _cluster/settings
{
  "transient": {
    "action.destructive_requires_name": false
  }
}

2.调整集群最大分片数

用于配置生命周期后,自动分裂分片使用

bash 复制代码
[PUT] _cluster/settings
{
  "transient": {
    "cluster.max_shards_per_node": 100000
  }
}

3.设置Search返回结果最大条数(默认10000)

bash 复制代码
所有索引生效
[PUT] _all/_settings
{ 
  "index.max_result_window": 50000
}
单个索引生效
[PUT] {index}/_settings
{ 
  "index.max_result_window": 50000
}

4.批量设置索引别名、设置为写索引

同时设置多个在数组里增加即可

"is_write_index": true表示当多个索引共用同一个别名时,设置当前索引为写索引,读的话走别名,可以将所有索引数据都查到

bash 复制代码
[POST] _aliases
{
	"actions": [{
		"add": {
			"index": "m12_insertzone-000001",
			"alias": "m12_insertzone",
			"is_write_index": true
		}
	}]
}

5.设置索引生命周期模板名称及滚动更新索引别名

bash 复制代码
[POST] {index}/_settings
{
	"index.lifecycle.name": "iscas",
	"index.lifecycle.rollover_alias": "m12_insertzone"
}

6.创建索引含配置

bash 复制代码
[PUT] {index}
{
	"aliases": {
		"m12_insertzone": {
			"is_write_index": true
		}
	},
	"settings": {
		"index.number_of_shards": "6",
		"index.number_of_replicas": "1",
		"index.lifecycle.name": "iscas-ilm-policy",
		"index.lifecycle.rollover_alias": "m12_insertzone",
		"index": {
			"routing": {
				"allocation": {
					"require": {
						"hotwarm_type": "hot"
					}
				}
			},
			"translog": {
				"durability": "async",
				"sync_interval": "30s",
				"flush_threshold_size": "1024mb"
			}
		}
	},
	"mappings": {}
}

7. 创建模板含配置

PUT\] _template/{name} ```bash { "index_patterns": ["m22_sample_30-*"], "order": 0, "settings": { "index": { "lifecycle": { "rollover_alias": "m22_sample_30", "name": "iscas-ilm-policy" }, "routing": { "allocation": { "require": { "hotwarm_type": "hot" } } }, "number_of_shards": "6", "number_of_replicas": "1", "translog": { "durability": "async", "sync_interval": "30s", "flush_threshold_size": "1024mb" } } }, "mappings": {} } ```

相关推荐
TDengine (老段)30 分钟前
TDengine 时间函数 TODAY() 用户手册
大数据·数据库·物联网·oracle·时序数据库·tdengine·涛思数据
悟乙己1 小时前
数据科学家如何更好地展示自己的能力
大数据·数据库·数据科学家
东哥说-MES|从入门到精通2 小时前
Mazak MTF 2025制造未来参观总结
大数据·网络·人工智能·制造·智能制造·数字化
盟接之桥2 小时前
盟接之桥说制造:在安全、确定与及时之间,构建品质、交期与反应速度的动态平衡
大数据·运维·安全·汽车·制造·devops
链上日记2 小时前
STC携手VEX发起全球首个碳资产RWA生态,泰国峰会即将引爆绿色金融
大数据
用户Taobaoapi20143 小时前
京东商品列表API(JD.item_search)
大数据·数据挖掘·数据分析
用户Taobaoapi20143 小时前
京东商品评论API开发指南
大数据·数据挖掘·数据分析
微三云-轩3 小时前
小程序:12亿用户的入口,企业数字化的先锋军
大数据·小程序·开源软件
数据智研4 小时前
【数据分享】上市公司数字化转型相关词频统计数据(2000-2024)
大数据·数据分析
zskj_zhyl4 小时前
七彩喜智慧养老:科技向善,让“养老”变“享老”的智慧之选
大数据·人工智能·科技·物联网·机器人