Hello All,
Is there a way to achieve the following approach?
I want to setup an High Availability on ES. I can setup an HAProxy on top of two different ES servers and route the traffic if one node is down. But my question is, If I store the Index data in a NAS drive (mounted across my two ES servers) can the ES 2 write the data from (2nd node) to the existing Index created by ES1 (First node)?
Example:
Filebeat -> ElasticSearch (Server 1) -> Index stored in NAS
if Server 1 goes down, I want to write the incoming logs to same index created in the above step
Filebeat -> ElasticSearch (Server 2) -> Use the above created Index and continue storing the data to NAS
Please let me know if it requires additional explanation.