feat(logs): add generic eviction framework for pattern management#49217
Draft
Conversation
This was referenced Apr 10, 2026
Contributor
Author
This was referenced Apr 10, 2026
9562664 to
ad3c7b3
Compare
a46a9dd to
82ac7b1
Compare
82ac7b1 to
e4890f9
Compare
ad3c7b3 to
ff26d66
Compare
ff26d66 to
9957229
Compare
e4890f9 to
4f426f1
Compare
This was referenced Apr 15, 2026
This was referenced Apr 25, 2026
Draft
Draft
Draft
This was referenced Apr 29, 2026
Draft
Draft
Draft
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

What does this PR do?
Introduces a generic eviction framework (
pkg/logs/patterns/eviction/) that manages bounded-size collections with configurable eviction policies:score.go): Frequency × recency scoring with configurable decay, plus threshold-based eviction triggersEvictableinterface andEvictionConfigfor downstream consumers (clustering, tags) to plug intoMotivation
Pattern clustering and tag management both need bounded collections with LRU/LFU-style eviction. Rather than duplicating eviction logic, this PR extracts it into a reusable framework with well-tested scoring mechanics.
Describe how you validated your changes
go test ./pkg/logs/patterns/eviction/...How to Review this PR
types.go— theEvictableinterface andEvictionConfigeviction_manager.go— the core generic managerscore.go— the scoring algorithmAdditional Notes
This is a self-contained package with no external dependencies beyond the standard library. ~1,350 lines including tests.