4b18cbcbdb
no issue - When jobs are performing CPU intensive tasks they block main process' event loop. They also can cause memory leaks or unexpected crashes effectively crashing the parent proccess. To address these issues jobs need to be performed off of main process. Worker Threads (https://nodejs.org/dist/latest-v12.x/docs/api/worker_threads.html) are the best candidate for such work. - These changes introduce an integration on top of bree (https://github.com/breejs/bree/) which allows to run recurring jobs in worker thereads. It falls back to child process execution for Node v10 running without `--experimental-worker` flag. - bree was chosen not only because it gives a polyfill for older Node versions. It has support for some of the future use-cases Ghost is looking to implement, like scheduled jobs. - This changeset also includes a complete example of job running on an interval with a possibility for graceful shutdown |
||
---|---|---|
.. | ||
lib | ||
test | ||
.eslintrc.js | ||
index.js | ||
LICENSE | ||
package.json | ||
README.md |
Job Manager
Install
npm install @tryghost/job-manager --save
or
yarn add @tryghost/job-manager
Usage
Develop
This is a mono repository, managed with lerna.
Follow the instructions for the top-level repo.
git clone
this repo &cd
into it as usual- Run
yarn
to install top-level dependencies.
Run
yarn dev
Test
yarn lint
run just eslintyarn test
run lint and tests
Copyright & License
Copyright (c) 2020 Ghost Foundation - Released under the MIT license.