I am planning to setup a 3 node ES cluster with all 3 nodes have their local disk storage for data and NFS storage for ES install in following fashion of storage in given filesystem names
Node[1,2,3] : /NFS/install
Node1 : /local1/data
Node2 : /local2/data
Node3 : /local3/data
Shard Setup : 2 primary and 1 replica for each index.
The above local filesystem of each node are not shared with other 2 nodes i.e. Node2 can't read data on /local1/data(Node1) or /local3/data(Node3).
/NFS/install is a common NFS filesystem mounted on all above 3 nodes which contain ES installation package with following directories
bin config data lib LICENSE.txt logs modules NOTICE.txt plugins README.textile script
How to set the path.data at cluster level for above data & install storage filesystem naming?
Should I do some renaming of local filesystem names to simplify?