Skip to content

Latest commit

 

History

History
29 lines (17 loc) · 1.11 KB

README.md

File metadata and controls

29 lines (17 loc) · 1.11 KB

dash kafka - a simple Go Kafka client

A Go Kafka client backed by librdkafka.

This is a project for me to learn and experiment with Go features that I don't necessarily have the ability to do through my regular work.

Features are based on my experience using various Kafka clients in Ruby, Java, Scala and Go. The focus is on creating a consumer and producer that integrates cleanly into an application, and takes care of most of the complexity of adding a Kafka client to an application.

See run.go for example configuration, set up and use. Run with go run run.go.

But, like, why?

Just for fun. No, really

Goal features

  • Simple, idiomatic Go consumer and producer interface
  • Per-patition consumer
  • Extensibility through 'middleware style' interface
  • In-partition concurrent message processing

Not goals

  • Be a fully feautred Kafka client e.g. it's very unlikely that this will ever implement admin fuctions
  • Be a clone of confluent-kafka-go

Should you use this in production?

Almost certainly not.