-
Notifications
You must be signed in to change notification settings - Fork 2
Avro
Youngwoo Kim edited this page Sep 23, 2019
·
6 revisions
https://github.com/bolcom/avro-schema-viewer
https://github.com/confluentinc/schema-registry/issues/707
{ "name": "foobar", "type": ["string", "null"], "default": null },
"default" -> https://avro.apache.org/docs/1.8.2/spec.html
https://issues.apache.org/jira/browse/AVRO-1811
{
"name": "some_string",
"doc": "a field that is guaranteed to compile to java.lang.String",
"type": [
"null",
{
"type": "string",
"avro.java.string": "String"
}
]
},
https://www.ctheu.com/2017/01/18/how-to-communicate-between-micro-services-part-1/