ELK Cluster doubts (ELK, Kibana and Logstash)

Hello!

I'm begineer in ELK stack and I have a cluster with 2 master nodes and 3 data nodes.
I have also a machine with logstash and kibana running.

The cluster thing it's not so clear and a I have few questions:

  1. Master nodes are responsable for load index data through the data nodes?

  2. Is it necessary to have a load balacing in front of data masters?

  3. When I refer to the elasticsearch.url on kibana config, is it need to inform all the nodes?

  4. For Logstash.conf should I inform all the cluster nodes on output?
    output {
    elasticsearch {
    hosts => ["master01:9200","master02:9200","data-01:9200","data02:9200","data03:9200"]
    }
    }

Thanks,
Natália

Welcome!

We say "Elastic Stack" and not ELK anymore otherwise Beats feels alone.

Master nodes are responsable for load index data through the data nodes?

No. They are just responsible to manage the cluster state (information about nodes, indices) and take decision regarding cluster events like a node joins or leave, an index needs to be created.

Is it necessary to have a load balacing in front of data masters?

Not necessary.

When I refer to the elasticsearch.url on kibana config, is it need to inform all the nodes?

No. One of the nodes is enough. But if your node dies, then your Kibana instance won't be able to connect to the cluster until it comes back.

For Logstash.conf should I inform all the cluster nodes on output?

No. Same as for Kibana. But it means that all the load will go first to those nodes.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.