forked from fgeller/kt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
topic.go
188 lines (160 loc) · 4.48 KB
/
topic.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
package main
import (
"flag"
"fmt"
"log"
"os"
"regexp"
"github.com/Shopify/sarama"
"golang.org/x/sync/errgroup"
)
type topicCmd struct {
commonFlags
partitions bool
leaders bool
replicas bool
config bool
pretty bool
filterStr string
filter *regexp.Regexp
client sarama.Client
admin sarama.ClusterAdmin
}
type topic struct {
Name string `json:"name"`
Partitions []partition `json:"partitions,omitempty"`
Config map[string]string `json:"config,omitempty"`
}
type partition struct {
Id int32 `json:"id"`
OldestOffset int64 `json:"oldest"`
NewestOffset int64 `json:"newest"`
Leader string `json:"leader,omitempty"`
Replicas []int32 `json:"replicas,omitempty"`
ISRs []int32 `json:"isrs,omitempty"`
}
func (cmd *topicCmd) addFlags(flags *flag.FlagSet) {
cmd.commonFlags.addFlags(flags)
flags.BoolVar(&cmd.partitions, "partitions", false, "Include information per partition.")
flags.BoolVar(&cmd.leaders, "leaders", false, "Include leader information per partition.")
flags.BoolVar(&cmd.replicas, "replicas", false, "Include replica ids per partition.")
flags.StringVar(&cmd.filterStr, "filter", "", "Regex to filter topics by name.")
flags.BoolVar(&cmd.pretty, "pretty", true, "Control output pretty printing.")
flags.BoolVar(&cmd.config, "config", false, "Include topic configuration.")
flags.Usage = func() {
fmt.Fprintln(os.Stderr, "Usage of topic:")
flags.PrintDefaults()
fmt.Fprintln(os.Stderr, topicDocString)
}
}
func (cmd *topicCmd) environFlags() map[string]string {
return map[string]string{
"brokers": "KT_BROKERS",
}
}
func (cmd *topicCmd) run(as []string) error {
var err error
cmd.filter, err = regexp.Compile(cmd.filterStr)
if err != nil {
return fmt.Errorf("invalid regex for filter: %v", err)
}
if cmd.verbose {
sarama.Logger = log.New(os.Stderr, "", log.LstdFlags)
}
if err := cmd.connect(); err != nil {
return err
}
defer cmd.client.Close()
defer cmd.admin.Close()
all, err := cmd.client.Topics()
if err != nil {
return fmt.Errorf("failed to read topics: %v", err)
}
topics := []string{}
for _, a := range all {
if cmd.filter.MatchString(a) {
topics = append(topics, a)
}
}
out := newPrinter(cmd.pretty)
var wg errgroup.Group
for _, topicName := range topics {
topicName := topicName
wg.Go(func() error {
topic, err := cmd.readTopic(topicName)
if err != nil {
return fmt.Errorf("failed to read info for topic %s: %v", topicName, err)
}
out.print(topic)
return nil
})
}
return wg.Wait()
}
func (cmd *topicCmd) connect() error {
cfg, err := cmd.saramaConfig("topic")
if err != nil {
return err
}
if cmd.client, err = sarama.NewClient(cmd.brokers(), cfg); err != nil {
return fmt.Errorf("failed to create client: %v", err)
}
if cmd.admin, err = sarama.NewClusterAdmin(cmd.brokers(), cfg); err != nil {
return fmt.Errorf("failed to create cluster admin err: %w", err)
}
return nil
}
func (cmd *topicCmd) readTopic(name string) (topic, error) {
var (
err error
ps []int32
led *sarama.Broker
top = topic{Name: name}
configEntries []sarama.ConfigEntry
)
if cmd.config {
resource := sarama.ConfigResource{Name: name, Type: sarama.TopicResource}
if configEntries, err = cmd.admin.DescribeConfig(resource); err != nil {
return top, err
}
top.Config = make(map[string]string)
for _, entry := range configEntries {
top.Config[entry.Name] = entry.Value
}
}
if !cmd.partitions {
return top, nil
}
if ps, err = cmd.client.Partitions(name); err != nil {
return top, err
}
for _, p := range ps {
np := partition{Id: p}
if np.OldestOffset, err = cmd.client.GetOffset(name, p, sarama.OffsetOldest); err != nil {
return top, err
}
if np.NewestOffset, err = cmd.client.GetOffset(name, p, sarama.OffsetNewest); err != nil {
return top, err
}
if cmd.leaders {
if led, err = cmd.client.Leader(name, p); err != nil {
return top, err
}
np.Leader = led.Addr()
}
if cmd.replicas {
if np.Replicas, err = cmd.client.Replicas(name, p); err != nil {
return top, err
}
if np.ISRs, err = cmd.client.InSyncReplicas(name, p); err != nil {
return top, err
}
}
top.Partitions = append(top.Partitions, np)
}
return top, nil
}
var topicDocString = fmt.Sprintf(`
The values for -brokers can also be set via the environment variable %s respectively.
The values supplied on the command line win over environment variable values.`,
ENV_BROKERS)