after kafkaTemplate.send(topic, avdlObject); appends dataType in value

85 views Asked by At

I have kafka template and avdl schema. avdl schema format:

recors name{
  union {null, int } a;
  union {null, string} b;
}

now i call kafkaTemplate.send(topic, nameObj); when i try to consume this usig consfluent 5.4 then it return data in format: {a: {"int": "123"}}

why int is appended in the response ?

0

There are 0 answers