when starting 1.x and master versions of ES for testing, start with the node.bench flag set to true.
This commit is contained in:
@ -8,7 +8,7 @@ var esOpts = [
|
|||||||
'-D es.discovery.zen.ping.multicast.enabled=false',
|
'-D es.discovery.zen.ping.multicast.enabled=false',
|
||||||
'-D es.discovery.zen.ping_timeout=1',
|
'-D es.discovery.zen.ping_timeout=1',
|
||||||
'-D es.logger.level=ERROR'
|
'-D es.logger.level=ERROR'
|
||||||
].join(' ');
|
];
|
||||||
|
|
||||||
var utils = require('../utils');
|
var utils = require('../utils');
|
||||||
|
|
||||||
@ -49,11 +49,20 @@ utils.branches.forEach(function (branch) {
|
|||||||
exec: './scripts/es.sh install ' + branch,
|
exec: './scripts/es.sh install ' + branch,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
var args = esOpts.slice(0);
|
||||||
|
|
||||||
|
switch (branch) {
|
||||||
|
case '0.90':
|
||||||
|
args.push('-f');
|
||||||
|
break;
|
||||||
|
case 'master':
|
||||||
|
case '1.x':
|
||||||
|
args.push('-Des.node.bench=true');
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
config['es_' + branch] = {
|
config['es_' + branch] = {
|
||||||
exec:
|
exec: './.snapshots/' + branch + '_nightly/bin/elasticsearch ' + args.join(' '),
|
||||||
'./.snapshots/' + branch + '_nightly/bin/elasticsearch ' +
|
|
||||||
(branch === '0.90' ? '-f ' : '') +
|
|
||||||
esOpts,
|
|
||||||
options: {
|
options: {
|
||||||
wait: false,
|
wait: false,
|
||||||
quiet: true
|
quiet: true
|
||||||
|
|||||||
Reference in New Issue
Block a user