elasticsearch常用请求

Posted supermanwx

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了elasticsearch常用请求相关的知识,希望对你有一定的参考价值。

1.打开集群transport请求日志

高版本

curl -H "Content-Type: application/json" -XPUT ‘http://localhost:9200/_cluster/settings‘ -d ‘ "transient" : "logger.org.elasticsearch.transport.TransportService.tracer" : "TRACE" ‘

低版本

curl -XPUT ‘http://localhost:9200/_cluster/settings‘ -d ‘ "transient" : "logger.org.elasticsearch.transport.TransportService.tracer" : "TRACE" ‘

2.分片迁移节点命令

高版本
curl -H "Content-Type: application/json" -XPOST ‘http://localhost:9200/_cluster/reroute‘ -d ‘
"commands":[
"move":
"index":"index_name",
"shard":0,
"from_node":"es-1",
"to_node":"es-8"
]‘

 

以上是关于elasticsearch常用请求的主要内容,如果未能解决你的问题,请参考以下文章

Elasticsearch常用操作:集群管理篇

Java Http请求 elasticsearch 用户密码

Elastic:在腾讯云上部署 Elasticsearch 集群

Elastic:在腾讯云上部署 Elasticsearch 集群

Elasticsearch 常用基本查询

ElasticSearch常用命令