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": {}
}
相关推荐
2301_811274312 分钟前
大数据基于Spring Boot的化妆品推荐系统的设计与实现
大数据·spring boot·后端
Yz987610 分钟前
hive的存储格式
大数据·数据库·数据仓库·hive·hadoop·数据库开发
青云交10 分钟前
大数据新视界 -- 大数据大厂之 Hive 数据导入:多源数据集成的策略与实战(上)(3/ 30)
大数据·数据清洗·电商数据·数据整合·hive 数据导入·多源数据·影视娱乐数据
武子康13 分钟前
大数据-230 离线数仓 - ODS层的构建 Hive处理 UDF 与 SerDe 处理 与 当前总结
java·大数据·数据仓库·hive·hadoop·sql·hdfs
武子康15 分钟前
大数据-231 离线数仓 - DWS 层、ADS 层的创建 Hive 执行脚本
java·大数据·数据仓库·hive·hadoop·mysql
时差95329 分钟前
Flink Standalone集群模式安装部署
大数据·分布式·flink·部署
锵锵锵锵~蒋32 分钟前
实时数据开发 | 怎么通俗理解Flink容错机制,提到的checkpoint、barrier、Savepoint、sink都是什么
大数据·数据仓库·flink·实时数据开发
二进制_博客33 分钟前
Flink学习连载文章4-flink中的各种转换操作
大数据·学习·flink
大数据编程之光35 分钟前
Flink入门介绍
大数据·flink
长风清留扬44 分钟前
一篇文章了解何为 “大数据治理“ 理论与实践
大数据·数据库·面试·数据治理