mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2024-11-26 02:30:37 -06:00
Process broadcast requests in parallel
This commit is contained in:
parent
5350fd8e5b
commit
f55e5a7bf8
@ -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)
|
||||
})
|
||||
}
|
||||
|
@ -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,
|
||||
|
@ -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)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user