-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20 from bcgov/feat/addRunOnce
feat: add options for compress and run once
- Loading branch information
Showing
4 changed files
with
99 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,57 +1,22 @@ | ||
import { Cron } from 'croner'; | ||
import { | ||
CRON_BACKUP, | ||
CRON_COMPRESS, | ||
CRON_JANITOR, | ||
CRON_ROTATE, | ||
} from './constants'; | ||
import { backup } from './cron/backup'; | ||
import { DatabaseService } from './services/database.service'; | ||
import { rotateLogs } from './cron/rotate'; | ||
import { removeOldLogs, syncLogsDb } from './cron/janitor'; | ||
import { compress } from './cron/compress'; | ||
import { JobService } from './services/job.service'; | ||
|
||
console.log('Starting...'); | ||
|
||
function runGarbageCollection() { | ||
if (global.gc) { | ||
global.gc(); | ||
} | ||
} | ||
|
||
async function main() { | ||
const db = await DatabaseService.create(); | ||
const jobService = new JobService(db); | ||
|
||
if (!global.gc) { | ||
console.log( | ||
'Garbage collection unavailable. Pass --expose-gc ' + | ||
'when launching node to enable forced garbage collection.', | ||
); | ||
} | ||
const runOnce = process.env.RUN_ONCE === 'true'; | ||
const compressEnabled = process.env.COMPRESS_ENABLED === 'true'; | ||
|
||
const rotateJob = Cron(CRON_ROTATE, async () => { | ||
await rotateLogs(db); | ||
runGarbageCollection(); | ||
}); | ||
const compressJob = Cron(CRON_COMPRESS, async () => { | ||
await syncLogsDb(db); | ||
await compress(db); | ||
runGarbageCollection(); | ||
}); | ||
const backupJob = Cron(CRON_BACKUP, async () => { | ||
await syncLogsDb(db); | ||
await backup(db); | ||
runGarbageCollection(); | ||
}); | ||
const janitorJob = Cron(CRON_JANITOR, async () => { | ||
await syncLogsDb(db); | ||
await removeOldLogs(db); | ||
runGarbageCollection(); | ||
}); | ||
console.log(`Rotate job next run: ${rotateJob.nextRun()}`); | ||
console.log(`Compress job next run: ${compressJob.nextRun()}`); | ||
console.log(`Backup job next run: ${backupJob.nextRun()}`); | ||
console.log(`Janitor job next run: ${janitorJob.nextRun()}`); | ||
jobService.run(runOnce, compressEnabled); | ||
} | ||
|
||
main(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
import { Cron } from 'croner'; | ||
import { | ||
CRON_BACKUP, | ||
CRON_COMPRESS, | ||
CRON_JANITOR, | ||
CRON_ROTATE, | ||
} from '../constants'; | ||
import { backup } from '../cron/backup'; | ||
import { rotateLogs } from '../cron/rotate'; | ||
import { removeOldLogs, syncLogsDb } from '../cron/janitor'; | ||
import { compress } from '../cron/compress'; | ||
import { DatabaseService } from './database.service'; | ||
|
||
function runGarbageCollection() { | ||
if (global.gc) { | ||
global.gc(); | ||
} | ||
} | ||
|
||
export class JobService { | ||
private db: DatabaseService; | ||
|
||
constructor(db: DatabaseService) { | ||
this.db = db; | ||
} | ||
|
||
rotate = async () => { | ||
await rotateLogs(this.db); | ||
runGarbageCollection(); | ||
}; | ||
|
||
compress = async () => { | ||
console.log('start compress'); | ||
await syncLogsDb(this.db); | ||
await compress(this.db); | ||
runGarbageCollection(); | ||
}; | ||
|
||
backup = async () => { | ||
console.log('start backup'); | ||
await syncLogsDb(this.db); | ||
await backup(this.db); | ||
runGarbageCollection(); | ||
}; | ||
|
||
janitor = async () => { | ||
await syncLogsDb(this.db); | ||
await removeOldLogs(this.db); | ||
runGarbageCollection(); | ||
}; | ||
|
||
private async runOnceJob(compressEnabled: boolean) { | ||
// Stage 1: Rotate log | ||
await this.rotate(); | ||
// Stage 2: Compress files - optional | ||
if (compressEnabled) { | ||
await this.compress(); | ||
} | ||
// Stage 3: Backup | ||
await this.backup(); | ||
// Stage 4: Janitor | ||
await this.janitor(); | ||
} | ||
|
||
private async cronJobs(compressEnabled: boolean) { | ||
const rotateCronJob = Cron(CRON_ROTATE, this.rotate); | ||
|
||
if (compressEnabled) { | ||
const compressCronJob = Cron(CRON_COMPRESS, this.compress); | ||
console.log(`Compress job next run: ${compressCronJob.nextRun()}`); | ||
} | ||
const backupCronJob = Cron(CRON_BACKUP, this.backup); | ||
const janitorCronJob = Cron(CRON_JANITOR, this.janitor); | ||
|
||
console.log(`Backup job next run: ${backupCronJob.nextRun()}`); | ||
console.log(`Rotate job next run: ${rotateCronJob.nextRun()}`); | ||
console.log(`Janitor job next run: ${janitorCronJob.nextRun()}`); | ||
} | ||
|
||
async run(runOnce: boolean, compressEnabled: boolean) { | ||
if (runOnce) this.runOnceJob(compressEnabled); | ||
else this.cronJobs(compressEnabled); | ||
} | ||
} |