-
Notifications
You must be signed in to change notification settings - Fork 3
Add lineage processors #380
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
base: master
Are you sure you want to change the base?
Conversation
|
*/ | ||
@RequiredArgsConstructor(access = AccessLevel.PACKAGE) | ||
public class LineageHeaders { | ||
private static final String LINEAGE_PREFIX = "lineage."; |
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.
I think we should use a namespace that contains streams-bootstrap or make the header names configurable
<VR, KO, VO> KTableX<K, VR> leftJoin(KTable<KO, VO> other, BiFunction<K, V, KO> foreignKeyExtractor, | ||
ValueJoiner<V, VO, VR> joiner, TableJoined<K, KO> tableJoined, | ||
MaterializedX<K, VR, KeyValueStore<Bytes, byte[]>> materialized); | ||
|
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.
What is the use case for adding lineage to a KTable?
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.
You can create a table directly via the StreamsBuilder. And because there is also the transformer API available, I added it for completeness
No description provided.