spring-projects / spring-pulsar

Spring Friendly Abstractions for Apache Pulsar
Apache License 2.0
183 stars 58 forks source link

Log a warning when Lambda customizer used #879

Closed onobc closed 3 weeks ago

onobc commented 3 weeks ago

This adjusts the PulsarTemplate to log a warning when a user provides a ProducerBuilderCustomizer that is implemented as a Java Lambda. This is important as the customizer is used as part of the producer cache key and if not implemented properly will effectively disable producer caching and write performance will degrade.

See #809