Kafka使用go实现生产者和消费者

什么是Kafka

Apache kafka是消息中间件的一种,是一个分布式的流平台,可以应用于高吞吐,高性能的消息队列服务.具体说明可以参考Apache Kafka官网.下面简单的说下使用golang来实现Kafka的生产者和消费者.

安装Kafka

下载

官网下载页面:http://kafka.apache.org/downloads

     
     
1
2
3
     
     
wget http://mirror.bit.edu.cn/apache/kafka/ 0.10 .2 .1/kafka_2 .12- 0.10 .2 .1.tgz
tar -zxvf kafka_2 .12- 0.10 .2 .1.tgz
cd kafka_2 .12- 0.10 .2 .1

启动服务
     
     
1
2
3
4
     
     
// 1.启动zookeeper
bin/zookeeper-server-start .sh config/zookeeper .properties &
// 2.启动kafka
bin/kafka-server-start .sh config/server .properties &
创建Topic
     
     
1
2
3
4
5
     
     
// 创建Topic
bin/kafka-topics.sh --create --zookeeper localhost :2181 --replication-factor 1 --partitions 1 --topic test
// 列出Topic是否创建成功
bin/kafka-topics.sh --list --zookeeper localhost :2181
发送消息

向创建的test Topic 发送消息(生产者)

     
     
1
2
3
     
     
bin/kafka-console-producer. sh --broker- list localhos t:9092 --topic test
This is a message
This is another message

创建消费者

订阅一个test Topic,并进行消费

     
     
1
2
3
     
     
bin/kafka- console-consumer.sh --bootstrap-server localhost: 9092 --topic test -- from-beginning
This is a message
This is another message

如果你的生产者和消费者是成功的话,消费者开启的时候是可以收到所有生产者的消息的.

生产者消费者具体实现

下载Kafka客户端Go语言Library

     
     
1
     
     
go get github. com/Shopify/sarama

官方语言客户端Library

生产者的实现
     
     
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
     
     
package main
import (
"bufio"
"fmt"
"os"
"sarama"
"strings"
)
func main() {
config := sarama.NewConfig()
config.Producer.Return.Successes = true
config.Producer.RequiredAcks = sarama.WaitForAll
config.Producer.Partitioner = sarama.NewRandomPartitioner
producer, err := sarama.NewSyncProducer([] string{ "localhost:9092"}, config)
if err != nil {
panic(err)
}
defer producer.Close()
msg := &sarama.ProducerMessage{
Topic: "testGo",
Partition: int32( -1),
Key: sarama.StringEncoder( "key"),
}
var value string
for {
// 生产消息
inputReader := bufio.NewReader(os.Stdin)
value, err = inputReader.ReadString( '\n')
if err != nil {
panic(err)
}
value = strings.Replace(value, "\n", "", -1)
msg.Value = sarama.ByteEncoder(value)
paritition, offset, err := producer.SendMessage(msg)
if err != nil {
fmt.Println( "Send Message Fail")
}
fmt.Printf( "Partion = %d, offset = %d\n", paritition, offset)
}
}
消费者的实现
     
     
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
     
     
package main
import (
"fmt"
"sarama"
"sync"
)
var (
wg sync.WaitGroup
)
func main() {
consumer, err := sarama.NewConsumer([] string{ "localhost:9092"}, nil)
if err != nil {
panic(err)
}
partitionList, err := consumer.Partitions( "testGo")
if err != nil {
panic(err)
}
for partition := range partitionList {
pc, err := consumer.ConsumePartition( "testGo", int32(partition), sarama.OffsetNewest)
if err != nil {
panic(err)
}
defer pc.AsyncClose()
wg.Add( 1)
go func(sarama.PartitionConsumer) {
defer wg.Done()
for msg := range pc.Messages() {
fmt.Printf( "Partition:%d, Offset:%d, Key:%s, Value:%s\n", msg.Partition, msg.Offset, string(msg.Key), string(msg.Value))
}
}(pc)
wg.Wait()
consumer.Close()
}
}

PS:如果你的代码不是运行在loalhost这台机器上的话,需要修改 config/server.properties 配置文件的listeners中的host,否则kafka服务端会拒绝你非localhost的连接请求,配置好后重启kafka服务.

测试运行

运行生产者

     
     
1
     
     
go run producer/main.go

运行消费者

     
     
1
     
     
go run consumer/main.go

执行

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值