Isolate esvm clusters by purpose

Attempting to run multiple elasticsearch clusters on the same host
without specifying different cluster names actually triggers the
discovery behaviors of elasticsearch, which adds the second es process
as another node of the original cluster. This means that despite running
on different ports, our test setups of elasticsearch actually attempt to
modify the main dev setup.

Fixes #5529
This commit is contained in:
Court Ewing 2015-11-30 16:28:16 -05:00
parent af6175e81a
commit 38d5fc5051

View file

@ -28,6 +28,9 @@ module.exports = function (grunt) {
config: {
path: {
data: dataDir
},
cluster: {
name: 'esvm-dev'
}
}
}
@ -39,6 +42,9 @@ module.exports = function (grunt) {
config: {
http: {
port: 9210
},
cluster: {
name: 'esvm-test'
}
}
}
@ -50,6 +56,9 @@ module.exports = function (grunt) {
config: {
http: {
port: uiConfig.servers.elasticsearch.port
},
cluster: {
name: 'esvm-ui'
}
}
}