confluentinc/confluent-kafka-go

Confluent's Apache Kafka Golang client

View on GitHub ↗Jump to charts ↓Open shareable report

Summary Information

Updated 36 minutes ago
Added to GitGenius on September 13th, 2026
Created on July 12th, 2016
Open Issues & Pull Requests: 281 (+0)
GitHub issues: Enabled
Number of forks: 703
Total Stargazers: 5,163 (+0)
Total Subscribers: 361 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 5.0 days
Mean response time: 150.9 days
90th percentile: 422.2 days
Tracked items: 167

Most active contributors

Sign in to see contributor activity.

How this project is maintained

Around half of the issues opened in the past year never receive a reply. 99% of open issues come from outside the core team, so the backlog reflects real-world use rather than internal planning. Only 3% of issues opened in the past year have been closed. Three people close 60% of everything that gets resolved.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 95
New in 7 days: 0
Closed in 7 days: 1
Avg open age: 1,139 days
Stale 30+ days: 88
Stale 90+ days: 79

Recent activity

Opened in 7 days: 0
Closed in 7 days: 0
Comments in 7 days: 0
Events in 7 days: 0

Top labels

  • component:schema-registry (38)
  • status:waiting-for-interest (28)
  • enhancement (20)
  • question (20)
  • status:planned (12)
  • bug (6)
  • docs (4)
  • MEDIUM (3)

Most active issues this week

Detailed Description

Confluent-kafka-go is a Golang client library for Apache Kafka that wraps the librdkafka C library to provide producer and consumer functionality.

The library addresses the complexity of correctly implementing a Kafka client by leveraging librdkafka, a finely tuned C implementation maintained by Confluent. Rather than reimplementing Kafka protocol details in Go, the tool wraps this proven foundation, providing high-level Producer and Consumer APIs with support for balanced consumer groups available in Apache Kafka 0.9 and above. This approach delivers high performance while reducing the surface area for bugs in protocol handling.

Teams building Go applications that need to produce to or consume from Kafka should consider this client. It suits projects ranging from simple message producers to complex consumer group deployments. The library includes prebuilt librdkafka binaries for common platforms including macOS, glibc-based Linux, musl-based Linux, and Windows, eliminating the need for separate librdkafka installation in most cases. For Alpine Linux builds, the `-tags musl` flag must be specified. If GSSAPI or Kerberos authentication is required, a dynamic build linking against a separately installed librdkafka is necessary. The README provides examples for both basic consumer and producer patterns, as well as configuration guidance for Confluent Cloud deployments.

The project maintains alignment with Apache Kafka releases and the broader Confluent Platform. Development activity shows consistent attention to keeping client features synchronized with core Kafka capabilities. The tool benefits from being part of Confluent's multi-language client ecosystem, where reliability improvements and protocol handling refinements made in librdkafka are leveraged across Python and .NET clients as well. Commercial support is available directly from Confluent.