1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-04 18:29:27 +02:00

Server: create transaction refractoring

This commit is contained in:
Chocobozzz 2017-01-15 19:53:11 +01:00
parent 9bce75925e
commit 4df023f2d4
5 changed files with 75 additions and 73 deletions

View file

@ -0,0 +1,55 @@
'use strict'
const retry = require('async/retry')
const db = require('../initializers/database')
const logger = require('./logger')
const utils = {
retryTransactionWrapper,
transactionRetryer,
startSerializableTransaction
}
// { arguments, errorMessage }
function retryTransactionWrapper (functionToRetry, options, finalCallback) {
const args = options.arguments ? options.arguments : []
utils.transactionRetryer(
function (callback) {
return functionToRetry.apply(this, args.concat([ callback ]))
},
function (err) {
if (err) {
logger.error(options.errorMessage, { error: err })
}
// Do not return the error, continue the process
return finalCallback(null)
}
)
}
function transactionRetryer (func, callback) {
retry({
times: 5,
errorFilter: function (err) {
const willRetry = (err.name === 'SequelizeDatabaseError')
logger.debug('Maybe retrying the transaction function.', { willRetry })
return willRetry
}
}, func, callback)
}
function startSerializableTransaction (callback) {
console.log(db)
db.sequelize.transaction({ isolationLevel: 'SERIALIZABLE' }).asCallback(function (err, t) {
// We force to return only two parameters
return callback(err, t)
})
}
// ---------------------------------------------------------------------------
module.exports = utils