Re: How to set custom properties and message expiration for Kafka topic message.

2020-04-17 Thread Naveen Kumar M
Thanks Nicolas. This helps. On Fri, Apr 10, 2020 at 7:59 PM Nicolas Carlot wrote: > Ok, then you may be looking for custom headers: > > https://cwiki.apache.org/confluence/display/KAFKA/KIP-82+-+Add+Record+Headers > > > Le ven. 10 avr. 2020 à 16:08, Naveen Kumar M > a écrit : > > > Hello Nicola

Re: How to set custom properties and message expiration for Kafka topic message.

2020-04-10 Thread Nicolas Carlot
Ok, then you may be looking for custom headers: https://cwiki.apache.org/confluence/display/KAFKA/KIP-82+-+Add+Record+Headers Le ven. 10 avr. 2020 à 16:08, Naveen Kumar M a écrit : > Hello Nicolas, > > Thanks a lot for the response. "Custom properties" are nothing but > additional message prope

Re: How to set custom properties and message expiration for Kafka topic message.

2020-04-10 Thread Naveen Kumar M
Hello Nicolas, Thanks a lot for the response. "Custom properties" are nothing but additional message properties based on our requirement and which are not part of message payload. For example trackingId which I need to add this additional property while producing message and read the same in consu

Re: How to set custom properties and message expiration for Kafka topic message.

2020-04-10 Thread Nicolas Carlot
Hello, Message expiration is based on topic configuration, not on your producer configuration. Look at kafka server configuration. retention.ms is one of the properties that drive the message deletion I don't know what is "customer properties", if you're talking about "custom properties", what do

Re: How to set custom properties and message expiration for Kafka topic message.

2020-04-10 Thread Naveen Kumar M
Hello Team, Could you please help me on this? Thanks and regards, Naveen On Tue, Apr 7, 2020, 2:27 PM Naveen Kumar M wrote: > Hello Friends, > > Hope you are all doing good! > > I am bit new to Kafka messaging system. > > We are using Kafka as messaging broker. > > Could someone let me know ho

Re: How to set custom properties and message expiration for Kafka topic message.

2020-04-08 Thread Naveen Kumar M
Hello Team, Could you please help me on this? Thanks and regards, Naveen On Tue, Apr 7, 2020, 2:27 PM Naveen Kumar M wrote: > Hello Friends, > > Hope you are all doing good! > > I am bit new to Kafka messaging system. > > We are using Kafka as messaging broker. > > Could someone let me know ho

How to set custom properties and message expiration for Kafka topic message.

2020-04-07 Thread Naveen Kumar M
Hello Friends, Hope you are all doing good! I am bit new to Kafka messaging system. We are using Kafka as messaging broker. Could someone let me know how to set custom properties and message expiration while sending message to Kafka topic and how to read customer properties in consumer end? Th