Skip to content

Latest commit

 

History

History
38 lines (27 loc) · 1.17 KB

README.md

File metadata and controls

38 lines (27 loc) · 1.17 KB

confluent-kafka-go-ext

Build Status

Simple utility extension for easy use of Confluent's Golang Client for Apache Kafka.

Requirements

  • Go 1.13+ (for Go Modules support)
  • librdkafka (depends on your OS)

Getting Started

Starting with Go 1.13, you can use Go Modules to install confluent-kafka-go-ext.

Import the confluent package from GitHub in your code:

import "github.com/osframework/confluent-kafka-go-ext/confluent"

Build your project:

go build ./...

If you are building for Alpine Linux (musl), -tags musl must be specified.

go build -tags musl ./...

A dependency to the latest stable version of confluent-kafka-go-ext should be automatically added to your go.mod file.

Contributing

Contributions to the code, examples, documentation, etc. are appreciated.

  1. Make your changes
  2. run make
  3. push your branch
  4. create a PR