vvcephei commented on code in PR #12555:
URL: https://github.com/apache/kafka/pull/12555#discussion_r969070840


##########
streams/src/main/java/org/apache/kafka/streams/StreamsConfig.java:
##########
@@ -243,6 +244,26 @@ public class StreamsConfig extends AbstractConfig {
      */
     public static final String OPTIMIZE = "all";
 
+    /**
+     * Config value for parameter {@link #TOPOLOGY_OPTIMIZATION_CONFIG 
"topology.optimization"}
+     * for enabling the specific optimization that reuses source topic as 
changelog topic
+     * for KTables.
+     */
+    public static final String REUSE_KTABLE_SOURCE_TOPICS = 
"reuse.ktable.source.topics";
+
+    /**
+     * Config value for parameter {@link #TOPOLOGY_OPTIMIZATION_CONFIG 
"topology.optimization"}
+     * for enabling the specific optimization that merges duplicated 
repartition topics.
+     */
+    public static final String MERGE_REPARTITION_TOPICS = 
"merge.repartition.topics";
+
+    /**
+     * Config value for parameter {@link #TOPOLOGY_OPTIMIZATION_CONFIG 
"topology.optimization"}
+     * for enabling the optimization that optimizes inner stream-stream joins 
into self-joins when
+     * both arguments are the same stream.
+     */
+    public static final String SELF_JOIN = "self.join";

Review Comment:
   Just a reminder to update this to match the KIP.



-- 
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