-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.go
79 lines (65 loc) · 1.14 KB
/
main.go
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
package main
import (
"flag"
"fmt"
"go-kafka/src"
"gopkg.in/yaml.v2"
"io/ioutil"
"os"
"os/signal"
"syscall"
)
var (
conf src.Config
mode string
topic string
)
func init() {
flag.StringVar(&mode, "mode", "producer", "producer or consumer")
flag.StringVar(&topic, "topic", "go_test", "topic name")
flag.Parse()
yamlFile, _ := ioutil.ReadFile("config.yaml")
err := yaml.Unmarshal(yamlFile, &conf)
if err != nil {
panic(err)
}
}
func main() {
if mode == "producer" {
producer()
} else {
consumer()
}
}
func producer() {
producer, _ := src.NewProducer(conf, "go_test", 0)
_ = producer.Push([]byte("{\"name\":\"test\"}"), nil)
}
func consumer() {
var topics = []src.Topic{
{
Name: "go_test",
},
}
consumer, _ := src.NewConsumer(conf, "test-id", topics)
loop := true
go func() {
var c = make(chan os.Signal, 1)
signal.Notify(c, syscall.SIGQUIT, syscall.SIGTERM, syscall.SIGINT)
<-c
fmt.Println("quit")
loop = false
}()
for loop {
data, err := consumer.Pull(200)
if err != nil {
panic(err)
}
if data == "" {
continue
}
fmt.Println(data)
_ = consumer.Commit()
}
_ = consumer.Close()
}