mirror of https://github.com/lukechilds/node.git
Browse Source
Only attributes of 'cluster.settings' will be modified after the first call, leaving all other cluster initialization alone. Each call that includes a 'settings' argument triggers a 'setup' event to be emitted. Instead of each call resetting all values to their defaults, use the current settings (if any) as the default. This retains setupMaster's support how cluster.fork() uses setupMaster() to ensure cluster.settings has been populated. Update example in docs to use current node coding style and include an example of progressive configuration. Signed-off-by: Fedor Indutny <fedor@indutny.com>archived-io.js-v0.10
Ryan Graham
11 years ago
committed by
Fedor Indutny
4 changed files with 156 additions and 16 deletions
@ -0,0 +1,62 @@ |
|||||
|
// Copyright Joyent, Inc. and other Node contributors.
|
||||
|
//
|
||||
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
||||
|
// copy of this software and associated documentation files (the
|
||||
|
// "Software"), to deal in the Software without restriction, including
|
||||
|
// without limitation the rights to use, copy, modify, merge, publish,
|
||||
|
// distribute, sublicense, and/or sell copies of the Software, and to permit
|
||||
|
// persons to whom the Software is furnished to do so, subject to the
|
||||
|
// following conditions:
|
||||
|
//
|
||||
|
// The above copyright notice and this permission notice shall be included
|
||||
|
// in all copies or substantial portions of the Software.
|
||||
|
//
|
||||
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
||||
|
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
|
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
||||
|
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
||||
|
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
||||
|
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
||||
|
// USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
|
||||
|
|
||||
|
var common = require('../common'); |
||||
|
var assert = require('assert'); |
||||
|
var cluster = require('cluster'); |
||||
|
|
||||
|
assert(cluster.isMaster); |
||||
|
|
||||
|
assert.deepEqual(cluster.settings, {}, |
||||
|
'cluster.settings should not be initialized until needed'); |
||||
|
|
||||
|
cluster.setupMaster(); |
||||
|
assert.deepEqual(cluster.settings, { |
||||
|
args: process.argv.slice(2), |
||||
|
exec: process.argv[1], |
||||
|
execArgv: process.execArgv, |
||||
|
silent: false, |
||||
|
}); |
||||
|
console.log('ok sets defaults'); |
||||
|
|
||||
|
cluster.setupMaster({ exec: 'overridden' }); |
||||
|
assert.strictEqual(cluster.settings.exec, 'overridden'); |
||||
|
console.log('ok overrids defaults'); |
||||
|
|
||||
|
cluster.setupMaster({ args: ['foo', 'bar'] }); |
||||
|
assert.strictEqual(cluster.settings.exec, 'overridden'); |
||||
|
assert.deepEqual(cluster.settings.args, ['foo', 'bar']); |
||||
|
|
||||
|
cluster.setupMaster({ execArgv: ['baz', 'bang'] }); |
||||
|
assert.strictEqual(cluster.settings.exec, 'overridden'); |
||||
|
assert.deepEqual(cluster.settings.args, ['foo', 'bar']); |
||||
|
assert.deepEqual(cluster.settings.execArgv, ['baz', 'bang']); |
||||
|
console.log('ok preserves unchanged settings on repeated calls'); |
||||
|
|
||||
|
cluster.setupMaster(); |
||||
|
assert.deepEqual(cluster.settings, { |
||||
|
args: ['foo', 'bar'], |
||||
|
exec: 'overridden', |
||||
|
execArgv: ['baz', 'bang'], |
||||
|
silent: false, |
||||
|
}); |
||||
|
console.log('ok preserves current settings'); |
@ -0,0 +1,71 @@ |
|||||
|
// Copyright Joyent, Inc. and other Node contributors.
|
||||
|
//
|
||||
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
||||
|
// copy of this software and associated documentation files (the
|
||||
|
// "Software"), to deal in the Software without restriction, including
|
||||
|
// without limitation the rights to use, copy, modify, merge, publish,
|
||||
|
// distribute, sublicense, and/or sell copies of the Software, and to permit
|
||||
|
// persons to whom the Software is furnished to do so, subject to the
|
||||
|
// following conditions:
|
||||
|
//
|
||||
|
// The above copyright notice and this permission notice shall be included
|
||||
|
// in all copies or substantial portions of the Software.
|
||||
|
//
|
||||
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
||||
|
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
|
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
||||
|
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
||||
|
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
||||
|
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
||||
|
// USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
|
||||
|
|
||||
|
var common = require('../common'); |
||||
|
var assert = require('assert'); |
||||
|
var cluster = require('cluster'); |
||||
|
|
||||
|
assert(cluster.isMaster); |
||||
|
|
||||
|
// The cluster.settings object is cloned even though the current implementation
|
||||
|
// makes that unecessary. This is to make the test less fragile if the
|
||||
|
// implementation ever changes such that cluster.settings is mutated instead of
|
||||
|
// replaced.
|
||||
|
function cheapClone(obj) { |
||||
|
return JSON.parse(JSON.stringify(obj)); |
||||
|
} |
||||
|
|
||||
|
var configs = []; |
||||
|
|
||||
|
// Capture changes
|
||||
|
cluster.on('setup', function() { |
||||
|
console.log('"setup" emitted', cluster.settings); |
||||
|
configs.push(cheapClone(cluster.settings)); |
||||
|
}); |
||||
|
|
||||
|
var execs = [ |
||||
|
'node-next', |
||||
|
'node-next-2', |
||||
|
'node-next-3', |
||||
|
]; |
||||
|
|
||||
|
process.on('exit', function assertTests() { |
||||
|
// Tests that "setup" is emitted for every call to setupMaster
|
||||
|
assert.strictEqual(configs.length, execs.length); |
||||
|
|
||||
|
assert.strictEqual(configs[0].exec, execs[0]); |
||||
|
assert.strictEqual(configs[1].exec, execs[1]); |
||||
|
assert.strictEqual(configs[2].exec, execs[2]); |
||||
|
}); |
||||
|
|
||||
|
// Make changes to cluster settings
|
||||
|
execs.forEach(function(v, i) { |
||||
|
setTimeout(function() { |
||||
|
cluster.setupMaster({ exec: v }); |
||||
|
}, i * 100); |
||||
|
}); |
||||
|
|
||||
|
// cluster emits 'setup' asynchronously, so we must stay alive long
|
||||
|
// enough for that to happen
|
||||
|
setTimeout(function() { |
||||
|
console.log('cluster setup complete'); |
||||
|
}, (execs.length + 1) * 100); |
Loading…
Reference in new issue