Server: improve real world script

pull/30/head
Chocobozzz 2017-01-06 23:24:20 +01:00
parent bdfbd4f162
commit bb0b243c92
1 changed files with 22 additions and 7 deletions

View File

@ -2,6 +2,7 @@
const each = require('async/each') const each = require('async/each')
const isEqual = require('lodash/isEqual') const isEqual = require('lodash/isEqual')
const differenceWith = require('lodash/differenceWith')
const program = require('commander') const program = require('commander')
const series = require('async/series') const series = require('async/series')
@ -20,28 +21,35 @@ program
.option('-a, --action [interval]', 'Interval in ms for an action') .option('-a, --action [interval]', 'Interval in ms for an action')
.option('-i, --integrity [interval]', 'Interval in ms for an integrity check') .option('-i, --integrity [interval]', 'Interval in ms for an integrity check')
.option('-f, --flush', 'Flush datas on exit') .option('-f, --flush', 'Flush datas on exit')
.option('-d, --difference', 'Display difference if integrity is not okay')
.parse(process.argv) .parse(process.argv)
const createWeight = parseInt(program.create) || 5 const createWeight = program.create !== undefined ? parseInt(program.create) : 5
const removeWeight = parseInt(program.remove) || 4 const removeWeight = program.remove !== undefined ? parseInt(program.remove) : 4
const flushAtExit = program.flush || false const flushAtExit = program.flush || false
const actionInterval = parseInt(program.action) || 500 const actionInterval = program.action !== undefined ? parseInt(program.action) : 500
let integrityInterval = parseInt(program.integrity) || 60000 let integrityInterval = program.integrity !== undefined ? parseInt(program.integrity) : 60000
const displayDiffOnFail = program.integrity || false
const numberOfPods = 6 const numberOfPods = 6
// Wait requests between pods // Wait requests between pods
const requestsMaxPerInterval = constants.REQUESTS_INTERVAL / actionInterval const baseRequestInterval = integrityInterval < constants.REQUESTS_INTERVAL ? integrityInterval : constants.REQUESTS_INTERVAL
const requestsMaxPerInterval = baseRequestInterval / actionInterval
const intervalsToMakeAllRequests = Math.ceil(requestsMaxPerInterval / constants.REQUESTS_LIMIT) const intervalsToMakeAllRequests = Math.ceil(requestsMaxPerInterval / constants.REQUESTS_LIMIT)
const waitForBeforeIntegrityCheck = (intervalsToMakeAllRequests * constants.REQUESTS_INTERVAL) + 1000 const waitForBeforeIntegrityCheck = (intervalsToMakeAllRequests * constants.REQUESTS_INTERVAL) + 1000
integrityInterval += waitForBeforeIntegrityCheck
console.log('Create weight: %d, remove weight: %d.', createWeight, removeWeight) console.log('Create weight: %d, remove weight: %d.', createWeight, removeWeight)
if (flushAtExit) { if (flushAtExit) {
console.log('Program will flush data on exit.') console.log('Program will flush data on exit.')
} else { } else {
console.log('Program will not flush data on exit.') console.log('Program will not flush data on exit.')
} }
if (displayDiffOnFail) {
console.log('Program will display diff on failure.')
} else {
console.log('Program will not display diff on failure')
}
console.log('Interval in ms for each action: %d.', actionInterval) console.log('Interval in ms for each action: %d.', actionInterval)
console.log('Interval in ms for each integrity check: %d.', integrityInterval) console.log('Interval in ms for each integrity check: %d.', integrityInterval)
console.log('Will wait %d ms before an integrity check.', waitForBeforeIntegrityCheck) console.log('Will wait %d ms before an integrity check.', waitForBeforeIntegrityCheck)
@ -73,6 +81,8 @@ runServers(numberOfPods, function (err, servers) {
}, actionInterval) }, actionInterval)
setInterval(function () { setInterval(function () {
if (checking === true) return
console.log('Checking integrity...') console.log('Checking integrity...')
checking = true checking = true
@ -196,6 +206,7 @@ function checkIntegrity (servers, callback) {
delete serverVideo.id delete serverVideo.id
delete serverVideo.isLocal delete serverVideo.isLocal
delete serverVideo.thumbnailPath delete serverVideo.thumbnailPath
delete serverVideo.updatedAt
} }
videos.push(serverVideos) videos.push(serverVideos)
@ -206,6 +217,10 @@ function checkIntegrity (servers, callback) {
if (!isEqual(video, videos[0])) { if (!isEqual(video, videos[0])) {
console.error('Integrity not ok!') console.error('Integrity not ok!')
if (displayDiffOnFail) {
console.log(differenceWith(videos[0], video, isEqual))
}
process.exit(-1) process.exit(-1)
} }
} }