Remove unused Factory and Inheritable interfaces from v1 storage#7755
Merged
yurishkuro merged 3 commits intomainfrom Dec 18, 2025
Merged
Remove unused Factory and Inheritable interfaces from v1 storage#7755yurishkuro merged 3 commits intomainfrom
yurishkuro merged 3 commits intomainfrom
Conversation
Co-authored-by: yurishkuro <3523016+yurishkuro@users.noreply.github.com>
Co-authored-by: yurishkuro <3523016+yurishkuro@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Remove unnecessary Factory interface from internal/storage/v1
Remove unused Factory and Inheritable interfaces from v1 storage
Dec 18, 2025
jaegertracingbot
approved these changes
Dec 18, 2025
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #7755 +/- ##
==========================================
+ Coverage 95.55% 95.58% +0.03%
==========================================
Files 307 307
Lines 15395 15392 -3
==========================================
+ Hits 14710 14713 +3
+ Misses 537 533 -4
+ Partials 148 146 -2
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
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.
The
Factory,BaseFactory, andInheritableinterfaces ininternal/storage/v1/factory.goare no longer used. All binaries have been refactored to use v2 storage, which wraps v1 concrete types directly without polymorphism.Changes
Removed interfaces:
Factory- extendedBaseFactorywithInitialize()BaseFactory- definedCreateSpanReader/Writer/DependencyReader()Inheritable- definedInheritSettingsFrom(other Factory)Updated implementations:
InheritSettingsFrom()method from cassandra factory (never called)InheritSettingsFrom()Retained interfaces (actively used):
SamplingStoreFactory,Purger,MetricStoreFactory,V1MetricStoreFactory,ArchiveCapableContext
v2 storage wrappers call v1 factory methods directly on concrete types:
No code accepts
storage.Factoryas a parameter or uses it for polymorphism.Original prompt
💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.