File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Expand file tree Collapse file tree 3 files changed +9
-3
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+ - Set minimum replicas to 5.
13+ - Increased search cache size.
14+ - Reduced apps cache size.
15+
1016## [ 1.74.0] - 2025-01-29
1117
1218### Changed
Original file line number Diff line number Diff line change @@ -17,10 +17,10 @@ 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 : 3000 } )
20+ const searchCache = new LRUCache < string , Cached > ( { max : 6000 } )
2121const messagesCache = new LRUCache < string , Cached > ( { max : 3000 } )
2222const vbaseCache = new LRUCache < string , Cached > ( { max : 3000 } )
23- const appsCache = new LRUCache < string , Cached > ( { max : 3000 } )
23+ const appsCache = new LRUCache < string , Cached > ( { max : 1500 } )
2424
2525metrics . trackCache ( 'segment' , segmentCache )
2626metrics . trackCache ( 'search' , searchCache )
Original file line number Diff line number Diff line change 88 },
99 "ttl" : 60 ,
1010 "timeout" : 12 ,
11- "minReplicas" : 10 ,
11+ "minReplicas" : 5 ,
1212 "maxReplicas" : 250 ,
1313 "workers" : 2 ,
1414 "routes" : {
You can’t perform that action at this time.
0 commit comments