Hello,
I was trying to setup the cross cluster search but not sure if only one seed should be configured or all seeds should be configured from remote cluster. Any help is appreciated.
Below example is the cross cluster settings with only one seed from the remote cluster.
PUT _cluster/settings
{
"persistent": {
"cluster": {
"remote": {
"cluster_one": {
"seeds": [
"192.168.1.1:9300"
]
},
Below example is the cross cluster settings with all the seeds from the remote cluster.
PUT _cluster/settings
{
"persistent": {
"cluster": {
"remote": {
"cluster_one": {
"seeds": ["192.168.1.1:9300", "192.168.1.2:9300", "192.168.1.3:9300" ]
},
Thanks