feat: database connection retries on start
This commit is contained in:
parent
33e31a9901
commit
04193dbc6f
@ -108,6 +108,7 @@ module.exports = {
|
|||||||
const models = autoload(path.join(WIKI.SERVERPATH, 'models'))
|
const models = autoload(path.join(WIKI.SERVERPATH, 'models'))
|
||||||
|
|
||||||
// Set init tasks
|
// Set init tasks
|
||||||
|
let conAttempts = 0
|
||||||
let initTasks = {
|
let initTasks = {
|
||||||
// -> Migrate DB Schemas
|
// -> Migrate DB Schemas
|
||||||
async syncSchemas() {
|
async syncSchemas() {
|
||||||
@ -115,10 +116,28 @@ module.exports = {
|
|||||||
tableName: 'migrations',
|
tableName: 'migrations',
|
||||||
migrationSource
|
migrationSource
|
||||||
})
|
})
|
||||||
|
},
|
||||||
|
// -> Attempt initial connection
|
||||||
|
async connect() {
|
||||||
|
try {
|
||||||
|
WIKI.logger.info('Connecting to database...')
|
||||||
|
await self.knex.raw('SELECT 1 + 1;')
|
||||||
|
WIKI.logger.info('Database Connection Successful [ OK ]')
|
||||||
|
} catch (err) {
|
||||||
|
if (conAttempts < 10) {
|
||||||
|
WIKI.logger.error(`Database Connection Error: ${err.code} ${err.address}:${err.port}`)
|
||||||
|
WIKI.logger.warn(`Will retry in 3 seconds... [Attempt ${++conAttempts} of 10]`)
|
||||||
|
await new Promise(resolve => setTimeout(resolve, 3000))
|
||||||
|
await initTasks.connect()
|
||||||
|
} else {
|
||||||
|
throw err
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
let initTasksQueue = (WIKI.IS_MASTER) ? [
|
let initTasksQueue = (WIKI.IS_MASTER) ? [
|
||||||
|
initTasks.connect,
|
||||||
initTasks.syncSchemas
|
initTasks.syncSchemas
|
||||||
] : [
|
] : [
|
||||||
() => { return Promise.resolve() }
|
() => { return Promise.resolve() }
|
||||||
|
Loading…
Reference in New Issue
Block a user