Re: Reduce Kafka Client logging

2017-09-08 Thread Raghav
Thanks, Kamal. On Fri, Sep 8, 2017 at 4:10 AM, Kamal Chandraprakash < kamal.chandraprak...@gmail.com> wrote: > add this lines at the end of your log4j.properties, > > log4j.logger.org.apache.kafka.clients.producer=WARN > > On Thu, Sep 7, 2017 at 5:27 PM, Raghav wrote: > > > Hi Viktor > > > > Can

Re: Reduce Kafka Client logging

2017-09-08 Thread Kamal Chandraprakash
add this lines at the end of your log4j.properties, log4j.logger.org.apache.kafka.clients.producer=WARN On Thu, Sep 7, 2017 at 5:27 PM, Raghav wrote: > Hi Viktor > > Can you pleas share the log4j config snippet that I should use. My Java > code's current log4j looks like this. How should I add

Re: Reduce Kafka Client logging

2017-09-07 Thread Raghav
Hi Viktor Can you pleas share the log4j config snippet that I should use. My Java code's current log4j looks like this. How should I add this new entry that you mentioned ? Thanks. log4j.rootLogger=INFO, STDOUT log4j.appender.STDOUT=org.apache.log4j.ConsoleAppender log4j.appender.STDOUT.layout=

Re: Reduce Kafka Client logging

2017-09-07 Thread Viktor Somogyi
Hi Raghav, I think it is enough to raise the logging level of org.apache.kafka.clients.producer.ProducerConfig to WARN in log4j. Also I'd like to mention that if possible, don't recreate the Kafka producer each time. The protocol is designed for long-living connections and recreating the connectio

Re: Reduce Kafka Client logging

2017-09-06 Thread Raghav
Due to the nature of code, I have to open a connection to a different Kafka broker each time, and send one message. We have several Kafka brokers. So my client log is full with the following logs. What log settings should I use in log4j just for Kafka producer logs ? 17/09/07 04:44:04 INFO produc

Re: Reduce Kafka Client logging

2017-09-06 Thread Jaikiran Pai
Can you post the exact log messages that you are seeing? -Jaikiran On 07/09/17 7:55 AM, Raghav wrote: Hi My Java code produces Kafka config overtime it does a send which makes log very very verbose. How can I reduce the Kafka client (producer) logging in my java code ? Thanks for your help.

Reduce Kafka Client logging

2017-09-06 Thread Raghav
Hi My Java code produces Kafka config overtime it does a send which makes log very very verbose. How can I reduce the Kafka client (producer) logging in my java code ? Thanks for your help. -- Raghav