This is an automated email from the ASF dual-hosted git repository.

mjsax pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/kafka.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 46b6147ab6f MINRO: fix stream-stream-join semantic example from 10s 
window to 15s (#17379)
46b6147ab6f is described below

commit 46b6147ab6f417a428e3f65ab73beceeb5afb35a
Author: tall15421542-lab <[email protected]>
AuthorDate: Tue Oct 8 01:17:12 2024 +0800

    MINRO: fix stream-stream-join semantic example from 10s window to 15s 
(#17379)
    
    Reviewers: Matthias J. Sax <[email protected]>
---
 docs/streams/developer-guide/dsl-api.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/streams/developer-guide/dsl-api.html 
b/docs/streams/developer-guide/dsl-api.html
index c5c1797490a..32822c27094 100644
--- a/docs/streams/developer-guide/dsl-api.html
+++ b/docs/streams/developer-guide/dsl-api.html
@@ -1692,7 +1692,7 @@ KStream&lt;String, String&gt; joined = 
left.outerJoin(right,
                         <p><strong>Semantics of stream-stream joins:</strong>
                             The semantics of the various stream-stream join 
variants are explained below.
                             To improve the readability of the table, assume 
that (1) all records have the same key (and thus the key in the table is 
omitted), and (2) all records are processed in timestamp order.
-                            We assume a join window size of 10 seconds with a 
grace period of 5 seconds.</p>
+                            We assume a join window size of 15 seconds with a 
grace period of 5 seconds.</p>
                         <p><b>Note:</b> If you use the old and now deprecated 
API to specify the grace period, i.e., <code class="docutils literal"><span 
class="pre">JoinWindows.of(...).grace(...)</span></code>,
                             left/outer join results are emitted eagerly, and 
the observed result might differ from the result shown below.</p>
                         <p>The columns INNER JOIN, LEFT JOIN, and OUTER JOIN 
denote what is passed as arguments to the user-supplied

Reply via email to