@platformatic/composer 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 +3 -3
- package/schema.json +8 -5
package/config.d.ts
CHANGED
|
@@ -466,12 +466,13 @@ export interface PlatformaticComposerConfig {
|
|
|
466
466
|
verticalScaler?: {
|
|
467
467
|
enabled?: boolean;
|
|
468
468
|
maxTotalWorkers?: number;
|
|
469
|
+
maxTotalMemory?: number;
|
|
469
470
|
minWorkers?: number;
|
|
470
471
|
maxWorkers?: number;
|
|
471
472
|
scaleUpELU?: number;
|
|
472
473
|
scaleDownELU?: number;
|
|
473
|
-
minELUDiff?: number;
|
|
474
474
|
timeWindowSec?: number;
|
|
475
|
+
scaleDownTimeWindowSec?: number;
|
|
475
476
|
cooldownSec?: number;
|
|
476
477
|
scaleIntervalSec?: number;
|
|
477
478
|
gracePeriod?: number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platformatic/composer",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.11.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
"json-schema-to-typescript": "^15.0.0"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@platformatic/
|
|
27
|
-
"@platformatic/
|
|
26
|
+
"@platformatic/gateway": "3.11.0",
|
|
27
|
+
"@platformatic/foundation": "3.11.0"
|
|
28
28
|
},
|
|
29
29
|
"engines": {
|
|
30
30
|
"node": ">=22.19.0"
|
package/schema.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$id": "https://schemas.platformatic.dev/@platformatic/composer/3.
|
|
2
|
+
"$id": "https://schemas.platformatic.dev/@platformatic/composer/3.11.0.json",
|
|
3
3
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
4
|
"title": "Platformatic Composer Config",
|
|
5
5
|
"type": "object",
|
|
@@ -1879,6 +1879,10 @@
|
|
|
1879
1879
|
"type": "number",
|
|
1880
1880
|
"minimum": 1
|
|
1881
1881
|
},
|
|
1882
|
+
"maxTotalMemory": {
|
|
1883
|
+
"type": "number",
|
|
1884
|
+
"minimum": 0
|
|
1885
|
+
},
|
|
1882
1886
|
"minWorkers": {
|
|
1883
1887
|
"type": "number",
|
|
1884
1888
|
"minimum": 1
|
|
@@ -1897,12 +1901,11 @@
|
|
|
1897
1901
|
"minimum": 0,
|
|
1898
1902
|
"maximum": 1
|
|
1899
1903
|
},
|
|
1900
|
-
"
|
|
1904
|
+
"timeWindowSec": {
|
|
1901
1905
|
"type": "number",
|
|
1902
|
-
"minimum": 0
|
|
1903
|
-
"maximum": 1
|
|
1906
|
+
"minimum": 0
|
|
1904
1907
|
},
|
|
1905
|
-
"
|
|
1908
|
+
"scaleDownTimeWindowSec": {
|
|
1906
1909
|
"type": "number",
|
|
1907
1910
|
"minimum": 0
|
|
1908
1911
|
},
|