forked from aiven/aiven-go-client
-
Notifications
You must be signed in to change notification settings - Fork 1
/
kafka_topic.go
279 lines (244 loc) · 11.8 KB
/
kafka_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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
// Copyright (c) 2017 jelmersnoeck
// Copyright (c) 2018 Aiven, Helsinki, Finland. https://aiven.io/
package aiven
type (
// KafkaTopicConfig represents a Kafka Topic Config on Aiven.
KafkaTopicConfig struct {
CleanupPolicy string `json:"cleanup_policy,omitempty"`
CompressionType string `json:"compression_type,omitempty"`
DeleteRetentionMs *int64 `json:"delete_retention_ms,omitempty"`
FileDeleteDelayMs *int64 `json:"file_delete_delay_ms,omitempty"`
FlushMessages *int64 `json:"flush_messages,omitempty"`
FlushMs *int64 `json:"flush_ms,omitempty"`
IndexIntervalBytes *int64 `json:"index_interval_bytes,omitempty"`
MaxCompactionLagMs *int64 `json:"max_compaction_lag_ms,omitempty"`
MaxMessageBytes *int64 `json:"max_message_bytes,omitempty"`
MessageDownconversionEnable *bool `json:"message_downconversion_enable,omitempty"`
MessageFormatVersion string `json:"message_format_version,omitempty"`
MessageTimestampDifferenceMaxMs *int64 `json:"message_timestamp_difference_max_ms,omitempty"`
MessageTimestampType string `json:"message_timestamp_type,omitempty"`
MinCleanableDirtyRatio *float64 `json:"min_cleanable_dirty_ratio,omitempty"`
MinCompactionLagMs *int64 `json:"min_compaction_lag_ms,omitempty"`
MinInsyncReplicas *int64 `json:"min_insync_replicas,omitempty"`
Preallocate *bool `json:"preallocate,omitempty"`
RetentionBytes *int64 `json:"retention_bytes,omitempty"`
RetentionMs *int64 `json:"retention_ms,omitempty"`
SegmentBytes *int64 `json:"segment_bytes,omitempty"`
SegmentIndexBytes *int64 `json:"segment_index_bytes,omitempty"`
SegmentJitterMs *int64 `json:"segment_jitter_ms,omitempty"`
SegmentMs *int64 `json:"segment_ms,omitempty"`
UncleanLeaderElectionEnable *bool `json:"unclean_leader_election_enable,omitempty"`
}
// KafkaTopicConfigResponse represents a Kafka Topic Config on Aiven.
KafkaTopicConfigResponse struct {
CleanupPolicy KafkaTopicConfigResponseString `json:"cleanup_policy,omitempty"`
CompressionType KafkaTopicConfigResponseString `json:"compression_type,omitempty"`
DeleteRetentionMs KafkaTopicConfigResponseInt `json:"delete_retention_ms,omitempty"`
FileDeleteDelayMs KafkaTopicConfigResponseInt `json:"file_delete_delay_ms,omitempty"`
FlushMessages KafkaTopicConfigResponseInt `json:"flush_messages,omitempty"`
FlushMs KafkaTopicConfigResponseInt `json:"flush_ms,omitempty"`
IndexIntervalBytes KafkaTopicConfigResponseInt `json:"index_interval_bytes,omitempty"`
MaxCompactionLagMs KafkaTopicConfigResponseInt `json:"max_compaction_lag_ms,omitempty"`
MaxMessageBytes KafkaTopicConfigResponseInt `json:"max_message_bytes,omitempty"`
MessageDownconversionEnable KafkaTopicConfigResponseBool `json:"message_downconversion_enable,omitempty"`
MessageFormatVersion KafkaTopicConfigResponseString `json:"message_format_version,omitempty"`
MessageTimestampDifferenceMaxMs KafkaTopicConfigResponseInt `json:"message_timestamp_difference_max_ms,omitempty"`
MessageTimestampType KafkaTopicConfigResponseString `json:"message_timestamp_type,omitempty"`
MinCleanableDirtyRatio KafkaTopicConfigResponseFloat `json:"min_cleanable_dirty_ratio,omitempty"`
MinCompactionLagMs KafkaTopicConfigResponseInt `json:"min_compaction_lag_ms,omitempty"`
MinInsyncReplicas KafkaTopicConfigResponseInt `json:"min_insync_replicas,omitempty"`
Preallocate KafkaTopicConfigResponseBool `json:"preallocate,omitempty"`
RetentionBytes KafkaTopicConfigResponseInt `json:"retention_bytes,omitempty"`
RetentionMs KafkaTopicConfigResponseInt `json:"retention_ms,omitempty"`
SegmentBytes KafkaTopicConfigResponseInt `json:"segment_bytes,omitempty"`
SegmentIndexBytes KafkaTopicConfigResponseInt `json:"segment_index_bytes,omitempty"`
SegmentJitterMs KafkaTopicConfigResponseInt `json:"segment_jitter_ms,omitempty"`
SegmentMs KafkaTopicConfigResponseInt `json:"segment_ms,omitempty"`
UncleanLeaderElectionEnable KafkaTopicConfigResponseBool `json:"unclean_leader_election_enable,omitempty"`
Tags []KafkaTopicTag `json:"tags,omitempty"`
}
KafkaTopicTag struct {
Key string `json:"key"`
Value string `json:"value"`
}
KafkaTopicConfigResponseString struct {
Source string `json:"source"`
Value string `json:"value"`
Synonyms []struct {
Source string `json:"source"`
Value string `json:"value"`
Name string `json:"name"`
} `json:"synonyms"`
}
KafkaTopicConfigResponseInt struct {
Source string `json:"source"`
Value int64 `json:"value"`
Synonyms []struct {
Source string `json:"source"`
Value int64 `json:"value"`
Name string `json:"name"`
} `json:"synonyms"`
}
KafkaTopicConfigResponseBool struct {
Source string `json:"source"`
Value bool `json:"value"`
Synonyms []struct {
Source string `json:"source"`
Value bool `json:"value"`
Name string `json:"name"`
} `json:"synonyms"`
}
KafkaTopicConfigResponseFloat struct {
Source string `json:"source"`
Value float64 `json:"value"`
Synonyms []struct {
Source string `json:"source"`
Value float64 `json:"value"`
Name string `json:"name"`
} `json:"synonyms"`
}
// KafkaTopic represents a Kafka Topic on Aiven.
KafkaTopic struct {
CleanupPolicy string `json:"cleanup_policy"`
MinimumInSyncReplicas int `json:"min_insync_replicas"`
Partitions []*Partition `json:"partitions"`
Replication int `json:"replication"`
RetentionBytes int `json:"retention_bytes"`
RetentionHours *int `json:"retention_hours,omitempty"`
State string `json:"state"`
TopicName string `json:"topic_name"`
Config KafkaTopicConfigResponse `json:"config"`
Tags []KafkaTopicTag `json:"tags,omitempty"`
}
// KafkaListTopic represents kafka list topic model on Aiven.
KafkaListTopic struct {
CleanupPolicy string `json:"cleanup_policy"`
MinimumInSyncReplicas int `json:"min_insync_replicas"`
Partitions int `json:"partitions"`
Replication int `json:"replication"`
RetentionBytes int `json:"retention_bytes"`
RetentionHours *int64 `json:"retention_hours,omitempty"`
State string `json:"state"`
TopicName string `json:"topic_name"`
}
// Partition represents a Kafka partition.
Partition struct {
ConsumerGroups []*ConsumerGroup `json:"consumer_groups"`
EarliestOffset int64 `json:"earliest_offset"`
ISR int `json:"isr"`
LatestOffset int64 `json:"latest_offset"`
Partition int `json:"partition"`
Size int64 `json:"size"`
}
// ConsumerGroup is the group used in partitions.
ConsumerGroup struct {
GroupName string `json:"group_name"`
Offset int64 `json:"offset"`
}
// KafkaTopicsHandler is the client which interacts with the kafka endpoints
// on Aiven.
KafkaTopicsHandler struct {
client *Client
}
// CreateKafkaTopicRequest are the parameters used to create a kafka topic.
CreateKafkaTopicRequest struct {
CleanupPolicy *string `json:"cleanup_policy,omitempty"`
MinimumInSyncReplicas *int `json:"min_insync_replicas,omitempty"`
Partitions *int `json:"partitions,omitempty"`
Replication *int `json:"replication,omitempty"`
RetentionBytes *int `json:"retention_bytes,omitempty"`
RetentionHours *int `json:"retention_hours,omitempty"`
TopicName string `json:"topic_name"`
Config KafkaTopicConfig `json:"config"`
Tags []KafkaTopicTag `json:"tags,omitempty"`
}
// UpdateKafkaTopicRequest are the parameters used to update a kafka topic.
UpdateKafkaTopicRequest struct {
MinimumInSyncReplicas *int `json:"min_insync_replicas,omitempty"`
Partitions *int `json:"partitions,omitempty"`
Replication *int `json:"replication,omitempty"`
RetentionBytes *int `json:"retention_bytes,omitempty"`
RetentionHours *int `json:"retention_hours,omitempty"`
Config KafkaTopicConfig `json:"config"`
Tags []KafkaTopicTag `json:"tags,omitempty"`
}
// KafkaTopicResponse is the response for Kafka Topic requests.
KafkaTopicResponse struct {
APIResponse
Topic *KafkaTopic `json:"topic"`
}
// KafkaTopicsResponse is the response for listing kafka topics.
KafkaTopicsResponse struct {
APIResponse
Topics []*KafkaListTopic `json:"topics"`
}
// KafkaV2TopicsResponse is the response for listing kafka topics specific for API V2 endpoint.
KafkaV2TopicsResponse struct {
APIResponse
Topics []*KafkaTopic `json:"topics"`
}
)
// Create creats a specific kafka topic.
func (h *KafkaTopicsHandler) Create(project, service string, req CreateKafkaTopicRequest) error {
path := buildPath("project", project, "service", service, "topic")
bts, err := h.client.doPostRequest(path, req)
if err != nil {
return err
}
return checkAPIResponse(bts, nil)
}
// Get gets a specific kafka topic.
func (h *KafkaTopicsHandler) Get(project, service, topic string) (*KafkaTopic, error) {
path := buildPath("project", project, "service", service, "topic", topic)
bts, err := h.client.doGetRequest(path, nil)
if err != nil {
return nil, err
}
var r KafkaTopicResponse
errR := checkAPIResponse(bts, &r)
return r.Topic, errR
}
// List lists all the kafka topics.
func (h *KafkaTopicsHandler) List(project, service string) ([]*KafkaListTopic, error) {
path := buildPath("project", project, "service", service, "topic")
bts, err := h.client.doGetRequest(path, nil)
if err != nil {
return nil, err
}
var r KafkaTopicsResponse
errR := checkAPIResponse(bts, &r)
return r.Topics, errR
}
// Update updates a specific topic with the given parameters.
func (h *KafkaTopicsHandler) Update(project, service, topic string, req UpdateKafkaTopicRequest) error {
path := buildPath("project", project, "service", service, "topic", topic)
bts, err := h.client.doPutRequest(path, req)
if err != nil {
return err
}
return checkAPIResponse(bts, nil)
}
// Delete deletes a specific kafka topic.
func (h *KafkaTopicsHandler) Delete(project, service, topic string) error {
path := buildPath("project", project, "service", service, "topic", topic)
bts, err := h.client.doDeleteRequest(path, nil)
if err != nil {
return err
}
return checkAPIResponse(bts, nil)
}
// V2List lists selected kafka topics using v2 API endpoint.
func (h *KafkaTopicsHandler) V2List(project, service string, topics []string) ([]*KafkaTopic, error) {
type v2ListRequest struct {
TopicNames []string `json:"topic_names"`
}
req := v2ListRequest{TopicNames: topics}
path := buildPath("project", project, "service", service, "topic")
bts, err := h.client.doV2PostRequest(path, req)
if err != nil {
return nil, err
}
var r KafkaV2TopicsResponse
errR := checkAPIResponse(bts, &r)
return r.Topics, errR
}