Schema registry support !
- List schema
- Create / update / delete a schema
- View and delete individual schema version
- Automatic deserialization of avro message on data view
:warning: The configuration file have changed in order to support Schema registry :warning:
**Before** :
{
kafka {
connections {
my-cluster-1 {
bootstrap.servers: "kafka:9092"
}
}
}
**Now** :
{
kafka {
connections {
my-cluster-1 {
properties {
bootstrap.servers: "kafka:9092"
}
registry: "http://schema-registry:8085"
}
}
}
All configurations parameters are now in a `properties` key
![peek 2019-02-11 14-31](https://user-images.githubusercontent.com/2064609/52567046-97ee3700-2e0b-11e9-8239-090f3f5c3444.gif)