-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merge RecordEnricher into RecordTransformer #13704
Merge RecordEnricher into RecordTransformer #13704
Conversation
ce7e9d0
to
bffd235
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #13704 +/- ##
============================================
+ Coverage 61.75% 62.02% +0.26%
+ Complexity 207 198 -9
============================================
Files 2436 2553 +117
Lines 133233 140605 +7372
Branches 20636 21874 +1238
============================================
+ Hits 82274 87205 +4931
- Misses 44911 46773 +1862
- Partials 6048 6627 +579
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
007c783
to
2aca00f
Compare
2aca00f
to
ccd307b
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for taking up this task!
*/ | ||
void enrich(GenericRow record); | ||
} | ||
//public interface RecordEnricher { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please cleanup the commented lines, and files that are no longer needed. Same for other places
@@ -129,7 +129,7 @@ public void build(@Nullable SegmentVersion segmentVersion, ServerMetrics serverM | |||
recordReader.init(_realtimeSegmentImpl, sortedDocIds); | |||
RealtimeSegmentSegmentCreationDataSource dataSource = | |||
new RealtimeSegmentSegmentCreationDataSource(_realtimeSegmentImpl, recordReader); | |||
driver.init(genConfig, dataSource, RecordEnricherPipeline.getPassThroughPipeline(), | |||
driver.init(genConfig, dataSource, RecordTransformerPipeline.getPassThroughPipeline(), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We want to integrate the current RecordEnricher
as one type of RecordTransformer
. With that, we shouldn't need a separate pipeline other than TransformPipeline
Hey @aadilkhalifa, wanted to check if you would be taking these changes to completion? |
Merge #14601 instead |
PR for #13049