You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/upgrade.html
+3
Original file line number
Diff line number
Diff line change
@@ -349,6 +349,9 @@ <h5><a id="upgrade_400_notable" href="#upgrade_400_notable">Notable changes in 4
349
349
timestamp of more than 1 hour in the future will be rejected when message.timestamp.type=CreateTime is set.
350
350
See <ahref="https://cwiki.apache.org/confluence/display/KAFKA/KIP-1030%3A+Change+constraints+and+default+values+for+various+configurations">KIP-1030</a>
351
351
</li>
352
+
<li>
353
+
The <code>window.size.ms</code> and <code>window.inner.serde.class</code> in stream config are deprecated.
Copy file name to clipboardExpand all lines: streams/integration-tests/src/test/java/org/apache/kafka/streams/integration/KStreamAggregationIntegrationTest.java
Copy file name to clipboardExpand all lines: streams/integration-tests/src/test/java/org/apache/kafka/streams/integration/SelfJoinUpgradeIntegrationTest.java
Copy file name to clipboardExpand all lines: streams/integration-tests/src/test/java/org/apache/kafka/streams/integration/SlidingWindowedKStreamIntegrationTest.java
Copy file name to clipboardExpand all lines: streams/integration-tests/src/test/java/org/apache/kafka/streams/integration/TimeWindowedKStreamIntegrationTest.java
privatestaticfinalStringWINDOWED_INNER_CLASS_SERDE_DOC = " Default serializer / deserializer for the inner class of a windowed record. Must implement the " +
825
838
"<code>org.apache.kafka.common.serialization.Serde</code> interface. Note that setting this config in KafkaStreams application would result " +
826
839
"in an error as it is meant to be used only from Plain consumer client.";
827
840
828
-
/** {@code window.size.ms} */
841
+
/**
842
+
* {@code window.size.ms}
843
+
*
844
+
* @deprecated since 4.0.0.
845
+
* Use {@link TimeWindowedDeserializer#WINDOW_SIZE_MS_CONFIG} for {@link TimeWindowedDeserializer}.
0 commit comments