forked from signal18/replication-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
arbitrator.go
401 lines (357 loc) · 9.93 KB
/
arbitrator.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
package main
import (
"bytes"
"encoding/json"
"io"
"io/ioutil"
"net/http"
"strconv"
"strings"
"time"
"github.com/gorilla/mux"
_ "github.com/mattn/go-sqlite3"
log "github.com/Sirupsen/logrus"
"github.com/spf13/cobra"
"github.com/tanji/replication-manager/cluster"
"github.com/tanji/replication-manager/dbhelper"
)
type route struct {
Name string
Method string
Pattern string
HandlerFunc http.HandlerFunc
}
type routes []route
func newRouter() *mux.Router {
router := mux.NewRouter().StrictSlash(true)
for _, r := range rs {
router.
Methods(r.Method).
Path(r.Pattern).
Name(r.Name).
Handler(r.HandlerFunc)
}
return router
}
var rs = routes{
route{
"Heartbeat",
"POST",
"/heartbeat",
handlerHeartbeat,
},
route{
"Arbitrator",
"POST",
"/arbitrator",
handlerArbitrator,
},
route{
"Forget",
"PST",
"/forget/",
handlerForget,
},
}
type heartbeat struct {
UUID string `json:"uuid"`
Secret string `json:"secret"`
Cluster string `json:"cluster"`
Master string `json:"master"`
UID int `json:"id"`
Status string `json:"status"`
Hosts int `json:"hosts"`
Failed int `json:"failed"`
}
type response struct {
Arbitration string `json:"arbitration"`
ElectedMaster string `json:"master"`
}
var (
arbitratorPort int
)
func init() {
rootCmd.AddCommand(arbitratorCmd)
arbitratorCmd.Flags().IntVar(&arbitratorPort, "arbitrator-port", 8080, "Arbitrator API port")
}
var arbitratorCmd = &cobra.Command{
Use: "arbitrator",
Short: "Arbitrator environment",
Long: `The arbitrator is used for false positive detection`,
Run: func(cmd *cobra.Command, args []string) {
currentCluster = new(cluster.Cluster)
var err error
db, err := currentCluster.InitAgent(confs["arbitrator"])
if err != nil {
panic(err)
}
currentCluster.SetLogStdout()
err = dbhelper.SetHeartbeatTable(db)
if err != nil {
log.WithError(err).Error("Error creating tables")
}
//http.HandleFunc("/heartbeat/", handlerHeartbeat)
// http.HandleFunc("/abritrator/", handlerArbitrator)
router := newRouter()
log.Fatal(http.ListenAndServe("0.0.0.0:"+strconv.Itoa(arbitratorPort), router))
},
}
func handlerArbitrator(w http.ResponseWriter, r *http.Request) {
var h heartbeat
body, err := ioutil.ReadAll(io.LimitReader(r.Body, 1048576))
if err != nil {
panic(err)
}
if err := r.Body.Close(); err != nil {
panic(err)
}
log.Info("Arbitration request received: ", string(body))
if err := json.Unmarshal(body, &h); err != nil {
w.Header().Set("Content-Type", "application/json; charset=UTF-8")
w.WriteHeader(422) // unprocessable entity
if err = json.NewEncoder(w).Encode(err); err != nil {
panic(err)
}
}
var send response
currentCluster = new(cluster.Cluster)
db, err := dbhelper.MemDBConnect()
defer db.Close()
res := dbhelper.RequestArbitration(db, h.UUID, h.Secret, h.Cluster, h.Master, h.UID, h.Hosts, h.Failed)
electedmaster := dbhelper.GetArbitrationMaster(db, h.Secret, h.Cluster)
if res {
send.Arbitration = "winner"
send.ElectedMaster = electedmaster
} else {
send.Arbitration = "looser"
send.ElectedMaster = electedmaster
}
w.Header().Set("Content-Type", "application/json; charset=UTF-8")
w.WriteHeader(http.StatusCreated)
if err := json.NewEncoder(w).Encode(send); err != nil {
panic(err)
}
}
func handlerHeartbeat(w http.ResponseWriter, r *http.Request) {
var h heartbeat
body, err := ioutil.ReadAll(io.LimitReader(r.Body, 1048576))
if err != nil {
panic(err)
}
//log.Printf("INFO: Hearbeat receive:%s", string(body))
if err := r.Body.Close(); err != nil {
panic(err)
}
if err := json.Unmarshal(body, &h); err != nil {
w.Header().Set("Content-Type", "application/json; charset=UTF-8")
w.WriteHeader(422) // unprocessable entity
if err = json.NewEncoder(w).Encode(err); err != nil {
panic(err)
}
return
}
currentCluster = new(cluster.Cluster)
var send string
db, err := dbhelper.MemDBConnect()
defer db.Close()
res := dbhelper.WriteHeartbeat(db, h.UUID, h.Secret, h.Cluster, h.Master, h.UID, h.Hosts, h.Failed)
if res == nil {
send = `{"heartbeat":"succed"}`
} else {
log.Error("Error writing heartbeat, reason: ", res)
send = `{"heartbeat":"failed"}`
}
w.Header().Set("Content-Type", "application/json; charset=UTF-8")
if err := json.NewEncoder(w).Encode(send); err != nil {
panic(err)
}
}
func handlerForget(w http.ResponseWriter, r *http.Request) {
var h heartbeat
body, err := ioutil.ReadAll(io.LimitReader(r.Body, 1048576))
if err != nil {
panic(err)
}
//log.Printf("INFO: Hearbeat receive:%s", string(body))
if err = r.Body.Close(); err != nil {
panic(err)
}
if err = json.Unmarshal(body, &h); err != nil {
w.Header().Set("Content-Type", "application/json; charset=UTF-8")
w.WriteHeader(422) // unprocessable entity
if err = json.NewEncoder(w).Encode(err); err != nil {
panic(err)
}
return
}
currentCluster = new(cluster.Cluster)
var send string
db, err := dbhelper.MemDBConnect()
defer db.Close()
res := dbhelper.ForgetArbitration(db, h.Secret)
if res == nil {
send = `{"heartbeat":"succed"}`
} else {
send = `{"heartbeat":"failed"}`
}
w.Header().Set("Content-Type", "application/json; charset=UTF-8")
if err := json.NewEncoder(w).Encode(send); err != nil {
panic(err)
}
}
func fHeartbeat() {
if cfgGroup == "arbitrator" {
return
}
bcksplitbrain := splitBrain
var peerList []string
// try to found an active peer replication-manager
if conf.ArbitrationPeerHosts != "" {
peerList = strings.Split(conf.ArbitrationPeerHosts, ",")
} else {
return
}
splitBrain = true
timeout := time.Duration(2 * time.Second)
for _, peer := range peerList {
url := "http://" + peer + "/heartbeat"
client := &http.Client{
Timeout: timeout,
}
// Send the request via a client
// Do sends an HTTP request and
// returns an HTTP response
// Build the request
req, err := http.NewRequest("GET", url, nil)
if err != nil {
if bcksplitbrain == false {
currentCluster.LogPrintf("ERROR: %s", err)
}
continue
}
resp, err := client.Do(req)
if err != nil {
if bcksplitbrain == false {
currentCluster.LogPrintf("ERROR: %s", err)
}
continue
}
// Callers should close resp.Body
// when done reading from it
// Defer the closing of the body
defer resp.Body.Close()
monjson, err := ioutil.ReadAll(resp.Body)
if err != nil {
currentCluster.LogPrintf("ERROR: %s", err)
}
// Use json.Decode for reading streams of JSON data
var h heartbeat
if err := json.Unmarshal(monjson, &h); err != nil {
currentCluster.LogPrintf("ERROR: %s", err)
} else {
splitBrain = false
if conf.LogLevel > 3 {
currentCluster.LogPrintf("RETURN :%s", h)
}
if h.Status == "S" {
runStatus = "A"
} else {
runStatus = "S"
}
}
}
if splitBrain {
if bcksplitbrain != splitBrain {
currentCluster.LogPrintf("INFO : Splitbrain")
}
// report to arbitrator
for _, cl := range clusters {
if cl.LostMajority() {
if bcksplitbrain != splitBrain {
currentCluster.LogPrintf("INFO : Database cluster lost majority ")
}
}
url := "http://" + conf.ArbitrationSasHosts + "/heartbeat"
var mst string
if cl.GetMaster() != nil {
mst = cl.GetMaster().URL
}
var jsonStr = []byte(`{"uuid":"` + runUUID + `","secret":"` + conf.ArbitrationSasSecret + `","cluster":"` + cl.GetName() + `","master":"` + mst + `","id":` + strconv.Itoa(conf.ArbitrationSasUniqueId) + `,"status":"` + runStatus + `","hosts":` + strconv.Itoa(len(cl.GetServers())) + `,"failed":` + strconv.Itoa(cl.CountFailed(cl.GetServers())) + `}`)
req, err := http.NewRequest("POST", url, bytes.NewBuffer(jsonStr))
req.Header.Set("X-Custom-Header", "myvalue")
req.Header.Set("Content-Type", "application/json")
client := &http.Client{Timeout: timeout}
resp, err := client.Do(req)
if err != nil {
cl.LogPrintf("ERROR: %s", err.Error())
cl.SetActiveStatus("S")
runStatus = "S"
return
}
defer resp.Body.Close()
}
// give a chance to other partitions to report if just happened
if bcksplitbrain != splitBrain {
time.Sleep(5 * time.Second)
}
// request arbitration for all cluster
for _, cl := range clusters {
if bcksplitbrain != splitBrain {
cl.LogPrintf("INFO : External Arbitration check requested")
}
url := "http://" + conf.ArbitrationSasHosts + "/arbitrator"
var mst string
if cl.GetMaster() != nil {
mst = cl.GetMaster().URL
}
var jsonStr = []byte(`{"uuid":"` + runUUID + `","secret":"` + conf.ArbitrationSasSecret + `","cluster":"` + cl.GetName() + `","master":"` + mst + `","id":` + strconv.Itoa(conf.ArbitrationSasUniqueId) + `,"status":"` + runStatus + `","hosts":` + strconv.Itoa(len(cl.GetServers())) + `,"failed":` + strconv.Itoa(cl.CountFailed(cl.GetServers())) + `}`)
req, err := http.NewRequest("POST", url, bytes.NewBuffer(jsonStr))
req.Header.Set("X-Custom-Header", "myvalue")
req.Header.Set("Content-Type", "application/json")
client := &http.Client{Timeout: timeout}
resp, err := client.Do(req)
if err != nil {
cl.LogPrintf("ERROR: %s", err.Error())
cl.SetActiveStatus("S")
cl.SetMasterReadOnly()
runStatus = "S"
return
}
defer resp.Body.Close()
body, _ := ioutil.ReadAll(resp.Body)
type response struct {
Arbitration string `json:"arbitration"`
Master string `json:"master"`
}
var r response
err = json.Unmarshal(body, &r)
if err != nil {
cl.LogPrintf("ERROR: Arbitrator says invalid JSON")
cl.SetActiveStatus("S")
cl.SetMasterReadOnly()
runStatus = "S"
return
}
if r.Arbitration == "winner" {
if bcksplitbrain != splitBrain {
cl.LogPrintf("INFO : Arbitrator says winner")
}
cl.SetActiveStatus("A")
runStatus = "A"
return
}
if bcksplitbrain != splitBrain {
cl.LogPrintf("INFO : Arbitrator says loser")
if cl.GetMaster() != nil {
mst = cl.GetMaster().URL
}
if r.Master != mst {
cl.SetMasterReadOnly()
}
}
cl.SetActiveStatus("S")
runStatus = "S"
return
}
}
}