Skip to content

Commit a5b5e2b

Browse files
committed
feat: consumer close log
1 parent 328f46c commit a5b5e2b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

kq/queue.go

+4
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,8 @@ func (q *kafkaQueue) Start() {
162162
q.producerRoutines.Wait()
163163
close(q.channel)
164164
q.consumerRoutines.Wait()
165+
166+
logx.Infof("Consumer %s is closed", q.c.Name)
165167
}
166168

167169
func (q *kafkaQueue) Stop() {
@@ -202,13 +204,15 @@ func (q *kafkaQueue) startConsumers() {
202204

203205
func (q *kafkaQueue) startProducers() {
204206
for i := 0; i < q.c.Consumers; i++ {
207+
i := i
205208
q.producerRoutines.Run(func() {
206209
for {
207210
msg, err := q.consumer.FetchMessage(context.Background())
208211
// io.EOF means consumer closed
209212
// io.ErrClosedPipe means committing messages on the consumer,
210213
// kafka will refire the messages on uncommitted messages, ignore
211214
if err == io.EOF || err == io.ErrClosedPipe {
215+
logx.Infof("Consumer %s-%d is closed, error: %q", q.c.Name, i, err.Error())
212216
return
213217
}
214218
if err != nil {

0 commit comments

Comments
 (0)