@certik/skynet 0.16.7 → 0.16.8

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +1 -5
  2. package/app.js +10 -10
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,10 +1,6 @@
1
1
  # Changelog
2
2
 
3
- ## 0.16.7
4
-
5
- - Updated: use larger cpu/mem for service monitor process
6
-
7
- ## 0.16.6
3
+ ## 0.16.6/0.16.7/0.16.8
8
4
 
9
5
  - Updated: use larger cpu/mem for service monitor process
10
6
 
package/app.js CHANGED
@@ -217,8 +217,8 @@ function indexer({ name, selector, build, check, env = {}, region = "us-east-1"
217
217
  bin: `${bin} check`,
218
218
  schedule: check.schedule,
219
219
  killTimeout: check.killTimeout,
220
- cpu: check.cpu || 100,
221
- mem: check.mem || 100,
220
+ cpu: check.cpu || 600,
221
+ mem: check.mem || 600,
222
222
  },
223
223
  });
224
224
 
@@ -337,8 +337,8 @@ function modeIndexer({ name, selector, state, build, validate, check, env = {},
337
337
  bin: `${bin} check`,
338
338
  schedule: check.schedule,
339
339
  killTimeout: check.killTimeout,
340
- cpu: check.cpu || 100,
341
- mem: check.mem || 100,
340
+ cpu: check.cpu || 500,
341
+ mem: check.mem || 500,
342
342
  },
343
343
  });
344
344
 
@@ -449,8 +449,8 @@ function producer({ name, selector, produce, check, state, env = {}, region = "u
449
449
  bin: `${bin} check`,
450
450
  schedule: check.schedule,
451
451
  killTimeout: check.killTimeout,
452
- cpu: check.cpu || 100,
453
- mem: check.mem || 100,
452
+ cpu: check.cpu || 500,
453
+ mem: check.mem || 500,
454
454
  },
455
455
  });
456
456
 
@@ -549,8 +549,8 @@ function consumer({ name, selector, consume, check, env = {}, region = "us-east-
549
549
  bin: `${bin} check`,
550
550
  schedule: check.schedule,
551
551
  killTimeout: check.killTimeout,
552
- cpu: check.cpu || 100,
553
- mem: check.mem || 100,
552
+ cpu: check.cpu || 500,
553
+ mem: check.mem || 500,
554
554
  },
555
555
  });
556
556
 
@@ -709,8 +709,8 @@ function api({ name, routes, serve, beforeListen, env = {}, region = "us-east-1"
709
709
  bin: `${bin} check`,
710
710
  schedule: check.schedule,
711
711
  killTimeout: check.killTimeout,
712
- cpu: check.cpu || 100,
713
- mem: check.mem || 100,
712
+ cpu: check.cpu || 500,
713
+ mem: check.mem || 500,
714
714
  },
715
715
  });
716
716
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@certik/skynet",
3
- "version": "0.16.7",
3
+ "version": "0.16.8",
4
4
  "description": "Skynet Shared JS library",
5
5
  "type": "module",
6
6
  "main": "index.js",