mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
526a5df157
Summary: - Implements MemoryPool for waiting on memory reservations. - Uses MemoryPool to control memory used for stringifying JSON responses in Client.ts - Limits total size of _missedMessages that may be queued for a particular client. - Upgrades ws library, which may reduce memory usage, and allows pausing the websocket for testing. - The upgrade changed subtle behavior corners, requiring various fixes to code and tests. - dos.ts: - Includes Paul's fixes and updates to the dos.ts script for manual stress-testing. - Logging tweaks, to avoid excessive dumps on uncaughtError, and include timestamps. Test Plan: - Includes a test that measures heap size, and fails without memory management. - Includes a unittest for MemoryPool - Some cleanup and additions to TestServer helper; in particular adds makeUserApi() helper used in multiple tests. - Some fixes related to ws upgrade. Reviewers: paulfitz Reviewed By: paulfitz Differential Revision: https://phab.getgrist.com/D3974
32 lines
1.5 KiB
TypeScript
32 lines
1.5 KiB
TypeScript
/**
|
|
* This module was automatically generated by `ts-interface-builder`
|
|
*/
|
|
import * as t from "ts-interface-checker";
|
|
// tslint:disable:object-literal-key-quotes
|
|
|
|
export const ITestingHooks = t.iface([], {
|
|
"getOwnPort": t.func("number"),
|
|
"getPort": t.func("number"),
|
|
"setLoginSessionProfile": t.func("void", t.param("gristSidCookie", "string"), t.param("profile", t.union("UserProfile", "null")), t.param("org", "string", true)),
|
|
"setServerVersion": t.func("void", t.param("version", t.union("string", "null"))),
|
|
"disconnectClients": t.func("void"),
|
|
"commShutdown": t.func("void"),
|
|
"commRestart": t.func("void"),
|
|
"commSetClientPersistence": t.func("number", t.param("ttlMs", "number")),
|
|
"commSetClientJsonMemoryLimit": t.func("number", t.param("newTotalSize", "number")),
|
|
"closeDocs": t.func("void"),
|
|
"setDocWorkerActivation": t.func("void", t.param("workerId", "string"), t.param("active", t.union(t.lit('active'), t.lit('inactive'), t.lit('crash')))),
|
|
"flushAuthorizerCache": t.func("void"),
|
|
"flushDocs": t.func("void"),
|
|
"getDocClientCounts": t.func(t.array(t.tuple("string", "number"))),
|
|
"setActiveDocTimeout": t.func("number", t.param("seconds", "number")),
|
|
"setDiscourseConnectVar": t.func(t.union("string", "null"), t.param("varName", "string"), t.param("value", t.union("string", "null"))),
|
|
"setWidgetRepositoryUrl": t.func("void", t.param("url", "string")),
|
|
"getMemoryUsage": t.func("object"),
|
|
});
|
|
|
|
const exportedTypeSuite: t.ITypeSuite = {
|
|
ITestingHooks,
|
|
};
|
|
export default exportedTypeSuite;
|