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

chia7712 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 61e15f78dc2 MINOR: Fix Streams DLQ config typo in upgrade guide 
(#21551)
61e15f78dc2 is described below

commit 61e15f78dc277a70880d0f40a90ae5a6b79fd82b
Author: Emanuele Rabino <[email protected]>
AuthorDate: Wed Feb 25 07:43:47 2026 +0100

    MINOR: Fix Streams DLQ config typo in upgrade guide (#21551)
    
    ### Problem
    
    The Kafka Streams 4.2 upgrade guide documents the DLQ configuration as:
    
        `errors.deadletterqueue.topic.name`
    
    However the StreamsConfig constant defines the property as:
    
        `errors.dead.letter.queue.topic.name`
    
    This mismatch may lead users to configure the wrong property.
    
    ### Solution
    
    Update the upgrade guide to use the correct configuration key.
    
    ### Scope
    
    Documentation-only change. No functional impact.
    
    Reviewers: Matthias J. Sax <[email protected]>, Chia-Ping Tsai
     <[email protected]>
---
 docs/streams/upgrade-guide.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/streams/upgrade-guide.md b/docs/streams/upgrade-guide.md
index 59bf4aff224..42d42fb5c4f 100644
--- a/docs/streams/upgrade-guide.md
+++ b/docs/streams/upgrade-guide.md
@@ -84,7 +84,7 @@ please refer to the [developer 
guide](/{version}/documentation/streams/developer
 
 ### Other changes
 
-Kafka Streams now supports Dead Letter Queue (DLQ). A new config 
`errors.deadletterqueue.topic.name` allows to specify the name of the DLQ 
topic. When set and `DefaultProductionExceptionHandler` is used, records that 
cause exceptions will be forwarded to the DLQ topic. If a custom exception 
handler is used, it is up to the custom handler to build DLQ records to send, 
hence, depending on the implementation, the `errors.deadletterqueue.topic.name` 
configuration may be ignored. `org.apache. [...]
+Kafka Streams now supports Dead Letter Queue (DLQ). A new config 
`errors.dead.letter.queue.topic.name` allows to specify the name of the DLQ 
topic. When set and `DefaultProductionExceptionHandler` is used, records that 
cause exceptions will be forwarded to the DLQ topic. If a custom exception 
handler is used, it is up to the custom handler to build DLQ records to send, 
hence, depending on the implementation, the 
`errors.dead.letter.queue.topic.name` configuration may be ignored. `org.apa 
[...]
 
 We introduce a new `org.apache.kafka.streams.CloseOptions` class which 
replaces the existing `org.apache.kafka.streams.KafkaStreams$CloseOptions`. The 
latter is deprecated and will be removed in the next major release. 
`CloseOptions` class allows to specify close timeout and group membership 
operation - whether the consumer needs to leave the group or remain in the 
group. More details can be found in 
[KIP-1153](https://cwiki.apache.org/confluence/x/QAq9F). 
 

Reply via email to