码迷,mamicode.com
首页 > 其他好文 > 详细

elasticsearch常用请求

时间:2019-09-12 18:16:10      阅读:106      评论:0      收藏:0      [点我收藏+]

标签:elastic   tran   sha   dex   out   节点   local   nbsp   rac   

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常用请求

标签:elastic   tran   sha   dex   out   节点   local   nbsp   rac   

原文地址:https://www.cnblogs.com/supermanwx/p/11513153.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!