JIRA: https://jira.spring.io/browse/INTEXT-168 - Replace producers with the new producer API - Change KafkaProducerContext and ProducerConfiguration to match the new Producer's behaviour (i.e. providing partition as argument) - support using the `partitionId` message header for targetting specific partitions; - allow using a SpEL expression for partitioning; - remove configurations that do not apply anymore, i.e. async (new producer is always async), batch size as message count, etc. - add new configuration options wherever necessary; - tweak schema - allow reuse of Encoders and Partitioners if available; TODO: Add missing unit tests; Fixes and polishing
10 lines
404 B
INI
10 lines
404 B
INI
log4j.rootCategory=WARN, stdout
|
|
|
|
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
|
|
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
|
|
log4j.appender.stdout.layout.ConversionPattern=%d{HH:mm:ss.SSS} %-5p [%t][%c] %m%n
|
|
|
|
log4j.category.org.springframework.integration=WARN
|
|
log4j.category.org.springframework.integration.kafka=INFO
|
|
log4j.category.org.apache.kafka.common.network.Selector=ERROR
|