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

bbejeck 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 05fd35aa1eb MINOR: Fix typo in timestamp explanation in dsl-api.html 
(#20879)
05fd35aa1eb is described below

commit 05fd35aa1eb6dc0b9646661628aaa95f1ba57d26
Author: farzan ghalami <[email protected]>
AuthorDate: Thu Nov 13 18:17:10 2025 +0100

    MINOR: Fix typo in timestamp explanation in dsl-api.html (#20879)
    
    this explains the row with timestamp=60 and **timestampe=80**  -> this
    explains the row with timestamp=60 and **timestamp=80**
    
    Reviewers: Bill Bejeck<[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 2fa2c4ad62a..2c7c959a637 100644
--- a/docs/streams/developer-guide/dsl-api.html
+++ b/docs/streams/developer-guide/dsl-api.html
@@ -1637,7 +1637,7 @@ KStream&lt;String, String&gt; joined = 
left.leftJoin(right,
                                                 </div></blockquote>
                                         </li>
                                         <li><p class="first">For each input 
record on the left side that does not have any match on the right side, the 
<code class="docutils literal"><span class="pre">ValueJoiner</span></code> will 
be called with <code class="docutils literal"><span 
class="pre">ValueJoiner#apply(leftRecord.value,</span> <span 
class="pre">null)</span></code>;
-                                            this explains the row with 
timestamp=60 and timestampe=80 in the table below, which lists <code 
class="docutils literal"><span class="pre">[E,</span> <span 
class="pre">null]</span></code> and <code class="docutils literal"><span 
class="pre">[F,</span> <span class="pre">null]</span></code>in the LEFT JOIN 
column.
+                                            this explains the row with 
timestamp=60 and timestamp=80 in the table below, which lists <code 
class="docutils literal"><span class="pre">[E,</span> <span 
class="pre">null]</span></code> and <code class="docutils literal"><span 
class="pre">[F,</span> <span class="pre">null]</span></code>in the LEFT JOIN 
column.
                                             Note that these left results are 
emitted after the specified grace period passed. <strong>Caution:</strong> 
using the deprecated <code class="docutils literal"><span 
class="pre">JoinWindows.of(...).grace(...)</span></code> API might result in 
eagerly emitted spurious left results.</p>
                                         </li>
                                     </ul>

Reply via email to