a1c4e64994
ref https://linear.app/tryghost/issue/CFR-4/ - added request queueing middleware (express-queue) to handle high request volume - added new config option `optimization.requestQueue` - added new config option `optimization.requestConcurrency` - added logging of request queue depth - `req.queueDepth` We've done a fair amount of investigation around improving Ghost's resiliency to high request volume. While we believe this to be partly due to database connection contention, it also seems Ghost gets overwhelmed by the requests themselves. Implementing a simple queueing system allows us a simple lever to change the volume of requests Ghost is actually ingesting at any given time and gives us options besides simply increasing database connection pool size. --------- Co-authored-by: Michael Barrett <mike@ghost.org>
38 lines
1021 B
JSON
38 lines
1021 B
JSON
{
|
|
"name": "@tryghost/members-stripe-service",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"author": "Ghost Foundation",
|
|
"license": "MIT",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"dev": "echo \"Implement me!\"",
|
|
"test:unit": "NODE_ENV=testing c8 --all --reporter text --reporter cobertura -- mocha --reporter dot './test/**/*.test.js'",
|
|
"test": "yarn test:unit",
|
|
"lint:code": "eslint *.js lib/ --ext .js --cache",
|
|
"lint": "yarn lint:code && yarn lint:test",
|
|
"lint:test": "eslint -c test/.eslintrc.js test/ --ext .js --cache"
|
|
},
|
|
"files": [
|
|
"index.js",
|
|
"lib"
|
|
],
|
|
"devDependencies": {
|
|
"c8": "8.0.1",
|
|
"mocha": "10.2.0",
|
|
"rewire": "6.0.0",
|
|
"should": "13.2.3",
|
|
"sinon": "15.2.0"
|
|
},
|
|
"dependencies": {
|
|
"@tryghost/debug": "0.1.26",
|
|
"@tryghost/domain-events": "0.0.0",
|
|
"@tryghost/errors": "1.3.1",
|
|
"@tryghost/logging": "2.4.13",
|
|
"@tryghost/member-events": "0.0.0",
|
|
"leaky-bucket": "2.2.0",
|
|
"lodash": "4.17.21",
|
|
"stripe": "8.222.0"
|
|
}
|
|
}
|