-
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
Adding record reader config/context param to record transformer #12520
Conversation
0242262
to
e82c597
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #12520 +/- ##
============================================
- Coverage 61.75% 61.70% -0.05%
Complexity 207 207
============================================
Files 2436 2450 +14
Lines 133233 133552 +319
Branches 20636 20692 +56
============================================
+ Hits 82274 82406 +132
- Misses 44911 45055 +144
- Partials 6048 6091 +43
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
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.
LGTM
...-local/src/main/java/org/apache/pinot/segment/local/recordtransformer/RecordTransformer.java
Outdated
Show resolved
Hide resolved
...-local/src/main/java/org/apache/pinot/segment/local/recordtransformer/RecordTransformer.java
Outdated
Show resolved
Hide resolved
b291dc9
to
f756923
Compare
…mer (apache#12520)" This reverts commit f0fcbd8.
Whats in the PR:
Adding Record reader config/context to transform api, for transformer to use it during transformation of record.
Why its needed:
Custom transformers need to be perform transformations based on record reader configs (eg: file path). This change is to enable such transformations.