Skip to content

Instantly share code, notes, and snippets.

@ppearcy
Created July 21, 2015 06:48
Show Gist options
  • Save ppearcy/39e40489ab709e58d9a3 to your computer and use it in GitHub Desktop.
Save ppearcy/39e40489ab709e58d9a3 to your computer and use it in GitHub Desktop.
Schema with logicalType that can cause maven avro compiler error
{
"namespace": "schema.common",
"type": "record",
"name": "Action",
"fields": [
{
"name": "name",
"type": "string"
},
{
"name": "uuid",
"type": "string"
},
{
"name": "time",
"type": {
"type": "long",
"logicalType": "timestamp-millis"
}
},
{
"name": "requestId",
"type": [
"null",
"string"
],
"default": null
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment