forked from IBM/sarama
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request IBM#2214 from Shopify/dnwe/handle-offsets-load-in-…
…progress fix: cope with OffsetsLoadInProgress on Join+Sync
- Loading branch information
Showing
3 changed files
with
133 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
package sarama | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
) | ||
|
||
type exampleConsumerGroupHandler struct{} | ||
|
||
func (exampleConsumerGroupHandler) Setup(_ ConsumerGroupSession) error { return nil } | ||
func (exampleConsumerGroupHandler) Cleanup(_ ConsumerGroupSession) error { return nil } | ||
func (h exampleConsumerGroupHandler) ConsumeClaim(sess ConsumerGroupSession, claim ConsumerGroupClaim) error { | ||
for msg := range claim.Messages() { | ||
fmt.Printf("Message topic:%q partition:%d offset:%d\n", msg.Topic, msg.Partition, msg.Offset) | ||
sess.MarkMessage(msg, "") | ||
} | ||
return nil | ||
} | ||
|
||
func ExampleConsumerGroup() { | ||
config := NewTestConfig() | ||
config.Version = V2_0_0_0 // specify appropriate version | ||
config.Consumer.Return.Errors = true | ||
|
||
group, err := NewConsumerGroup([]string{"localhost:9092"}, "my-group", config) | ||
if err != nil { | ||
panic(err) | ||
} | ||
defer func() { _ = group.Close() }() | ||
|
||
// Track errors | ||
go func() { | ||
for err := range group.Errors() { | ||
fmt.Println("ERROR", err) | ||
} | ||
}() | ||
|
||
// Iterate over consumer sessions. | ||
ctx := context.Background() | ||
for { | ||
topics := []string{"my-topic"} | ||
handler := exampleConsumerGroupHandler{} | ||
|
||
// `Consume` should be called inside an infinite loop, when a | ||
// server-side rebalance happens, the consumer session will need to be | ||
// recreated to get the new claims | ||
err := group.Consume(ctx, topics, handler) | ||
if err != nil { | ||
panic(err) | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters