@platformatic/gateway 3.10.0 → 3.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/config.d.ts +2 -1
- package/package.json +7 -7
- package/schema.json +8 -5
package/config.d.ts
CHANGED
|
@@ -676,12 +676,13 @@ export interface PlatformaticGatewayConfig {
|
|
|
676
676
|
verticalScaler?: {
|
|
677
677
|
enabled?: boolean;
|
|
678
678
|
maxTotalWorkers?: number;
|
|
679
|
+
maxTotalMemory?: number;
|
|
679
680
|
minWorkers?: number;
|
|
680
681
|
maxWorkers?: number;
|
|
681
682
|
scaleUpELU?: number;
|
|
682
683
|
scaleDownELU?: number;
|
|
683
|
-
minELUDiff?: number;
|
|
684
684
|
timeWindowSec?: number;
|
|
685
|
+
scaleDownTimeWindowSec?: number;
|
|
685
686
|
cooldownSec?: number;
|
|
686
687
|
scaleIntervalSec?: number;
|
|
687
688
|
gracePeriod?: number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platformatic/gateway",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.11.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"typescript": "^5.5.4",
|
|
34
34
|
"why-is-node-running": "2",
|
|
35
35
|
"ws": "^8.16.0",
|
|
36
|
-
"@platformatic/db": "3.
|
|
36
|
+
"@platformatic/db": "3.11.0"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@fastify/error": "^4.0.0",
|
|
@@ -64,11 +64,11 @@
|
|
|
64
64
|
"rfdc": "^1.3.1",
|
|
65
65
|
"semgrator": "^0.3.0",
|
|
66
66
|
"undici": "^7.0.0",
|
|
67
|
-
"@platformatic/basic": "3.
|
|
68
|
-
"@platformatic/foundation": "^3.
|
|
69
|
-
"@platformatic/scalar-theme": "3.
|
|
70
|
-
"@platformatic/
|
|
71
|
-
"@platformatic/
|
|
67
|
+
"@platformatic/basic": "3.11.0",
|
|
68
|
+
"@platformatic/foundation": "^3.11.0",
|
|
69
|
+
"@platformatic/scalar-theme": "3.11.0",
|
|
70
|
+
"@platformatic/telemetry": "3.11.0",
|
|
71
|
+
"@platformatic/service": "3.11.0"
|
|
72
72
|
},
|
|
73
73
|
"engines": {
|
|
74
74
|
"node": ">=22.19.0"
|
package/schema.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$id": "https://schemas.platformatic.dev/@platformatic/gateway/3.
|
|
2
|
+
"$id": "https://schemas.platformatic.dev/@platformatic/gateway/3.11.0.json",
|
|
3
3
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
4
|
"title": "Platformatic Gateway Config",
|
|
5
5
|
"type": "object",
|
|
@@ -2467,6 +2467,10 @@
|
|
|
2467
2467
|
"type": "number",
|
|
2468
2468
|
"minimum": 1
|
|
2469
2469
|
},
|
|
2470
|
+
"maxTotalMemory": {
|
|
2471
|
+
"type": "number",
|
|
2472
|
+
"minimum": 0
|
|
2473
|
+
},
|
|
2470
2474
|
"minWorkers": {
|
|
2471
2475
|
"type": "number",
|
|
2472
2476
|
"minimum": 1
|
|
@@ -2485,12 +2489,11 @@
|
|
|
2485
2489
|
"minimum": 0,
|
|
2486
2490
|
"maximum": 1
|
|
2487
2491
|
},
|
|
2488
|
-
"
|
|
2492
|
+
"timeWindowSec": {
|
|
2489
2493
|
"type": "number",
|
|
2490
|
-
"minimum": 0
|
|
2491
|
-
"maximum": 1
|
|
2494
|
+
"minimum": 0
|
|
2492
2495
|
},
|
|
2493
|
-
"
|
|
2496
|
+
"scaleDownTimeWindowSec": {
|
|
2494
2497
|
"type": "number",
|
|
2495
2498
|
"minimum": 0
|
|
2496
2499
|
},
|