@swydo/byol 3.0.306 → 3.0.308
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +19 -0
- package/package.json +3 -3
- package/src/handlerWorkerPool.js +2 -0
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,25 @@
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
5
5
|
|
6
|
+
## 3.0.308 (2024-11-26)
|
7
|
+
|
8
|
+
|
9
|
+
### Bug Fixes
|
10
|
+
|
11
|
+
* **byol:** update worker pool config to reflect concurrent lambda usage ([e1e6253](https://github.com/Swydo/byol/commit/e1e62535e682ea0e0af7ad7b4659a1699b71d480))
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
## 3.0.307 (2024-11-12)
|
18
|
+
|
19
|
+
**Note:** Version bump only for package @swydo/byol
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
|
24
|
+
|
6
25
|
## 3.0.306 (2024-11-06)
|
7
26
|
|
8
27
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@swydo/byol",
|
3
|
-
"version": "3.0.
|
3
|
+
"version": "3.0.308",
|
4
4
|
"description": "Bring Your Own Lambda",
|
5
5
|
"license": "MIT",
|
6
6
|
"engines": {
|
@@ -22,10 +22,10 @@
|
|
22
22
|
"yaml-cfn": "^0.3.1"
|
23
23
|
},
|
24
24
|
"devDependencies": {
|
25
|
-
"aws-xray-sdk-core": "3.10.
|
25
|
+
"aws-xray-sdk-core": "3.10.2"
|
26
26
|
},
|
27
27
|
"peerDependencies": {
|
28
28
|
"aws-xray-sdk-core": "^3.0.0"
|
29
29
|
},
|
30
|
-
"gitHead": "
|
30
|
+
"gitHead": "e1e62535e682ea0e0af7ad7b4659a1699b71d480"
|
31
31
|
}
|
package/src/handlerWorkerPool.js
CHANGED
@@ -44,6 +44,8 @@ async function getWorkerPool(indexPath, handlerName, environment, requestId, poo
|
|
44
44
|
if (!workerPoolMap.has(poolKey)) {
|
45
45
|
const pool = workerpool.pool(path.join(__dirname, 'assets', 'callHandlerProcess.js'), {
|
46
46
|
workerType: 'process',
|
47
|
+
maxWorkers: 250,
|
48
|
+
maxQueueSize: 1,
|
47
49
|
...poolOptions,
|
48
50
|
});
|
49
51
|
|