-
-
Save apapacy/3ac8cb2a98289c2cbeae22ddd01f20a8 to your computer and use it in GitHub Desktop.
Kafka Connect JSON message with schema/payload
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"schema": { | |
"type": "struct", | |
"fields": [{ | |
"type": "int32", | |
"optional": true, | |
"field": "c1" | |
}, { | |
"type": "string", | |
"optional": true, | |
"field": "c2" | |
}, { | |
"type": "int64", | |
"optional": false, | |
"name": "org.apache.kafka.connect.data.Timestamp", | |
"version": 1, | |
"field": "create_ts" | |
}, { | |
"type": "int64", | |
"optional": false, | |
"name": "org.apache.kafka.connect.data.Timestamp", | |
"version": 1, | |
"field": "update_ts" | |
}], | |
"optional": false, | |
"name": "foobar" | |
}, | |
"payload": { | |
"c1": 10000, | |
"c2": "bar", | |
"create_ts": 1501834166000, | |
"update_ts": 1501834166000 | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment