File tree Expand file tree Collapse file tree 3 files changed +11
-7
lines changed Expand file tree Collapse file tree 3 files changed +11
-7
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,10 @@ 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 2 vCPUs and 4Gb of memory.
13+
1014## [ 1.73.0] - 2025-01-22
1115
1216### Changed
Original file line number Diff line number Diff line change @@ -16,8 +16,7 @@ const SIX_SECONDS_MS = 6 * 1000
1616const NINE_SECONDS_MS = 9 * 1000
1717
1818// Segments are small and immutable.
19- const MAX_SEGMENT_CACHE = 10000
20- const segmentCache = new LRUCache < string , Cached > ( { max : MAX_SEGMENT_CACHE } )
19+ const segmentCache = new LRUCache < string , Cached > ( { max : 1000 } )
2120const searchCache = new LRUCache < string , Cached > ( { max : 3000 } )
2221const messagesCache = new LRUCache < string , Cached > ( { max : 3000 } )
2322const vbaseCache = new LRUCache < string , Cached > ( { max : 3000 } )
@@ -27,6 +26,7 @@ metrics.trackCache('segment', segmentCache)
2726metrics . trackCache ( 'search' , searchCache )
2827metrics . trackCache ( 'messages' , messagesCache )
2928metrics . trackCache ( 'vbase' , vbaseCache )
29+ metrics . trackCache ( 'apps' , appsCache )
3030
3131export default new Service < Clients , RecorderState , CustomContext > ( {
3232 clients : {
Original file line number Diff line number Diff line change 11{
22 "stack" : " nodejs" ,
3- "memory" : 2048 ,
3+ "memory" : 4096 ,
44 "cpu" : {
55 "type" : " shared" ,
6- "value" : 80 ,
7- "scalingPercentage" : 95
6+ "value" : 200 ,
7+ "scalingPercentage" : 80
88 },
9- "ttl" : 30 ,
9+ "ttl" : 60 ,
1010 "timeout" : 12 ,
11- "minReplicas" : 30 ,
11+ "minReplicas" : 10 ,
1212 "maxReplicas" : 250 ,
1313 "workers" : 2 ,
1414 "routes" : {
You can’t perform that action at this time.
0 commit comments