Hi everyone,
I'm using OGG to send data from source Oracle DB to Kafka queue with Avro Serialization.
We need to convert number to string and then in avro definition we define this conversions.
For example:Source: Number; Avro definition: String;
When we send the message the number less than zero, the value is truncated.
For example: the value on DB is 0.007, the value on Kafka is .007, I'd like the number to be 0.007
How we can change the value?
We tried the function @strnum but doesn't works.
Can you help me?