forked from lni/dragonboat
-
Notifications
You must be signed in to change notification settings - Fork 1
/
transport.go
567 lines (524 loc) · 16.6 KB
/
transport.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
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
// Copyright 2014 The Cockroach Authors.
//
// 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. See the License for the specific language governing
// permissions and limitations under the License.
//
//
//
// Copyright 2017-2019 Lei Ni (nilei81@gmail.com)
//
// 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.
// See the License for the specific language governing permissions and
// limitations under the License.
//
//
// This file contains code derived from CockroachDB. The async send message
// pattern used in ASyncSend/connectAndProcess/connectAndProcess is similar
// to the one used in CockroachDB.
//
/*
Package transport implements the transport component used for exchanging
Raft messages between NodeHosts.
This package is internally used by Dragonboat, applications are not expected
to import this package.
*/
package transport
import (
"context"
"errors"
"sync"
"sync/atomic"
"time"
"github.com/lni/dragonboat/config"
"github.com/lni/dragonboat/internal/server"
"github.com/lni/dragonboat/internal/settings"
"github.com/lni/dragonboat/internal/utils/logutil"
"github.com/lni/dragonboat/internal/utils/netutil"
"github.com/lni/dragonboat/internal/utils/netutil/rubyist/circuitbreaker"
"github.com/lni/dragonboat/internal/utils/syncutil"
"github.com/lni/dragonboat/logger"
"github.com/lni/dragonboat/raftio"
pb "github.com/lni/dragonboat/raftpb"
)
const (
// https://godoc.org/google.golang.org/grpc#ServerOption
rpcMaxMsgSize = settings.MaxMessageSize
// UnmanagedDeploymentID is the special DeploymentID used when the system is
// not managed by master servers.
UnmanagedDeploymentID = uint64(1)
)
var (
lazyFreeCycle = settings.Soft.LazyFreeCycle
)
var (
plog = logger.GetLogger("transport")
snapChunkSize = settings.SnapshotChunkSize
rpcStreamConnections = settings.Soft.StreamConnections
rpcSendBufSize = settings.Soft.SendQueueLength
errChunkSendSkipped = errors.New("chunk is skipped")
errBatchSendSkipped = errors.New("raft request batch is skipped")
dialTimeoutSecond = settings.Soft.GetConnectedTimeoutSecond
// max number of RaftSnapshotChunk that can be buffered in each channel, note
// that the vast majority of those chunks won't be actually buffered in the
// channel.
snapSendBufSize = settings.Soft.SnapshotSendQueueLength
idleTimeout = time.Minute
)
// INodeAddressResolver converts the (cluster id, node id( tuple to network
// address
type INodeAddressResolver interface {
Resolve(uint64, uint64) (string, string, error)
ReverseResolve(string) []raftio.NodeInfo
AddRemoteAddress(uint64, uint64, string)
}
// IRaftMessageHandler is the interface required to handle incoming raft
// requests.
type IRaftMessageHandler interface {
HandleMessageBatch(batch pb.MessageBatch)
HandleUnreachable(clusterID uint64, nodeID uint64)
HandleSnapshotStatus(clusterID uint64, nodeID uint64, rejected bool)
HandleSnapshot(clusterID uint64, nodeID uint64, from uint64)
}
// ITransport is the interface of the transport layer used for exchanging
// Raft messages.
type ITransport interface {
Name() string
SetUnmanagedDeploymentID()
SetDeploymentID(uint64)
SetMessageHandler(IRaftMessageHandler)
RemoveMessageHandler()
ASyncSend(pb.Message) bool
ASyncSendSnapshot(pb.Message) bool
Stop()
}
//
// funcs used in mainly in testing
//
type onStreamChunkSentFunc func(pb.SnapshotChunk)
// StreamChunkSendFunc is a func type that is used to determine whether a
// snapshot chunk should indeed be sent. This func is used in test only.
type StreamChunkSendFunc func(pb.SnapshotChunk) (pb.SnapshotChunk, bool)
// SendMessageBatchFunc is a func type that is used to determine whether the
// specified message batch should be sent. This func is used in test only.
type SendMessageBatchFunc func(pb.MessageBatch) (pb.MessageBatch, bool)
// DeploymentID struct is the manager type used to manage the deployment id
// value.
type DeploymentID struct {
deploymentID uint64
}
func (d *DeploymentID) deploymentIDSet() bool {
v := atomic.LoadUint64(&d.deploymentID)
return v != 0
}
// SetUnmanagedDeploymentID sets the deployment id to indicate that the user
// is not managed.
func (d *DeploymentID) SetUnmanagedDeploymentID() {
d.SetDeploymentID(UnmanagedDeploymentID)
}
// SetDeploymentID sets the deployment id to the specified value.
func (d *DeploymentID) SetDeploymentID(x uint64) {
v := atomic.LoadUint64(&d.deploymentID)
if v != 0 {
panic("trying to set deployment id again")
} else {
atomic.StoreUint64(&d.deploymentID, x)
}
}
func (d *DeploymentID) getDeploymentID() uint64 {
return atomic.LoadUint64(&d.deploymentID)
}
// Transport is the transport layer for delivering raft messages and snapshots.
type Transport struct {
DeploymentID
mu struct {
sync.Mutex
// each (cluster id, node id) pair has its own queue and breaker
queues map[string]chan pb.Message
chunks map[string]chan pb.SnapshotChunk
chunksClose map[string]chan struct{}
breakers map[string]*circuit.Breaker
}
serverCtx *server.Context
nhConfig config.NodeHostConfig
sourceAddress string
resolver INodeAddressResolver
stopper *syncutil.Stopper
snapshotLocator server.GetSnapshotDirFunc
raftRPC raftio.IRaftRPC
handlerRemovedFlag uint32
handler atomic.Value
streamChunkSent onStreamChunkSentFunc
preStreamChunkSend atomic.Value // StreamChunkSendFunc
preSendMessageBatch atomic.Value // SendMessageBatchFunc
ctx context.Context
cancel context.CancelFunc
snapshotCount int32
streamConnections uint64
snapshotQueueMu sync.Mutex
}
// NewTransport creates a new Transport object.
func NewTransport(nhConfig config.NodeHostConfig, ctx *server.Context,
resolver INodeAddressResolver, locator server.GetSnapshotDirFunc) *Transport {
address := nhConfig.RaftAddress
stopper := syncutil.NewStopper()
t := &Transport{
nhConfig: nhConfig,
serverCtx: ctx,
sourceAddress: address,
resolver: resolver,
stopper: stopper,
snapshotLocator: locator,
streamConnections: rpcStreamConnections,
}
sinkFactory := func() raftio.IChunkSink {
return newSnapshotChunks(t.handleRequest,
t.snapshotReceived, t.getDeploymentID, t.snapshotLocator)
}
raftRPC := createTransportRPC(nhConfig, t.handleRequest, sinkFactory)
plog.Infof("Raft RPC type: %s", raftRPC.Name())
t.raftRPC = raftRPC
if err := t.raftRPC.Start(); err != nil {
panic(err)
}
t.ctx, t.cancel = context.WithCancel(context.Background())
t.mu.queues = make(map[string]chan pb.Message)
t.mu.chunks = make(map[string]chan pb.SnapshotChunk)
t.mu.chunksClose = make(map[string]chan struct{})
t.mu.breakers = make(map[string]*circuit.Breaker)
return t
}
// Name returns the type name of the transport module
func (t *Transport) Name() string {
return t.raftRPC.Name()
}
// GetRaftRPC returns the raft RPC instance.
func (t *Transport) GetRaftRPC() raftio.IRaftRPC {
return t.raftRPC
}
// SetPreSendMessageBatchHook set the SendMessageBatch hook.
// This function is only expected to be used in monkey testing.
func (t *Transport) SetPreSendMessageBatchHook(h SendMessageBatchFunc) {
t.preSendMessageBatch.Store(h)
}
// SetPreStreamChunkSendHook sets the StreamChunkSend hook function that will
// be called before each snapshot chunk is sent.
func (t *Transport) SetPreStreamChunkSendHook(h StreamChunkSendFunc) {
t.preStreamChunkSend.Store(h)
}
// Stop stops the Transport object.
func (t *Transport) Stop() {
t.cancel()
t.stopper.Stop()
t.raftRPC.Stop()
}
// GetCircuitBreaker returns the circuit breaker used for the specified
// target node.
func (t *Transport) GetCircuitBreaker(key string) *circuit.Breaker {
t.mu.Lock()
breaker, ok := t.mu.breakers[key]
if !ok {
breaker = netutil.NewBreaker()
t.mu.breakers[key] = breaker
}
t.mu.Unlock()
return breaker
}
// SetMessageHandler sets the raft message handler.
func (t *Transport) SetMessageHandler(handler IRaftMessageHandler) {
v := t.handler.Load()
if v != nil {
panic("trying to set the grpctransport handler again")
}
t.handler.Store(handler)
}
// RemoveMessageHandler removes the raft message handler.
func (t *Transport) RemoveMessageHandler() {
atomic.StoreUint32(&t.handlerRemovedFlag, 1)
}
func (t *Transport) handleRequest(req pb.MessageBatch) {
if t.handlerRemoved() {
return
}
did := t.getDeploymentID()
if req.DeploymentId != did {
plog.Warningf("deployment id does not match %d vs %d, message dropped",
req.DeploymentId, did)
return
}
if req.BinVer != raftio.RPCBinVersion {
plog.Warningf("binary compatibility version not match %d vs %d",
req.BinVer, raftio.RPCBinVersion)
return
}
handler := t.handler.Load()
if handler == nil {
return
}
addr := req.SourceAddress
if len(addr) > 0 {
for _, r := range req.Requests {
if r.From != 0 {
t.resolver.AddRemoteAddress(r.ClusterId, r.From, addr)
}
}
}
handler.(IRaftMessageHandler).HandleMessageBatch(req)
}
func (t *Transport) snapshotReceived(clusterID uint64,
nodeID uint64, from uint64) {
if t.handlerRemoved() {
return
}
handler := t.handler.Load()
if handler == nil {
return
}
handler.(IRaftMessageHandler).HandleSnapshot(clusterID, nodeID, from)
}
func (t *Transport) sendUnreachableNotification(addr string) {
if t.handlerRemoved() {
return
}
handler := t.handler.Load().(IRaftMessageHandler)
if handler == nil {
return
}
h := handler.(IRaftMessageHandler)
edp := t.resolver.ReverseResolve(addr)
for i := range edp {
rec := edp[i]
h.HandleUnreachable(rec.ClusterID, rec.NodeID)
}
}
// ASyncSend sends raft messages using RPC
//
// The generic async send Go pattern used in ASyncSend is found in CockroachDB's
// codebase.
func (t *Transport) ASyncSend(req pb.Message) bool {
if req.Type == pb.InstallSnapshot {
panic("snapshot message must be sent via its own channel.")
}
toNodeID := req.To
clusterID := req.ClusterId
from := req.From
addr, key, err := t.resolver.Resolve(clusterID, toNodeID)
if err != nil {
plog.Warningf("node %s do not have the address for %s, dropping a message",
t.sourceAddress, logutil.DescribeNode(clusterID, toNodeID))
return false
}
// fail fast
if !t.GetCircuitBreaker(addr).Ready() {
return false
}
// get the channel, create it in case it is not in the queue map
t.mu.Lock()
ch, ok := t.mu.queues[key]
if !ok {
ch = make(chan pb.Message, rpcSendBufSize)
t.mu.queues[key] = ch
}
t.mu.Unlock()
if !ok {
shutdownQueue := func() {
t.mu.Lock()
delete(t.mu.queues, key)
t.mu.Unlock()
}
t.stopper.RunWorker(func() {
t.connectAndProcess(clusterID, toNodeID, addr, ch, from)
shutdownQueue()
t.sendUnreachableNotification(addr)
})
}
select {
case ch <- req:
return true
default:
return false
}
}
func (t *Transport) connectAndProcess(clusterID uint64, toNodeID uint64,
remoteHost string, ch <-chan pb.Message, from uint64) {
breaker := t.GetCircuitBreaker(remoteHost)
successes := breaker.Successes()
consecFailures := breaker.ConsecFailures()
if err := func() error {
plog.Infof("Nodehost %s is trying to established a connection to %s",
t.sourceAddress, remoteHost)
conn, err := t.raftRPC.GetConnection(t.ctx, remoteHost)
if err != nil {
plog.Errorf("Nodehost %s failed to get a connection to %s, %v",
t.sourceAddress, remoteHost, err)
return err
}
defer conn.Close()
breaker.Success()
if successes == 0 || consecFailures > 0 {
plog.Infof("raft RPC stream from %s to %s (%s) established",
logutil.DescribeNode(clusterID, from),
logutil.DescribeNode(clusterID, toNodeID), remoteHost)
}
return t.processQueue(clusterID, toNodeID, ch, conn)
}(); err != nil {
plog.Warningf("breaker %s to %s failed, connect and process failed: %s",
t.sourceAddress, remoteHost, err.Error())
breaker.Fail()
}
}
func (t *Transport) processQueue(clusterID uint64, toNodeID uint64,
ch <-chan pb.Message, conn raftio.IConnection) error {
idleTimer := time.NewTimer(idleTimeout)
defer idleTimer.Stop()
sz := uint64(0)
batch := pb.MessageBatch{
SourceAddress: t.sourceAddress,
BinVer: raftio.RPCBinVersion,
}
requests := make([]pb.Message, 0)
var deploymentIDSet bool
var deploymentID uint64
for {
idleTimer.Reset(idleTimeout)
// drop the message if deployment id is not set.
if !deploymentIDSet {
if t.deploymentIDSet() {
deploymentIDSet = true
deploymentID = t.getDeploymentID()
}
}
select {
case <-t.stopper.ShouldStop():
plog.Debugf("stopper stopped, %s",
logutil.DescribeNode(clusterID, toNodeID))
return nil
case <-idleTimer.C:
return nil
case req := <-ch:
sz += uint64(req.SizeUpperLimit())
requests = append(requests, req)
// batch below allows multiple requests to be sent in a single message,
// then each request can have multiple log entries.
// this batching design is largely for heartbeat messages as entries are
// already batched into much smaller number of messages.
for done := false; !done && sz < rpcMaxMsgSize; {
select {
case req = <-ch:
sz += uint64(req.Size())
requests = append(requests, req)
default:
done = true
}
}
// loaded enough requests, check whether we have the deployment id
if deploymentIDSet {
batch.DeploymentId = deploymentID
} else {
plog.Warningf("Messages dropped as no valid deployment id set")
requests = requests[:0]
continue
}
twoBatch := false
if sz < rpcMaxMsgSize || len(requests) == 1 {
batch.Requests = requests
} else {
twoBatch = true
batch.Requests = requests[:len(requests)-1]
}
if err := t.sendMessageBatch(conn, batch); err != nil {
plog.Warningf("Send batch failed, target node %s (%v), %d",
logutil.DescribeNode(clusterID, toNodeID), err, len(batch.Requests))
return err
}
if twoBatch {
batch.Requests = []pb.Message{requests[len(requests)-1]}
if err := t.sendMessageBatch(conn, batch); err != nil {
plog.Warningf("Send batch failed, taret node %s (%v), %d",
logutil.DescribeNode(clusterID, toNodeID), err, len(batch.Requests))
return err
}
}
sz = 0
requests, batch = lazyFree(requests, batch)
requests = requests[:0]
}
}
}
func lazyFree(reqs []pb.Message,
mb pb.MessageBatch) ([]pb.Message, pb.MessageBatch) {
if lazyFreeCycle > 0 {
for i := 0; i < len(reqs); i++ {
reqs[i].Entries = nil
}
mb.Requests = []pb.Message{}
}
return reqs, mb
}
func (t *Transport) sendMessageBatch(conn raftio.IConnection,
batch pb.MessageBatch) error {
v := t.preSendMessageBatch.Load()
if v != nil {
updated, shouldSend := v.(SendMessageBatchFunc)(batch)
if !shouldSend {
return errBatchSendSkipped
}
return conn.SendMessageBatch(updated)
}
return conn.SendMessageBatch(batch)
}
func (t *Transport) sendSnapshotNotification(clusterID uint64,
nodeID uint64, rejected bool) {
t.decreaseSnapshotCount()
if t.handlerRemoved() {
plog.Warningf("handler removed, snapshot notification to %s ignored",
logutil.DescribeNode(clusterID, nodeID))
return
}
handler := t.handler.Load()
if handler != nil {
h := handler.(IRaftMessageHandler)
h.HandleSnapshotStatus(clusterID, nodeID, rejected)
plog.Debugf("snapshot notification to %s added, reject value %t",
logutil.DescribeNode(clusterID, nodeID), rejected)
} else {
plog.Warningf("no handler, snapshot notification to %s ignored",
logutil.DescribeNode(clusterID, nodeID))
}
}
func (t *Transport) handlerRemoved() bool {
return atomic.LoadUint32(&t.handlerRemovedFlag) == 1
}
func getDialTimeoutSecond() uint64 {
return atomic.LoadUint64(&dialTimeoutSecond)
}
func setDialTimeoutSecond(v uint64) {
atomic.StoreUint64(&dialTimeoutSecond, v)
}
func createTransportRPC(nhConfig config.NodeHostConfig,
requestHandler raftio.RequestHandler,
sinkFactory raftio.ChunkSinkFactory) raftio.IRaftRPC {
var factory config.RaftRPCFactoryFunc
if nhConfig.RaftRPCFactory != nil {
factory = nhConfig.RaftRPCFactory
} else {
factory = NewTCPTransport
}
return factory(nhConfig, requestHandler, sinkFactory)
}