Kafka AVRO deserialize bytes decimal
I need to read from Kafka with AVRO, but something is wrong with parsing.
Does Pega support deserializing AVRO logical types like decimal?
My example schema excerpt is this
{ "type": "record", "name": "example", "fields": [ { "name": "myProperty", "type": { "type": "bytes", "logicalType": "decimal", "precision": 5, "scale": 3 } }, ] }
Result seems like parsing error {?} -- attached