Skip to content

Commit

Permalink
GH-3001: add docs
Browse files Browse the repository at this point in the history
  • Loading branch information
notizklotz committed Mar 1, 2024
1 parent 9b40ca4 commit 3ed24ae
Showing 1 changed file with 29 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,32 @@ See xref:retrytopic/features.adoc#exc-based-custom-dlt-routing[Routing of messag
=== After Rollback Processing

A new `AfterRollbackProcessor` API `processBatch` is provided.
See xref:kafka/annotation-error-handling.adoc#after-rollback[After-rollback Processor] for more information.
See xref:kafka/annotation-error-handling.adoc#after-rollback[After-rollback Processor] for more information.

[[x32-default-clientid-prefix]]
=== Spring Boot application name as default client ID prefix

For Spring Boot applications which define an application name using the `spring.application.name` property, this name is now used
as a default prefix for auto-generated client IDs for these client types:

- consumer clients which don't use a consumer group
- producer clients
- admin clients

.Example client ids resulting for a Spring Boot application with `spring.application.name=myapp`
[%autowidth]
|===
|Client Type |Before |After

|consumer without consumer group
|consumer-null-1
|myapp-consumer-1

|producer
|producer-1
|myapp-producer-1

|admin
|adminclient-1
|myapp-admin-1
|===

0 comments on commit 3ed24ae

Please sign in to comment.