sarama icon indicating copy to clipboard operation
sarama copied to clipboard

Sarama is a Go library for Apache Kafka.

Results 375 sarama issues
Sort by recently updated
recently updated
newest added

This PR addresses [this issue](https://github.com/Shopify/sarama/issues/2316). Signed-off-by: Panos Koutsovasilis

cla-needed

##### Versions *Please specify real version numbers or git SHAs, not just "Latest" since that changes fairly regularly.* | Sarama | Kafka | Go | |--------|-------|----| | v1.34.1 | 7.2.1-ccs...

Whilst trying out the new "pause consumer" support (https://github.com/Shopify/sarama/pull/2005) on main, I noticed that Sarama will submit empty FetchRequests if all of the assigned partitions are paused. This is because...

##### Versions 1.34.1 | Sarama | Kafka | Go | |--------|-------|----| | | | | ##### Configuration What configuration values are you using for Sarama and Kafka? ``` go ```...

##### Versions *Please specify real version numbers or git SHAs, not just "Latest" since that changes fairly regularly.* | Sarama | Kafka | Go | |--------|-------|----| | v1.34.0 | |...

stale/exempt
needs-investigation

Inspired from https://github.com/Shopify/sarama/pull/1527 Fix: * https://github.com/Shopify/sarama/issues/1829 * https://github.com/Shopify/sarama/issues/1760 Changes: * Add BeginTxn/CommitTxn/AbortTxn/AddOffsetsToTxn/AddMessageToTxn to Sync/Async Producer Example usage: (for more complete examples see examples/txn_producer && examples/exactly_once) * Simple transaction producer ```go...

Add the `Partitions()` method for `ConsumerGroup`, the same as `Client.Partitions()` and `Consumer.Partitions()`.

@dnwe can you have a look at this small change?

Let's imagine I'm sending 5 messages (1, 2, 3, 4, 5) using `SendMessages` method. According to the documentation: ``` // SendMessages produces a given set of messages and returns only...

Calls to `PartitionOffsetManager.Close` seem to consistently hang for me when `Consumer.Offsets.AutoCommit.Enable==false`. They do not hang when the default value of true is used. ##### Versions | Sarama | Kafka |...