Hi,
I’m using S3 Sink Connector to read Avro messages from topic. Message itself contains lots of information which I don’t need. How can I extract specific fields from message and write to S3?
{
"id": 123456,
"testId": {
"type": {
"name": "testType"
},
"value": "testValue"
},
"hasMetaData": {
"createdBy": "xxxxx",
"createdOn": "2022-02-16T16:40:27.820238Z",
"derivedFrom": "xxxxxx",
"providerStatus": "NEW"
}
..... continue
}
I need only “id” and “testId”.
thanks,
Umit