mjsax commented on code in PR #18722:
URL: https://github.com/apache/kafka/pull/18722#discussion_r1934454572


##########
streams/src/main/java/org/apache/kafka/streams/kstream/internals/KStreamImpl.java:
##########
@@ -1103,26 +1108,28 @@ public <KG, VG, VR> KStream<K, VR> leftJoin(final 
GlobalKTable<KG, VG> globalTab
         return globalTableJoin(globalTable, keySelector, joiner, true, named);
     }
 
-    private <KG, VG, VR> KStream<K, VR> globalTableJoin(final GlobalKTable<KG, 
VG> globalTable,
-                                                        final KeyValueMapper<? 
super K, ? super V, ? extends KG> keySelector,
-                                                        final 
ValueJoinerWithKey<? super K, ? super V, ? super VG, ? extends VR> joiner,
-                                                        final boolean leftJoin,
-                                                        final Named named) {
+    private <KGlobalTable, VGlobalTable, VOut> KStream<K, VOut> 
globalTableJoin(

Review Comment:
   Updating to `GlobalKey` and `GlobalValue` for now. Happy to pick something 
else if you have a good idea.



##########
streams/src/main/java/org/apache/kafka/streams/kstream/internals/KStreamImpl.java:
##########
@@ -906,13 +910,14 @@ private KStreamImpl<K, V> repartitionForJoin(final String 
repartitionName,
             builder);
     }
 
-    static <K1, V1, RN extends BaseRepartitionNode<K1, V1>> String 
createRepartitionedSource(final InternalStreamsBuilder builder,
-                                                                               
              final Serde<K1> keySerde,
-                                                                               
              final Serde<V1> valueSerde,
-                                                                               
              final String repartitionTopicNamePrefix,
-                                                                               
              final StreamPartitioner<K1, V1> streamPartitioner,
-                                                                               
              final BaseRepartitionNodeBuilder<K1, V1, RN> 
baseRepartitionNodeBuilder) {
-
+    static <KStream, VStream, RepartitionNode extends 
BaseRepartitionNode<KStream, VStream>> String createRepartitionedSource(
+        final InternalStreamsBuilder builder,

Review Comment:
   Updating to `Key` and `Value` for now. Happy to pick something else if you 
have a good idea.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: jira-unsubscr...@kafka.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to