Remove clustering from streaming API (#24655)

This commit is contained in:
Emelia Smith 2023-04-26 11:37:51 +02:00 committed by GitHub
parent 36631e40cc
commit 301e03eb8c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 53 additions and 101 deletions

View File

@ -8,10 +8,10 @@ User=mastodon
WorkingDirectory=/home/mastodon/live WorkingDirectory=/home/mastodon/live
Environment="NODE_ENV=production" Environment="NODE_ENV=production"
Environment="PORT=4000" Environment="PORT=4000"
Environment="STREAMING_CLUSTER_NUM=1"
ExecStart=/usr/bin/node ./streaming ExecStart=/usr/bin/node ./streaming
TimeoutSec=15 TimeoutSec=15
Restart=always Restart=always
LimitNOFILE=65536
# Proc filesystem # Proc filesystem
ProcSubset=pid ProcSubset=pid
ProtectProc=invisible ProtectProc=invisible

View File

@ -122,7 +122,6 @@
"substring-trie": "^1.0.2", "substring-trie": "^1.0.2",
"terser-webpack-plugin": "^4.2.3", "terser-webpack-plugin": "^4.2.3",
"tesseract.js": "^2.1.1", "tesseract.js": "^2.1.1",
"throng": "^4.0.0",
"tiny-queue": "^0.2.1", "tiny-queue": "^0.2.1",
"twitter-text": "3.1.0", "twitter-text": "3.1.0",
"uuid": "^8.3.1", "uuid": "^8.3.1",
@ -175,7 +174,6 @@
"@types/react-toggle": "^4.0.3", "@types/react-toggle": "^4.0.3",
"@types/redux-immutable": "^4.0.3", "@types/redux-immutable": "^4.0.3",
"@types/requestidlecallback": "^0.3.5", "@types/requestidlecallback": "^0.3.5",
"@types/throng": "^4.0.2",
"@types/uuid": "^8.3.4", "@types/uuid": "^8.3.4",
"@types/webpack": "^4.41.33", "@types/webpack": "^4.41.33",
"@types/yargs": "^17.0.22", "@types/yargs": "^17.0.22",

View File

@ -1,7 +1,5 @@
// @ts-check // @ts-check
const os = require('os');
const throng = require('throng');
const dotenv = require('dotenv'); const dotenv = require('dotenv');
const express = require('express'); const express = require('express');
const http = require('http'); const http = require('http');
@ -15,10 +13,10 @@ const fs = require('fs');
const WebSocket = require('ws'); const WebSocket = require('ws');
const { JSDOM } = require('jsdom'); const { JSDOM } = require('jsdom');
const env = process.env.NODE_ENV || 'development'; const environment = process.env.NODE_ENV || 'development';
dotenv.config({ dotenv.config({
path: env === 'production' ? '.env.production' : '.env', path: environment === 'production' ? '.env.production' : '.env',
}); });
log.level = process.env.LOG_LEVEL || 'verbose'; log.level = process.env.LOG_LEVEL || 'verbose';
@ -52,8 +50,6 @@ const redisUrlToClient = async (defaultConfig, redisUrl) => {
return client; return client;
}; };
const numWorkers = +process.env.STREAMING_CLUSTER_NUM || (env === 'development' ? 1 : Math.max(os.cpus().length - 1, 1));
/** /**
* @param {string} json * @param {string} json
* @param {any} req * @param {any} req
@ -72,45 +68,38 @@ const parseJSON = (json, req) => {
} }
}; };
const startMaster = () => {
if (!process.env.SOCKET && process.env.PORT && isNaN(+process.env.PORT)) {
log.warn('UNIX domain socket is now supported by using SOCKET. Please migrate from PORT hack.');
}
log.warn(`Starting streaming API server master with ${numWorkers} workers`);
};
/** /**
* @return {Object.<string, any>} * @param {Object.<string, any>} env the `process.env` value to read configuration from
* @return {Object.<string, any>} the configuration for the PostgreSQL connection
*/ */
const pgConfigFromEnv = () => { const pgConfigFromEnv = (env) => {
const pgConfigs = { const pgConfigs = {
development: { development: {
user: process.env.DB_USER || pg.defaults.user, user: env.DB_USER || pg.defaults.user,
password: process.env.DB_PASS || pg.defaults.password, password: env.DB_PASS || pg.defaults.password,
database: process.env.DB_NAME || 'mastodon_development', database: env.DB_NAME || 'mastodon_development',
host: process.env.DB_HOST || pg.defaults.host, host: env.DB_HOST || pg.defaults.host,
port: process.env.DB_PORT || pg.defaults.port, port: env.DB_PORT || pg.defaults.port,
}, },
production: { production: {
user: process.env.DB_USER || 'mastodon', user: env.DB_USER || 'mastodon',
password: process.env.DB_PASS || '', password: env.DB_PASS || '',
database: process.env.DB_NAME || 'mastodon_production', database: env.DB_NAME || 'mastodon_production',
host: process.env.DB_HOST || 'localhost', host: env.DB_HOST || 'localhost',
port: process.env.DB_PORT || 5432, port: env.DB_PORT || 5432,
}, },
}; };
let baseConfig; let baseConfig;
if (process.env.DATABASE_URL) { if (env.DATABASE_URL) {
baseConfig = dbUrlToConfig(process.env.DATABASE_URL); baseConfig = dbUrlToConfig(env.DATABASE_URL);
} else { } else {
baseConfig = pgConfigs[env]; baseConfig = pgConfigs[environment];
if (process.env.DB_SSLMODE) { if (env.DB_SSLMODE) {
switch(process.env.DB_SSLMODE) { switch(env.DB_SSLMODE) {
case 'disable': case 'disable':
case '': case '':
baseConfig.ssl = false; baseConfig.ssl = false;
@ -127,30 +116,26 @@ const pgConfigFromEnv = () => {
return { return {
...baseConfig, ...baseConfig,
max: process.env.DB_POOL || 10, max: env.DB_POOL || 10,
connectionTimeoutMillis: 15000, connectionTimeoutMillis: 15000,
application_name: '', application_name: '',
}; };
}; };
const startWorker = async (workerId) => { /**
log.warn(`Starting worker ${workerId}`); * @param {Object.<string, any>} env the `process.env` value to read configuration from
* @return {Object.<string, any>} configuration for the Redis connection
const app = express(); */
const redisConfigFromEnv = (env) => {
app.set('trust proxy', process.env.TRUSTED_PROXY_IP ? process.env.TRUSTED_PROXY_IP.split(/(?:\s*,\s*|\s+)/) : 'loopback,uniquelocal'); const redisNamespace = env.REDIS_NAMESPACE || null;
const pgPool = new pg.Pool(pgConfigFromEnv());
const server = http.createServer(app);
const redisNamespace = process.env.REDIS_NAMESPACE || null;
const redisParams = { const redisParams = {
socket: { socket: {
host: process.env.REDIS_HOST || '127.0.0.1', host: env.REDIS_HOST || '127.0.0.1',
port: process.env.REDIS_PORT || 6379, port: env.REDIS_PORT || 6379,
}, },
database: process.env.REDIS_DB || 0, database: env.REDIS_DB || 0,
password: process.env.REDIS_PASSWORD || undefined, password: env.REDIS_PASSWORD || undefined,
}; };
if (redisNamespace) { if (redisNamespace) {
@ -159,13 +144,30 @@ const startWorker = async (workerId) => {
const redisPrefix = redisNamespace ? `${redisNamespace}:` : ''; const redisPrefix = redisNamespace ? `${redisNamespace}:` : '';
return {
redisParams,
redisPrefix,
redisUrl: env.REDIS_URL,
};
};
const startServer = async () => {
const app = express();
app.set('trust proxy', process.env.TRUSTED_PROXY_IP ? process.env.TRUSTED_PROXY_IP.split(/(?:\s*,\s*|\s+)/) : 'loopback,uniquelocal');
const pgPool = new pg.Pool(pgConfigFromEnv(process.env));
const server = http.createServer(app);
const { redisParams, redisUrl, redisPrefix } = redisConfigFromEnv(process.env);
/** /**
* @type {Object.<string, Array.<function(string): void>>} * @type {Object.<string, Array.<function(string): void>>}
*/ */
const subs = {}; const subs = {};
const redisSubscribeClient = await redisUrlToClient(redisParams, process.env.REDIS_URL); const redisSubscribeClient = await redisUrlToClient(redisParams, redisUrl);
const redisClient = await redisUrlToClient(redisParams, process.env.REDIS_URL); const redisClient = await redisUrlToClient(redisParams, redisUrl);
/** /**
* @param {string[]} channels * @param {string[]} channels
@ -1231,11 +1233,10 @@ const startWorker = async (workerId) => {
}, 30000); }, 30000);
attachServerWithConfig(server, address => { attachServerWithConfig(server, address => {
log.warn(`Worker ${workerId} now listening on ${address}`); log.warn(`Streaming API now listening on ${address}`);
}); });
const onExit = () => { const onExit = () => {
log.warn(`Worker ${workerId} exiting`);
server.close(); server.close();
process.exit(0); process.exit(0);
}; };
@ -1273,34 +1274,4 @@ const attachServerWithConfig = (server, onSuccess) => {
} }
}; };
/** startServer();
* @param {function(Error=): void} onSuccess
*/
const onPortAvailable = onSuccess => {
const testServer = http.createServer();
testServer.once('error', err => {
onSuccess(err);
});
testServer.once('listening', () => {
testServer.once('close', () => onSuccess());
testServer.close();
});
attachServerWithConfig(testServer);
};
onPortAvailable(err => {
if (err) {
log.error('Could not start server, the port or socket is in use');
return;
}
throng({
workers: numWorkers,
lifetime: Infinity,
start: startWorker,
master: startMaster,
});
});

View File

@ -2404,11 +2404,6 @@
dependencies: dependencies:
"@types/jest" "*" "@types/jest" "*"
"@types/throng@^4.0.2":
version "4.0.2"
resolved "https://registry.yarnpkg.com/@types/throng/-/throng-4.0.2.tgz#e352f5f86433e9dfbf3258414191852d25b2274f"
integrity sha512-7tgh3R6vwtjj01URmhWXFSkWnm4wDJjsqLm8WPwIWadYjfsKAFi0HqabMQCU2JJ4TbeSGkb51qv27bBPN5Bubw==
"@types/tough-cookie@*": "@types/tough-cookie@*":
version "4.0.2" version "4.0.2"
resolved "https://registry.yarnpkg.com/@types/tough-cookie/-/tough-cookie-4.0.2.tgz#6286b4c7228d58ab7866d19716f3696e03a09397" resolved "https://registry.yarnpkg.com/@types/tough-cookie/-/tough-cookie-4.0.2.tgz#6286b4c7228d58ab7866d19716f3696e03a09397"
@ -7656,11 +7651,6 @@ lodash.debounce@^4.0.8:
resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af"
integrity sha1-gteb/zCmfEAF/9XiUVMArZyk168= integrity sha1-gteb/zCmfEAF/9XiUVMArZyk168=
lodash.defaults@^4.0.1:
version "4.2.0"
resolved "https://registry.yarnpkg.com/lodash.defaults/-/lodash.defaults-4.2.0.tgz#d09178716ffea4dde9e5fb7b37f6f0802274580c"
integrity sha1-0JF4cW/+pN3p5ft7N/bwgCJ0WAw=
lodash.get@^4.0: lodash.get@^4.0:
version "4.4.2" version "4.4.2"
resolved "https://registry.yarnpkg.com/lodash.get/-/lodash.get-4.4.2.tgz#2d177f652fa31e939b4438d5341499dfa3825e99" resolved "https://registry.yarnpkg.com/lodash.get/-/lodash.get-4.4.2.tgz#2d177f652fa31e939b4438d5341499dfa3825e99"
@ -11141,13 +11131,6 @@ text-table@^0.2.0:
resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=
throng@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/throng/-/throng-4.0.0.tgz#983c6ba1993b58eae859998aa687ffe88df84c17"
integrity sha1-mDxroZk7WOroWZmKpof/6I34TBc=
dependencies:
lodash.defaults "^4.0.1"
through@^2.3.8: through@^2.3.8:
version "2.3.8" version "2.3.8"
resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"