Process broadcast requests in parallel

This commit is contained in:
Chocobozzz 2018-04-18 16:04:49 +02:00
parent 5350fd8e5b
commit f55e5a7bf8
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
3 changed files with 13 additions and 13 deletions

View File

@ -215,7 +215,8 @@ async function startApplication () {
Redis.Instance.init()
// Make server listening
server.listen(port, hostname)
logger.info('Server listening on %s:%d', hostname, port)
logger.info('Web server: %s', CONFIG.WEBSERVER.URL)
server.listen(port, hostname, () => {
logger.info('Server listening on %s:%d', hostname, port)
logger.info('Web server: %s', CONFIG.WEBSERVER.URL)
})
}

View File

@ -77,6 +77,7 @@ const JOB_CONCURRENCY: { [ id in JobType ]: number } = {
'video-file': 1,
'email': 5
}
const BROADCAST_CONCURRENCY = 5 // How many requests in parallel we do in activitypub-http-broadcast job
// 2 days
const JOB_COMPLETED_LIFETIME = 60000 * 60 * 24 * 2
@ -463,6 +464,7 @@ export {
LAST_MIGRATION_VERSION,
OAUTH_LIFETIME,
OPENGRAPH_AND_OEMBED_COMMENT,
BROADCAST_CONCURRENCY,
PAGINATION_COUNT_DEFAULT,
ACTOR_FOLLOW_SCORE,
PREVIEWS_SIZE,

View File

@ -1,8 +1,10 @@
import * as kue from 'kue'
import * as Bluebird from 'bluebird'
import { logger } from '../../../helpers/logger'
import { doRequest } from '../../../helpers/requests'
import { ActorFollowModel } from '../../../models/activitypub/actor-follow'
import { buildSignedRequestOptions, computeBody } from './utils/activitypub-http-utils'
import { BROADCAST_CONCURRENCY } from '../../../initializers'
export type ActivitypubHttpBroadcastPayload = {
uris: string[]
@ -28,16 +30,11 @@ async function processActivityPubHttpBroadcast (job: kue.Job) {
const badUrls: string[] = []
const goodUrls: string[] = []
for (const uri of payload.uris) {
options.uri = uri
try {
await doRequest(options)
goodUrls.push(uri)
} catch (err) {
badUrls.push(uri)
}
}
await Bluebird.map(payload.uris, uri => {
return doRequest(Object.assign({}, options, { uri }))
.then(() => goodUrls.push(uri))
.catch(() => badUrls.push(uri))
}, { concurrency: BROADCAST_CONCURRENCY })
return ActorFollowModel.updateActorFollowsScore(goodUrls, badUrls, undefined)
}