File tree Expand file tree Collapse file tree 3 files changed +12
-6
lines changed Expand file tree Collapse file tree 3 files changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77
88## [ Unreleased]
99
10+ ### Changed
11+
12+ - Pod scaling configs to use 0.8 vCPUs and 2Gb of memory.
13+ - Increase minimum to 30.
14+ - Reduce search-cache to 3000 items.
15+
1016## [ 1.75.0] - 2025-02-04
1117
1218### Changed
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ const NINE_SECONDS_MS = 9 * 1000
1717
1818// Segments are small and immutable.
1919const segmentCache = new LRUCache < string , Cached > ( { max : 1000 } )
20- const searchCache = new LRUCache < string , Cached > ( { max : 6000 } )
20+ const searchCache = new LRUCache < string , Cached > ( { max : 3000 } )
2121const messagesCache = new LRUCache < string , Cached > ( { max : 3000 } )
2222const vbaseCache = new LRUCache < string , Cached > ( { max : 3000 } )
2323const appsCache = new LRUCache < string , Cached > ( { max : 1500 } )
Original file line number Diff line number Diff line change 11{
22 "stack" : " nodejs" ,
3- "memory" : 4096 ,
3+ "memory" : 2048 ,
44 "cpu" : {
55 "type" : " shared" ,
6- "value" : 200 ,
7- "scalingPercentage" : 80
6+ "value" : 80 ,
7+ "scalingPercentage" : 95
88 },
9- "ttl" : 60 ,
9+ "ttl" : 30 ,
1010 "timeout" : 12 ,
11- "minReplicas" : 5 ,
11+ "minReplicas" : 30 ,
1212 "maxReplicas" : 250 ,
1313 "workers" : 2 ,
1414 "routes" : {
You can’t perform that action at this time.
0 commit comments