Zen-disco-receive

what does below logging mean? is there a problem?
xxxx is the server name

Sep 01, 2015 7:07:26 PM org.elasticsearch.cluster.service.InternalClusterService$UpdateTask run
INFO: [logstash-xxxxx-2049-11632] added {[logstash-xxxxx-2055-11634][wmHuxiF6Q-6wx-JvKN-nhw][xxxxx][inet[/xxxxx:9309]]{client=true, data=false},[logstash-xxxxx-2055-11632][MSo9ls65RNyRjdNwFuQzlg][xxxxx][inet[/xxxxx:9310]]{client=true, data=false},}, reason: zen-disco-receive(from master [[xxxxx][OUl17sf3RYCKL9PaRInQtg][xxxxx][inet[/xxxx:9300]]])

1 Like

Nope, it's just normal cluster tasks occuring.

You must be using node client to talk to elasticsearch which just recognized logstash as it's non data node through zen discovery. Check elasticsearch output configuration settings in logstash conf file. It's normal and not an issue as mentioned by Mark.

"Node client"? are you referring to head or marvel plugin?
here is logstash output plugin configuration.
elasticsearch {
cluster => "esearch02"
index => "test-%{+YYYY.MM.dd}"
workers => 4
}

As far as I know Cluster setting in above configuration also uses node client to connect to ES. Either you specify protocol => "node" or provide cluster => "esearch02" will have same effect.