pjfanning commented on code in PR #3023:
URL: https://github.com/apache/pekko/pull/3023#discussion_r3420109998
##########
remote/src/main/resources/reference.conf:
##########
@@ -1046,6 +1046,12 @@ pekko {
# compression of common strings in remoting messages, like actor
destinations, serializers etc
compression {
+ # Frequency sketch implementation used for heavy hitter detection.
+ # Options:
+ # - "count-min-sketch": Original CountMinSketch implementation
(legacy, ~128KB per connection)
+ # - "fast-frequency-sketch": FastFrequencySketch with TinyLFU
aging (default, ~4KB per connection)
+ frequency-sketch-implementation = "fast-frequency-sketch"
Review Comment:
could we add a unit test that sets frequency-sketch-implementation =
"count-min-sketch" ?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]