forked from jsvisa/Burrow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
http_server.go
500 lines (450 loc) · 16.6 KB
/
http_server.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
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
/* Copyright 2015 LinkedIn Corp. Licensed under the Apache License, Version
* 2.0 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
package main
import (
"encoding/json"
"github.com/linkedin/Burrow/protocol"
"io"
"net/http"
"os"
"strings"
"net"
"time"
log "github.com/cihub/seelog"
)
type HttpServer struct {
app *ApplicationContext
mux *http.ServeMux
}
type appHandler struct {
app *ApplicationContext
handler func(*ApplicationContext, http.ResponseWriter, *http.Request) (int, string)
}
// tcpKeepAliveListener sets TCP keep-alive timeouts on accepted
// connections. It's used by ListenAndServe and ListenAndServeTLS so
// dead TCP connections (e.g. closing laptop mid-download) eventually
// go away.
type tcpKeepAliveListener struct {
*net.TCPListener
}
func (ln tcpKeepAliveListener) Accept() (c net.Conn, err error) {
tc, err := ln.AcceptTCP()
if err != nil {
return
}
tc.SetKeepAlive(true)
tc.SetKeepAlivePeriod(3 * time.Minute)
return tc, nil
}
func NewHttpServer(app *ApplicationContext) (*HttpServer, error) {
server := &HttpServer{
app: app,
mux: http.NewServeMux(),
}
// This is a catchall for undefined URLs
server.mux.HandleFunc("/", handleDefault)
// This is a healthcheck URL. Please don't change it
server.mux.HandleFunc("/burrow/admin", handleAdmin)
// All valid paths go here. Make sure they use the right handler
server.mux.Handle("/v2/kafka", appHandler{server.app, handleClusterList})
server.mux.Handle("/v2/kafka/", appHandler{server.app, handleKafka})
server.mux.Handle("/v2/zookeeper", appHandler{server.app, handleClusterList})
// server.mux.Handle("/v2/zookeeper/", appHandler{server.app, handleZookeeper})
listeners := make([]net.Listener, 0, len(server.app.Config.Httpserver.Listen))
for _, listenAddress := range server.app.Config.Httpserver.Listen {
ln, err := net.Listen("tcp", listenAddress)
if err != nil {
for _, listenerToClose := range listeners {
closeErr := listenerToClose.Close()
if closeErr != nil {
log.Errorf("Could not close listener: %v", closeErr)
}
}
return nil, err
}
listeners = append(listeners, tcpKeepAliveListener{ln.(*net.TCPListener)})
}
httpServer := &http.Server{Handler: server.mux}
for _, listener := range listeners {
go httpServer.Serve(listener)
}
return server, nil
}
func (ah appHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "application/json")
switch {
case r.Method == "GET":
if status, err := ah.handler(ah.app, w, r); status != 200 {
http.Error(w, err, status)
} else {
io.WriteString(w, err)
}
case r.Method == "DELETE":
// Later we can add authentication here
if status, err := ah.handler(ah.app, w, r); status != 200 {
http.Error(w, err, status)
} else {
io.WriteString(w, err)
}
default:
http.Error(w, "{\"error\":true,\"message\":\"request method not supported\",\"result\":{}}", http.StatusMethodNotAllowed)
}
}
// This is a catch-all handler for unknown URLs. It should return a 404
func handleDefault(w http.ResponseWriter, r *http.Request) {
http.Error(w, "{\"error\":true,\"message\":\"invalid request type\",\"result\":{}}", http.StatusNotFound)
}
func handleAdmin(w http.ResponseWriter, r *http.Request) {
if r.Method != "GET" {
http.Error(w, "{\"error\":true,\"message\":\"request method not supported\",\"result\":{}}", http.StatusMethodNotAllowed)
}
io.WriteString(w, "GOOD")
}
type HTTPResponseRequestInfo struct {
URI string `json:"url"`
Host string `json:"host"`
Cluster string `json:"cluster"`
Group string `json:"group"`
Topic string `json:"topic"`
}
type HTTPResponseError struct {
Error bool `json:"error"`
Message string `json:"message"`
Result map[string]string `json:"result"`
Request HTTPResponseRequestInfo `json:"request"`
}
type HTTPResponseClusterDetailCluster struct {
Zookeepers []string `json:"zookeepers"`
ZookeeperPort int `json:"zookeeper_port"`
ZookeeperPath string `json:"zookeeper_path"`
Brokers []string `json:"brokers"`
BrokerPort int `json:"broker_port"`
OffsetsTopic string `json:"offsets_topic"`
}
type HTTPResponseClusterDetail struct {
Error bool `json:"error"`
Message string `json:"message"`
Cluster HTTPResponseClusterDetailCluster `json:"cluster"`
Request HTTPResponseRequestInfo `json:"request"`
}
type HTTPResponseClusterList struct {
Error bool `json:"error"`
Message string `json:"message"`
Clusters []string `json:"clusters"`
Request HTTPResponseRequestInfo `json:"request"`
}
type HTTPResponseTopicList struct {
Error bool `json:"error"`
Message string `json:"message"`
Topics []string `json:"topics"`
Request HTTPResponseRequestInfo `json:"request"`
}
type HTTPResponseTopicDetail struct {
Error bool `json:"error"`
Message string `json:"message"`
Offsets []int64 `json:"offsets"`
Request HTTPResponseRequestInfo `json:"request"`
}
type HTTPResponseConsumerList struct {
Error bool `json:"error"`
Message string `json:"message"`
Consumers []string `json:"consumers"`
Request HTTPResponseRequestInfo `json:"request"`
}
type HTTPResponseConsumerStatus struct {
Error bool `json:"error"`
Message string `json:"message"`
Status protocol.ConsumerGroupStatus `json:"status"`
Request HTTPResponseRequestInfo `json:"request"`
}
func makeRequestInfo(r *http.Request) HTTPResponseRequestInfo {
hostname, _ := os.Hostname()
return HTTPResponseRequestInfo{
URI: r.URL.Path,
Host: hostname,
}
}
func makeErrorResponse(errValue int, message string, w http.ResponseWriter, r *http.Request) (int, string) {
rv := HTTPResponseError{
Error: true,
Message: message,
Request: makeRequestInfo(r),
}
jsonStr, err := json.Marshal(rv)
if err != nil {
return http.StatusInternalServerError, "{\"error\":true,\"message\":\"could not encode JSON\",\"result\":{}}"
} else {
w.Write(jsonStr)
return errValue, ""
}
}
func handleClusterList(app *ApplicationContext, w http.ResponseWriter, r *http.Request) (int, string) {
if r.Method != "GET" {
return makeErrorResponse(http.StatusMethodNotAllowed, "request method not supported", w, r)
}
clusterList := make([]string, len(app.Config.Kafka))
i := 0
for cluster, _ := range app.Config.Kafka {
clusterList[i] = cluster
i++
}
requestInfo := makeRequestInfo(r)
jsonStr, err := json.Marshal(HTTPResponseClusterList{
Error: false,
Message: "cluster list returned",
Clusters: clusterList,
Request: requestInfo,
})
if err != nil {
return http.StatusInternalServerError, "{\"error\":true,\"message\":\"could not encode JSON\",\"result\":{}}"
}
w.Write(jsonStr)
return 200, ""
}
// This is a router for all requests that operate against Kafka clusters (/v2/kafka/...)
func handleKafka(app *ApplicationContext, w http.ResponseWriter, r *http.Request) (int, string) {
pathParts := strings.Split(r.URL.Path[1:], "/")
if _, ok := app.Config.Kafka[pathParts[2]]; !ok {
return makeErrorResponse(http.StatusNotFound, "cluster not found", w, r)
}
if pathParts[2] == "" {
// Allow a trailing / on requests
return handleClusterList(app, w, r)
}
if (len(pathParts) == 3) || (pathParts[3] == "") {
return handleClusterDetail(app, w, r, pathParts[2])
}
switch pathParts[3] {
case "consumer":
switch {
case r.Method == "DELETE":
switch {
case (len(pathParts) == 5) || (pathParts[5] == ""):
return handleConsumerDrop(app, w, r, pathParts[2], pathParts[4])
default:
return makeErrorResponse(http.StatusMethodNotAllowed, "request method not supported", w, r)
}
case r.Method == "GET":
switch {
case (len(pathParts) == 4) || (pathParts[4] == ""):
return handleConsumerList(app, w, r, pathParts[2])
case (len(pathParts) == 5) || (pathParts[5] == ""):
// Consumer detail - list of consumer streams/hosts? Can be config info later
return makeErrorResponse(http.StatusNotFound, "unknown API call", w, r)
case pathParts[5] == "topic":
switch {
case (len(pathParts) == 6) || (pathParts[6] == ""):
return handleConsumerTopicList(app, w, r, pathParts[2], pathParts[4])
case (len(pathParts) == 7) || (pathParts[7] == ""):
return handleConsumerTopicDetail(app, w, r, pathParts[2], pathParts[4], pathParts[6])
}
case pathParts[5] == "status":
return handleConsumerStatus(app, w, r, pathParts[2], pathParts[4], false)
case pathParts[5] == "lag":
return handleConsumerStatus(app, w, r, pathParts[2], pathParts[4], true)
}
default:
return makeErrorResponse(http.StatusMethodNotAllowed, "request method not supported", w, r)
}
case "topic":
switch {
case r.Method != "GET":
return makeErrorResponse(http.StatusMethodNotAllowed, "request method not supported", w, r)
case (len(pathParts) == 4) || (pathParts[4] == ""):
return handleBrokerTopicList(app, w, r, pathParts[2])
case (len(pathParts) == 5) || (pathParts[5] == ""):
return handleBrokerTopicDetail(app, w, r, pathParts[2], pathParts[4])
}
case "offsets":
// Reserving this endpoint to implement later
return makeErrorResponse(http.StatusNotFound, "unknown API call", w, r)
}
// If we fell through, return a 404
return makeErrorResponse(http.StatusNotFound, "unknown API call", w, r)
}
func handleClusterDetail(app *ApplicationContext, w http.ResponseWriter, r *http.Request, cluster string) (int, string) {
// Clearly show the root path in ZK (which we have a blank for after config)
zkPath := app.Config.Kafka[cluster].ZookeeperPath
if zkPath == "" {
zkPath = "/"
}
requestInfo := makeRequestInfo(r)
requestInfo.Cluster = cluster
jsonStr, err := json.Marshal(HTTPResponseClusterDetail{
Request: requestInfo,
Error: false,
Message: "cluster detail returned",
Cluster: HTTPResponseClusterDetailCluster{
Zookeepers: app.Config.Kafka[cluster].Zookeepers,
ZookeeperPort: app.Config.Kafka[cluster].ZookeeperPort,
ZookeeperPath: zkPath,
Brokers: app.Config.Kafka[cluster].Brokers,
BrokerPort: app.Config.Kafka[cluster].BrokerPort,
OffsetsTopic: app.Config.Kafka[cluster].OffsetsTopic,
},
})
if err != nil {
return http.StatusInternalServerError, "{\"error\":true,\"message\":\"could not encode JSON\",\"result\":{}}"
}
w.Write(jsonStr)
return 200, ""
}
func handleConsumerList(app *ApplicationContext, w http.ResponseWriter, r *http.Request, cluster string) (int, string) {
storageRequest := &RequestConsumerList{Result: make(chan []string), Cluster: cluster}
app.Storage.requestChannel <- storageRequest
requestInfo := makeRequestInfo(r)
requestInfo.Cluster = cluster
jsonStr, err := json.Marshal(HTTPResponseConsumerList{
Error: false,
Request: requestInfo,
Message: "consumer list returned",
Consumers: <-storageRequest.Result,
})
if err != nil {
return http.StatusInternalServerError, "{\"error\":true,\"message\":\"could not encode JSON\",\"result\":{}}"
}
w.Write(jsonStr)
return 200, ""
}
func handleConsumerTopicList(app *ApplicationContext, w http.ResponseWriter, r *http.Request, cluster string, group string) (int, string) {
storageRequest := &RequestTopicList{Result: make(chan *ResponseTopicList), Cluster: cluster, Group: group}
app.Storage.requestChannel <- storageRequest
result := <-storageRequest.Result
if result.Error {
return makeErrorResponse(http.StatusNotFound, "consumer group not found", w, r)
}
requestInfo := makeRequestInfo(r)
requestInfo.Cluster = cluster
requestInfo.Group = group
jsonStr, err := json.Marshal(HTTPResponseTopicList{
Error: false,
Message: "consumer topic list returned",
Topics: result.TopicList,
Request: requestInfo,
})
if err != nil {
return http.StatusInternalServerError, "{\"error\":true,\"message\":\"could not encode JSON\",\"result\":{}}"
}
w.Write(jsonStr)
return 200, ""
}
func handleConsumerTopicDetail(app *ApplicationContext, w http.ResponseWriter, r *http.Request, cluster string, group string, topic string) (int, string) {
storageRequest := &RequestOffsets{Result: make(chan *ResponseOffsets), Cluster: cluster, Topic: topic, Group: group}
app.Storage.requestChannel <- storageRequest
result := <-storageRequest.Result
if result.ErrorGroup {
return makeErrorResponse(http.StatusNotFound, "consumer group not found", w, r)
}
if result.ErrorTopic {
return makeErrorResponse(http.StatusNotFound, "topic not found for consumer group", w, r)
}
requestInfo := makeRequestInfo(r)
requestInfo.Cluster = cluster
requestInfo.Group = group
requestInfo.Topic = topic
jsonStr, err := json.Marshal(HTTPResponseTopicDetail{
Error: false,
Message: "consumer group topic offsets returned",
Offsets: result.OffsetList,
Request: requestInfo,
})
if err != nil {
return http.StatusInternalServerError, "{\"error\":true,\"message\":\"could not encode JSON\",\"result\":{}}"
}
w.Write(jsonStr)
return 200, ""
}
func handleConsumerStatus(app *ApplicationContext, w http.ResponseWriter, r *http.Request, cluster string, group string, showall bool) (int, string) {
storageRequest := &RequestConsumerStatus{Result: make(chan *protocol.ConsumerGroupStatus), Cluster: cluster, Group: group, Showall: showall}
app.Storage.requestChannel <- storageRequest
result := <-storageRequest.Result
if result.Status == protocol.StatusNotFound {
return makeErrorResponse(http.StatusNotFound, "consumer group not found", w, r)
}
requestInfo := makeRequestInfo(r)
requestInfo.Cluster = cluster
requestInfo.Group = group
jsonStr, err := json.Marshal(HTTPResponseConsumerStatus{
Error: false,
Message: "consumer group status returned",
Status: *result,
Request: requestInfo,
})
if err != nil {
return http.StatusInternalServerError, "{\"error\":true,\"message\":\"could not encode JSON\",\"result\":{}}"
}
w.Write(jsonStr)
return 200, ""
}
func handleConsumerDrop(app *ApplicationContext, w http.ResponseWriter, r *http.Request, cluster string, group string) (int, string) {
storageRequest := &RequestConsumerDrop{Result: make(chan protocol.StatusConstant), Cluster: cluster, Group: group}
app.Storage.requestChannel <- storageRequest
result := <-storageRequest.Result
if result == protocol.StatusNotFound {
return makeErrorResponse(http.StatusNotFound, "consumer group not found", w, r)
}
requestInfo := makeRequestInfo(r)
requestInfo.Cluster = cluster
requestInfo.Group = group
jsonStr, err := json.Marshal(HTTPResponseError{
Error: false,
Message: "consumer group removed",
Request: requestInfo,
})
if err != nil {
return http.StatusInternalServerError, "{\"error\":true,\"message\":\"could not encode JSON\",\"result\":{}}"
} else {
w.Write(jsonStr)
return 200, ""
}
}
func handleBrokerTopicList(app *ApplicationContext, w http.ResponseWriter, r *http.Request, cluster string) (int, string) {
storageRequest := &RequestTopicList{Result: make(chan *ResponseTopicList), Cluster: cluster}
app.Storage.requestChannel <- storageRequest
result := <-storageRequest.Result
requestInfo := makeRequestInfo(r)
requestInfo.Cluster = cluster
jsonStr, err := json.Marshal(HTTPResponseTopicList{
Error: false,
Message: "broker topic list returned",
Topics: result.TopicList,
Request: requestInfo,
})
if err != nil {
return http.StatusInternalServerError, "{\"error\":true,\"message\":\"could not encode JSON\",\"result\":{}}"
}
w.Write(jsonStr)
return 200, ""
}
func handleBrokerTopicDetail(app *ApplicationContext, w http.ResponseWriter, r *http.Request, cluster string, topic string) (int, string) {
storageRequest := &RequestOffsets{Result: make(chan *ResponseOffsets), Cluster: cluster, Topic: topic}
app.Storage.requestChannel <- storageRequest
result := <-storageRequest.Result
if result.ErrorTopic {
return makeErrorResponse(http.StatusNotFound, "topic not found", w, r)
}
requestInfo := makeRequestInfo(r)
requestInfo.Cluster = cluster
requestInfo.Topic = topic
jsonStr, err := json.Marshal(HTTPResponseTopicDetail{
Error: false,
Message: "broker topic offsets returned",
Offsets: result.OffsetList,
Request: requestInfo,
})
if err != nil {
return http.StatusInternalServerError, "{\"error\":true,\"message\":\"could not encode JSON\",\"result\":{}}"
}
w.Write(jsonStr)
return 200, ""
}
func (server *HttpServer) Stop() {
// Nothing to do right now
}