Skip to content

0.3.0

Pre-release
Pre-release
Compare
Choose a tag to compare
@tchiotludo tchiotludo released this 23 Feb 13:47
29c07cf

Schema registry support !

  • List schema
  • Create / update / delete a schema
  • View and delete individual schema version
  • Automatic deserialization of avro message on data view

⚠️ The configuration file have changed in order to support Schema registry ⚠️

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