Server: improve requests scheduler

pull/30/head
Chocobozzz 2017-01-10 22:24:42 +01:00
parent ed04d94f6d
commit bd14d16a29
4 changed files with 128 additions and 50 deletions

View File

@ -108,8 +108,10 @@ let REQUESTS_INTERVAL = 600000
// Number of requests in parallel we can make // Number of requests in parallel we can make
const REQUESTS_IN_PARALLEL = 10 const REQUESTS_IN_PARALLEL = 10
// How many requests we put in request // To how many pods we send requests
const REQUESTS_LIMIT = 10 const REQUESTS_LIMIT_PODS = 10
// How many requests we send to a pod per interval
const REQUESTS_LIMIT_PER_POD = 5
// Number of requests to retry for replay requests module // Number of requests to retry for replay requests module
const RETRY_REQUESTS = 5 const RETRY_REQUESTS = 5
@ -184,7 +186,8 @@ module.exports = {
REQUEST_ENDPOINTS, REQUEST_ENDPOINTS,
REQUESTS_IN_PARALLEL, REQUESTS_IN_PARALLEL,
REQUESTS_INTERVAL, REQUESTS_INTERVAL,
REQUESTS_LIMIT, REQUESTS_LIMIT_PODS,
REQUESTS_LIMIT_PER_POD,
RETRY_REQUESTS, RETRY_REQUESTS,
SEARCHABLE_COLUMNS, SEARCHABLE_COLUMNS,
SIGNATURE_ALGORITHM, SIGNATURE_ALGORITHM,

View File

@ -54,7 +54,13 @@ function removeVideoToFriends (videoParams) {
} }
function reportAbuseVideoToFriend (reportData, video) { function reportAbuseVideoToFriend (reportData, video) {
createRequest('report-abuse', constants.REQUEST_ENDPOINTS.VIDEOS, reportData, [ video.Author.podId ]) const options = {
type: 'report-abuse',
endpoint: constants.REQUEST_ENDPOINTS.VIDEOS,
data: reportData,
toIds: [ video.Author.podId ]
}
createRequest(options)
} }
function hasFriends (callback) { function hasFriends (callback) {
@ -161,7 +167,13 @@ function sendOwnedVideosToPod (podId) {
return return
} }
createRequest('add', constants.REQUEST_ENDPOINTS.VIDEOS, remoteVideo, [ podId ]) const options = {
type: 'add',
endpoint: constants.REQUEST_ENDPOINTS.VIDEOS,
data: remoteVideo,
toIds: [ podId ]
}
createRequest(options)
}) })
}) })
}) })

View File

@ -50,6 +50,7 @@ module.exports = function (sequelize, DataTypes) {
incrementScores, incrementScores,
list, list,
listAllIds, listAllIds,
listRandomPodIdsWithRequest,
listBadPods, listBadPods,
load, load,
loadByHost, loadByHost,
@ -134,6 +135,42 @@ function listAllIds (transaction, callback) {
}) })
} }
function listRandomPodIdsWithRequest (limit, callback) {
const self = this
self.count().asCallback(function (err, count) {
if (err) return callback(err)
// Optimization...
if (count === 0) return callback(null, [])
let start = Math.floor(Math.random() * count) - limit
if (start < 0) start = 0
const query = {
attributes: [ 'id' ],
order: [
[ 'id', 'ASC' ]
],
offset: start,
limit: limit,
where: {
id: {
$in: [
this.sequelize.literal('SELECT "podId" FROM "RequestToPods"')
]
}
}
}
return this.findAll(query).asCallback(function (err, pods) {
if (err) return callback(err)
return callback(null, map(pods, 'id'))
})
})
}
function listBadPods (callback) { function listBadPods (callback) {
const query = { const query = {
where: { where: {

View File

@ -138,9 +138,9 @@ function makeRequests () {
const self = this const self = this
const RequestToPod = this.sequelize.models.RequestToPod const RequestToPod = this.sequelize.models.RequestToPod
// We limit the size of the requests (REQUESTS_LIMIT) // We limit the size of the requests
// We don't want to stuck with the same failing requests so we get a random list // We don't want to stuck with the same failing requests so we get a random list
listWithLimitAndRandom.call(self, constants.REQUESTS_LIMIT, function (err, requests) { listWithLimitAndRandom.call(self, constants.REQUESTS_LIMIT_PODS, constants.REQUESTS_LIMIT_PER_POD, function (err, requests) {
if (err) { if (err) {
logger.error('Cannot get the list of requests.', { err: err }) logger.error('Cannot get the list of requests.', { err: err })
return // Abort return // Abort
@ -156,13 +156,15 @@ function makeRequests () {
// We want to group requests by destinations pod and endpoint // We want to group requests by destinations pod and endpoint
const requestsToMakeGrouped = {} const requestsToMakeGrouped = {}
Object.keys(requests).forEach(function (toPodId) {
requests[toPodId].forEach(function (data) {
const request = data.request
const pod = data.pod
const hashKey = toPodId + request.endpoint
requests.forEach(function (request) {
request.Pods.forEach(function (toPod) {
const hashKey = toPod.id + request.endpoint
if (!requestsToMakeGrouped[hashKey]) { if (!requestsToMakeGrouped[hashKey]) {
requestsToMakeGrouped[hashKey] = { requestsToMakeGrouped[hashKey] = {
toPodId: toPod.id, toPod: pod,
endpoint: request.endpoint, endpoint: request.endpoint,
ids: [], // request ids, to delete them from the DB in the future ids: [], // request ids, to delete them from the DB in the future
datas: [] // requests data, datas: [] // requests data,
@ -179,37 +181,30 @@ function makeRequests () {
eachLimit(Object.keys(requestsToMakeGrouped), constants.REQUESTS_IN_PARALLEL, function (hashKey, callbackEach) { eachLimit(Object.keys(requestsToMakeGrouped), constants.REQUESTS_IN_PARALLEL, function (hashKey, callbackEach) {
const requestToMake = requestsToMakeGrouped[hashKey] const requestToMake = requestsToMakeGrouped[hashKey]
const toPod = requestToMake.toPod
// FIXME: SQL request inside a loop :/
self.sequelize.models.Pod.load(requestToMake.toPodId, function (err, toPod) {
if (err) {
logger.error('Error finding pod by id.', { err: err })
return callbackEach()
}
// Maybe the pod is not our friend anymore so simply remove it // Maybe the pod is not our friend anymore so simply remove it
if (!toPod) { if (!toPod) {
const requestIdsToDelete = requestToMake.ids const requestIdsToDelete = requestToMake.ids
logger.info('Removing %d requests of unexisting pod %s.', requestIdsToDelete.length, requestToMake.toPodId) logger.info('Removing %d requests of unexisting pod %s.', requestIdsToDelete.length, requestToMake.toPod.id)
RequestToPod.removePodOf.call(self, requestIdsToDelete, requestToMake.toPodId) RequestToPod.removePodOf.call(self, requestIdsToDelete, requestToMake.toPod.id)
return callbackEach() return callbackEach()
} }
makeRequest(toPod, requestToMake.endpoint, requestToMake.datas, function (success) { makeRequest(toPod, requestToMake.endpoint, requestToMake.datas, function (success) {
if (success === true) { if (success === true) {
logger.debug('Removing requests for pod %s.', requestToMake.toPodId, { requestsIds: requestToMake.ids }) logger.debug('Removing requests for pod %s.', requestToMake.toPod.id, { requestsIds: requestToMake.ids })
goodPods.push(requestToMake.toPodId) goodPods.push(requestToMake.toPod.id)
// Remove the pod id of these request ids // Remove the pod id of these request ids
RequestToPod.removePodOf(requestToMake.ids, requestToMake.toPodId, callbackEach) RequestToPod.removePodOf(requestToMake.ids, requestToMake.toPod.id, callbackEach)
} else { } else {
badPods.push(requestToMake.toPodId) badPods.push(requestToMake.toPod.id)
callbackEach() callbackEach()
} }
}) })
})
}, function () { }, function () {
// All the requests were made, we update the pods score // All the requests were made, we update the pods score
updatePodsScore.call(self, goodPods, badPods) updatePodsScore.call(self, goodPods, badPods)
@ -275,29 +270,60 @@ function updatePodsScore (goodPods, badPods) {
} }
} }
function listWithLimitAndRandom (limit, callback) { function listWithLimitAndRandom (limitPods, limitRequestsPerPod, callback) {
const self = this const self = this
const Pod = this.sequelize.models.Pod
self.count().asCallback(function (err, count) { Pod.listRandomPodIdsWithRequest(limitPods, function (err, podIds) {
if (err) return callback(err) if (err) return callback(err)
// Optimization... // We don't have friends that have requests
if (count === 0) return callback(null, []) if (podIds.length === 0) return callback(null, [])
let start = Math.floor(Math.random() * count) - limit
if (start < 0) start = 0
// The the first x requests of these pods
// It is very important to sort by id ASC to keep the requests order!
const query = { const query = {
order: [ order: [
[ 'id', 'ASC' ] [ 'id', 'ASC' ]
], ],
// offset: start, include: [
// limit: limit, {
include: [ this.sequelize.models.Pod ] model: self.sequelize.models.Pod,
where: {
id: {
$in: podIds
}
}
}
]
} }
self.findAll(query).asCallback(callback) self.findAll(query).asCallback(function (err, requests) {
if (err) return callback(err)
const requestsGrouped = groupAndTruncateRequests(requests, limitRequestsPerPod)
return callback(err, requestsGrouped)
}) })
})
}
function groupAndTruncateRequests (requests, limitRequestsPerPod) {
const requestsGrouped = {}
requests.forEach(function (request) {
request.Pods.forEach(function (pod) {
if (!requestsGrouped[pod.id]) requestsGrouped[pod.id] = []
if (requestsGrouped[pod.id].length < limitRequestsPerPod) {
requestsGrouped[pod.id].push({
request,
pod
})
}
})
})
return requestsGrouped
} }
function removeAll (callback) { function removeAll (callback) {