RE:Flink OpenSearch Connector - Avro JSON to JSON

2023-11-21 Thread Dale Lane
FYI in case it’s relevant for this discussion > I'm not sure what is the ` Avro JSON` means Avro supports two encoding mechanisms – binary encoding, and JSON encoding. [1] In other words, an Avro record, although normally represented as binary data, can instead be represented as a JSON document

Handling default fields in Avro messages using Flink SQL

2023-11-13 Thread Dale Lane
I have a Kafka topic with events produced using an Avro schema like this: { "namespace": "demo.avro", "type": "record", "name": "MySimplifiedRecreate", "fields": [ { "name": "favouritePhrase", "type": "string", "default": "Hello World"