Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejava
titleGrouped.java
public class Grouped<K, V> {
 	protected final Serde<K> keySerde;
 	protected final Serde<V> valueSerde;
 	protected final String name;
	protected final Integer numPartitions; // new

	public static <K, V> Grouped<K, V> with(final String name,
    	                                    final Serde<K> keySerde,
        	                                final Serde<V> valueSerde,
											final Integer numPartitions);
}

 

Proposed Changes

 When configured with topic name and partitionWhen configured number of partitions KStream application will first issue the topic lookup request and check whether the target topic is already up and running. If the target topic already exists, KStream application will log the error for topic creation failure, and still continue the initialization.

For grouping operation,   repartition repartition topic gets a hint on how many partitions the new topic it should be created with. If repartition topic is not created yet, create one with specified numPartitions, ; otherwise use the upstream topic partition size . If repartition logic is created, we shall issue a request to request to change as the new topic number of partitions.


One open question is whether we should prevent destructive operation such as changing the repartition topic size if current topic numPartitions != configured numPartitions. Note that , since there could be potential data loss, so one open question is whether we should prevent destructive operation like this.

Backward Compatibility Compatibility

This is a pure KStream library change that shouldn't affect previous setup applications. 

Rejected Alternatives

N/A