erikreppel / jocko

Kafka implemented in Golang with built-in coordination (No ZK dep, single binary install)

Home Page:https://twitter.com/travisjeffery

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

JOCKO

Kafka/distributed commit log service in Go.

Travis CI Join the chat at https://gitter.im/travisjeffery/jocko

Goals of this project:

  • Implement Kafka in Go
  • Protocol compatible with Kafka so Kafka clients and services work with Jocko
  • Make operating simpler
  • Distribute a single binary
  • Use Serf for discovery, Raft for consensus (and remove the need to run ZooKeeper)
  • Smarter configuration settings
    • Able to use percentages of disk space for retention policies rather than only bytes and time kept
    • Handling size configs when you change the number of partitions or add topics
  • Learn a lot and have fun

TODO

  • Producing
  • Fetching
  • Partition consensus and distribution
  • Protocol
    • Produce
    • Fetch
    • Metadata
    • Create Topics
    • Delete Topics
    • Consumer group
  • Discovery
  • Replication [current task]

Reading

License

MIT


About

Kafka implemented in Golang with built-in coordination (No ZK dep, single binary install)

https://twitter.com/travisjeffery

License:MIT License


Languages

Language:Go 99.9%Language:Makefile 0.1%