sarama VS librdkafka

Compare sarama vs librdkafka and see what are their differences.

sarama

Sarama is a Go library for Apache Kafka. [Moved to: https://github.com/IBM/sarama] (by Shopify)
Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
sarama librdkafka
20 18
10,115 7,292
- 1.2%
8.6 8.3
10 months ago 1 day ago
Go C
MIT License GNU General Public License v3.0 or later
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

sarama

Posts with mentions or reviews of sarama. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-07-13.
  • Ingesting Data into OpenSearch using Apache Kafka and Go
    6 projects | dev.to | 13 Jul 2023
    Note: Since there are multiple Go clients for Kafka (including Sarama), please make sure to consult their client documentation to confirm whether they support IAM authentication.
  • book about golang and kafka
    6 projects | /r/golang | 4 Jun 2023
    You might want to gradually replace that one with https://github.com/twmb/franz-go because Shopify is looking to find a new owner for Sarama and, until or if they do, it seems to be falling behind with maintenance: https://github.com/Shopify/sarama/issues/2461 For example, they still haven’t addressed this breaking change https://github.com/Shopify/sarama/issues/2358. franz-go has worked well so far in Benthos https://github.com/benthosdev/benthos/tree/main/internal/impl/kafka and it will likely end up as the only implementation once the Sarama-based one will be deprecated
  • Klient - a native, statically-compiled, command line client for Kafka
    3 projects | /r/golang | 10 Feb 2023
    I've used mainly sarama wrapped with a bit of bespoke helper libraries. Never really looked into others, just grabbed one that was actively maintained and went for it.
  • Golang bad design reference
    6 projects | /r/golang | 23 Nov 2022
    Well, as someone who reviews a lot of code, I don't like seeing 100s of little files when a handful of logically grouped files would do. For example, this popular go project: https://github.com/Shopify/sarama is currently 256 small .go files, largely following a one class/file rule.
  • Concurrency in Go is hard
    2 projects | dev.to | 29 Aug 2022
    The first example is something we ran into while working on a project. Up until recently, the sarama library (Go library for Apache Kafka) contained the following piece of code (at sarama/version.go):
  • AWS MSK with go sarama
    1 project | /r/aws | 8 Aug 2022
    Im using the go sarama library to connect to the cluster, using this basic example.
  • Benthos - Fancy stream processing made operationally mundane
    4 projects | /r/dataengineering | 8 Jun 2022
    If you find the kafka input slow, try kafka_franz. It might be a bit faster, since it’s based on https://github.com/twmb/franz-go. The kafka one is based on https://github.com/Shopify/sarama. You can also write a custom input based on https://github.com/confluentinc/confluent-kafka-go, but this library relies on CGo, which can be annoying.
  • Sarama - Go library for Apache Kafka.
    1 project | /r/github_trends | 15 May 2022
  • Understanding Kafka with Factorio
    2 projects | news.ycombinator.com | 26 Nov 2021
  • Is segmentio/kafka-go production ready ?
    2 projects | /r/apachekafka | 1 Jun 2021
    There are a few factors that are stopping me from using kafka-go over Shopify's sarama.

librdkafka

Posts with mentions or reviews of librdkafka. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-05-09.
  • Do you use Rust in your professional career?
    6 projects | /r/rust | 9 May 2023
    recent PR: https://github.com/confluentinc/librdkafka/pull/4275
  • JR, quality Random Data from the Command line, part I
    8 projects | dev.to | 7 May 2023
    # Kafka configuration # https://github.com/confluentinc/librdkafka/blob/master/CONFIGURATION.md bootstrap.servers= security.protocol=SASL_SSL sasl.mechanisms=PLAIN sasl.username= sasl.password= compression.type=gzip compression.level=9 statistics.interval.ms=1000
  • A Critical Detail about Kafka Partitioners
    1 project | dev.to | 17 Apr 2023
    But what about Kafka producer clients in other languages? The excellent librdkafka project is a C/C++ implementation of Kafka clients and is widely used for non-JVM Kafka applications. Additionally, Kafka clients in other languages (Python, C#) build on top of it. The default partitioner for librdkafka uses the CRC32 hash function to get the correct partition for a key.
  • Horizontally scaling Kafka consumers with rendezvous hashing
    3 projects | dev.to | 24 Jan 2023
    We could have made some changes at the librdkafka level (see this), but we didn’t really want to pursue this (at least not yet).
  • Events with same key going to different partitions
    1 project | /r/apachekafka | 23 Jan 2023
    You want records with the same key to always land on the same partition, so you need all the clients to use the same hashing algorithm. The easiest way to do that is to make sure the librdkafka client uses the java compatible murmur2_random hash algorithm. See “Partitioner” section here: https://github.com/confluentinc/librdkafka/blob/master/CONFIGURATION.md
  • Getting sum type values from a map
    2 projects | /r/vlang | 14 Nov 2022
    As my first "real world" (ish) project in Vlang, I'm trying to copy https://github.com/confluentinc/confluent-kafka-go, which is a Go wrapper for Kafka C client library, https://github.com/edenhill/librdkafka
  • Installing node-rdkafka on M1 for use with SASL
    3 projects | dev.to | 14 Oct 2022
    If you're using Kafka in a Node.js app, it's likely that you'll need node-rdkafka. This is a library that wraps the librdkafka library and makes it available in Node.js. According to the project's README, "All the complexity of balancing writes across partitions and managing (possibly ever-changing) brokers should be encapsulated in the library."
  • Introduction to Key Apache KafkaⓇ Concepts
    1 project | dev.to | 11 Oct 2022
    # Parse the configuration. # See https://github.com/edenhill/librdkafka/blob/master/CONFIGURATION.md config_parser = ConfigParser() config_parser.read_file(args.config_file) config = dict(config_parser['default']) # Create Producer instance producer = Producer(config)
  • video analytics on edge
    1 project | dev.to | 20 Sep 2022
    • git clone https://github.com/edenhill/librdkafka.git
  • librdkafka - the Apache Kafka C/C++ client library
    1 project | /r/github | 15 Apr 2022

What are some alternatives?

When comparing sarama and librdkafka you can also consider the following projects:

Confluent Kafka Golang Client - Confluent's Apache Kafka Golang client

CVE-2022-27254 - PoC for vulnerability in Honda's Remote Keyless System(CVE-2022-27254)

kafka-go - Kafka library in Go

Karafka - Ruby and Rails efficient multithreaded Kafka processing framework

franz-go - franz-go contains a feature complete, pure Go library for interacting with Kafka from 0.8.0 through 3.6+. Producing, consuming, transacting, administrating, etc.

gorush - A push notification server written in Go (Golang).

rsyslog - a Rocket-fast SYStem for LOG processing

Mercure - 🪽 An open, easy, fast, reliable and battery-efficient solution for real-time communications

rust-kafka-101 - Getting started with Rust and Kafka

gopush-cluster - Golang push server cluster

rskafka - A minimal Rust client for Apache Kafka