ES:6.3.2
Below is my Master Conf
bootstrap.memory_lock: true
cluster.name: pm_production_elasticsearch
discovery.zen.minimum_master_nodes: 2
http.port: 9200
network.host: 0.0.0.0
node.data: false
node.master: true
transport.host: master1
transport.tcp.port: 9300
xpack.security.enabled: false
node.name: master1
discovery.zen.ping.unicast.hosts:
- master1:9300
- master2:9300
- master3:9300
Client Configs
bootstrap.memory_lock: true
cluster.name: pm_production_elasticsearch
discovery.zen.minimum_master_nodes: 2
http.port: 9200
network.host: 0.0.0.0
node.data: true
node.master: false
path.data: /data/elasticsearch, /data1/elasticsearch
transport.host: node_ip
transport.tcp.port: 9300
xpack.security.enabled: false
node.name: node_ip
discovery.zen.ping.unicast.hosts:
- master1:9300
- master2:9300
- master3:9300
I have logstash receiving input from filebeat and pushing to ES
What I want to know is can i push the output to the slave nodes or only the master nodes?