forked from kandoo/beehive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
queen.go
899 lines (756 loc) · 17.9 KB
/
queen.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
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
package beehive
import (
"errors"
"fmt"
"runtime/debug"
"strconv"
"sync"
"github.com/kandoo/beehive/Godeps/_workspace/src/github.com/golang/glog"
"github.com/kandoo/beehive/Godeps/_workspace/src/golang.org/x/net/context"
"github.com/kandoo/beehive/bucket"
"github.com/kandoo/beehive/state"
)
// An applictaion's queen bee is the light weight thread that routes messags
// through the bees of that application.
type qee struct {
sync.RWMutex
hive *hive
app *app
dataCh *msgChannel
ctrlCh chan cmdAndChannel
placementCh chan placementRes
stopped bool
state *state.Transactional
bees map[uint64]*bee
pendingCells map[CellKey]*pendingCells
maxID uint64
nextID uint64
}
func (q *qee) start() {
batch := make([]msgAndHandler, 0, q.hive.config.BatchSize)
q.stopped = false
dataCh := q.dataCh.out()
for !q.stopped {
select {
case d := <-dataCh:
batch = append(batch, d)
l := len(dataCh)
if cap(batch)-1 < l {
l = cap(batch) - 1
}
for i := 0; i < l; i++ {
batch = append(batch, <-dataCh)
}
q.handleMsgs(batch)
batch = batch[0:0]
case p := <-q.placementCh:
// TODO(soheil): maybe batch.
q.handlePlacementRes(p)
case c := <-q.ctrlCh:
q.handleCmd(c)
}
}
}
func (q *qee) String() string {
return fmt.Sprintf("%d/%s/Q", q.hive.ID(), q.app.Name())
}
func (q *qee) Printf(format string, a ...interface{}) {
fmt.Printf("%v> "+format, append([]interface{}{q}, a...)...)
}
func (q *qee) Dict(n string) state.Dict {
return q.state.Dict(n)
}
func (q *qee) Hive() Hive {
return q.hive
}
func (q *qee) LocalMappedCells() MappedCells {
return MappedCells{{"__nil_dict__", strconv.FormatUint(q.hive.ID(), 10)}}
}
func (q *qee) App() string {
return q.app.Name()
}
func (q *qee) Sync(ctx context.Context, req interface{}) (res interface{},
err error) {
return q.hive.Sync(ctx, req)
}
func (q *qee) beeByID(id uint64) (b *bee, ok bool) {
q.RLock()
b, ok = q.bees[id]
q.RUnlock()
return b, ok
}
func (q *qee) addBee(b *bee) {
q.Lock()
// TODO(soheil): should we validate the map first?
q.bees[b.ID()] = b
q.Unlock()
}
func (q *qee) allocateBeeID() error {
a := allocateBeeIDs{
Len: q.hive.config.BatchSize,
}
res, err := q.hive.node.ProposeRetry(hiveGroup, a,
q.hive.config.RaftElectTimeout(), -1)
if err != nil {
return err
}
ares := res.(allocateBeeIDResult)
q.nextID = ares.From
q.maxID = ares.To
return nil
}
func (q *qee) newBeeID() (bid uint64, err error) {
if q.maxID == 0 || q.nextID == q.maxID {
if err := q.allocateBeeID(); err != nil {
return 0, err
}
}
bid = q.nextID
q.nextID++
return
}
func (q *qee) newLocalBee(withColony bool) (*bee, error) {
id, err := q.newBeeID()
if err != nil {
return nil, fmt.Errorf("%v cannot allocate a new bee ID: %v", q, err)
}
if _, ok := q.beeByID(id); ok {
return nil, fmt.Errorf("bee %v already exists", id)
}
info := q.defaultBeeInfo(id, false, withColony)
if err := q.registerBee(info); err != nil {
return nil, err
}
return q.newLocalBeeWithID(id, withColony)
}
func (q *qee) defaultBeeInfo(id uint64, detached bool, initColony bool) (
info BeeInfo) {
info.ID = id
info.App = q.App()
info.Hive = q.hive.ID()
if initColony {
info.Colony = q.defaultColony(id)
}
info.Detached = detached
return
}
func (q *qee) defaultColony(bee uint64) Colony {
return Colony{
ID: bee,
Leader: bee,
}
}
func (q *qee) newLocalBeeWithID(id uint64, withColony bool) (*bee, error) {
b := q.defaultLocalBee(id)
b.setState(q.app.newState())
if withColony {
b.beeColony = q.defaultColony(id)
b.becomeLeader()
} else {
b.becomeZombie()
}
q.addBee(b)
go b.start()
return b, nil
}
func (q *qee) newProxyBee(info BeeInfo) (*bee, error) {
if q.isLocalBee(info) {
return nil, errors.New("cannot create proxy for a local bee")
}
b := q.defaultLocalBee(info.ID)
b.becomeProxy()
q.addBee(b)
go b.start()
return b, nil
}
func (q *qee) newDetachedBee(h DetachedHandler) (*bee, error) {
id, err := q.newBeeID()
if err != nil {
return nil, fmt.Errorf("%v cannot allocate a new bee ID: %v", q, err)
}
b := q.defaultLocalBee(id)
b.setState(q.app.newState())
b.becomeDetached(h)
if err := q.registerBee(q.defaultBeeInfo(id, true, false)); err != nil {
return nil, err
}
q.addBee(b)
go b.startDetached(h)
return b, nil
}
func (q *qee) registerBee(info BeeInfo) error {
// TODO(soheil): we should not block on this.
_, err := q.hive.node.ProposeRetry(hiveGroup, addBee(info),
2*q.hive.config.RaftElectTimeout(), -1)
return err
}
func (q *qee) processCmd(data interface{}) (interface{}, error) {
ch := make(chan cmdResult)
q.ctrlCh <- newCmdAndChannel(data, q.hive.ID(), q.app.Name(), 0, ch)
return (<-ch).get()
}
func (q *qee) sendCmdToBee(bid uint64, data interface{}) (interface{}, error) {
if b, ok := q.beeByID(bid); ok {
ch := make(chan cmdResult)
b.enqueCmd(newCmdAndChannel(data, q.hive.ID(), q.app.Name(), bid, ch))
return (<-ch).get()
}
info, err := q.hive.registry.bee(bid)
if err != nil {
return nil, err
}
if q.isLocalBee(info) {
glog.Fatalf("%v cannot find local bee %v", q, bid)
}
cmd := cmd{
Hive: info.Hive,
App: info.App,
Bee: info.ID,
Data: data,
}
return q.hive.client.sendCmd(cmd)
}
func (q *qee) stopBees() {
q.RLock()
defer q.RUnlock()
stopCh := make(chan cmdResult)
stopCmd := newCmdAndChannel(cmdStop{}, q.hive.ID(), q.app.Name(), 0, stopCh)
for _, b := range q.bees {
glog.V(2).Infof("%v is stopping %v", q, b)
b.enqueCmd(stopCmd)
_, err := (<-stopCh).get()
if err != nil {
glog.Errorf("%v cannot stop %v: %v", q, b, err)
}
}
}
func (q *qee) handleCmd(cc cmdAndChannel) {
if cc.cmd.Bee != Nil {
if b, ok := q.beeByID(cc.cmd.Bee); ok {
b.enqueCmd(cc)
return
}
// If the bee is a proxy we should try to relay the message.
if info, err := q.hive.registry.bee(cc.cmd.Bee); err == nil &&
!q.isLocalBee(info) {
b, err := q.newProxyBee(info)
if err == nil {
b.enqueCmd(cc)
return
}
glog.Warningf("%v cannot create proxy to %#v: %v", q, info, err)
}
if cc.ch != nil {
cc.ch <- cmdResult{
Err: fmt.Errorf("%v cannot find bee %v", q, cc.cmd.Bee),
}
}
return
}
glog.V(2).Infof("%v handles command %#v", q, cc.cmd.Data)
var err error
var res interface{}
switch cmd := cc.cmd.Data.(type) {
case cmdStop:
q.stopped = true
glog.V(3).Infof("stopping bees of %p", q)
q.stopBees()
case cmdFindBee:
id := cmd.ID
r, ok := q.beeByID(id)
if !ok {
err = fmt.Errorf("%v cannot find bee %v", q, id)
break
}
res = r
case cmdCreateBee:
var b *bee
b, err = q.newLocalBee(false)
if err != nil {
break
}
res = b.ID()
glog.V(2).Infof("created a new local bee %v", b)
case cmdReloadBee:
_, err = q.reloadBee(cmd.ID, cmd.Colony)
case cmdStartDetached:
var b *bee
b, err = q.newDetachedBee(cmd.Handler)
if b != nil {
res = b.ID()
}
case cmdMigrate:
res, err = q.migrate(cmd.Bee, cmd.To)
default:
err = fmt.Errorf("unknown queen bee command %#v", cmd)
}
if err != nil {
glog.Errorf("%v cannot handle %v: %v", q, cc.cmd, err)
}
if cc.ch != nil {
cc.ch <- cmdResult{
Err: err,
Data: res,
}
}
}
func (q *qee) reloadBee(id uint64, col Colony) (*bee, error) {
info, err := q.hive.bee(id)
if err != nil {
return nil, err
}
b := q.defaultLocalBee(id)
b.setState(q.app.newState())
b.setColony(info.Colony)
if b.isLeader() {
b.becomeLeader()
} else {
b.becomeFollower()
}
q.addBee(b)
glog.V(2).Infof("%v reloads %v", q, b)
go b.start()
return b, nil
}
func (q *qee) invokeMap(mh msgAndHandler) (ms MappedCells) {
defer func() {
if r := recover(); r != nil {
glog.Errorf("error in map of %s: %v\n%s", q.app.Name(), r,
string(debug.Stack()))
ms = nil
}
}()
glog.V(2).Infof("%v invokes map for %v", q, mh.msg)
return mh.handler.Map(mh.msg, q)
}
func (q *qee) isDetached(id uint64) bool {
b, err := q.hive.registry.bee(id)
return err == nil && b.Detached
}
func (q *qee) handleUnicastMsg(mh msgAndHandler) {
glog.V(2).Infof("unicast msg: %v", mh.msg)
b, ok := q.beeByID(mh.msg.To())
if !ok {
info, err := q.hive.registry.bee(mh.msg.To())
if err != nil {
glog.Errorf("cannot find bee %v", mh.msg.To())
}
if q.isLocalBee(info) {
glog.Fatalf("%v cannot find local bee %v", q, mh.msg.To())
}
if b, ok = q.beeByID(info.ID); !ok {
if b, err = q.newProxyBee(info); err != nil {
glog.Errorf("%v cannnot find remote bee %v", q, mh.msg.To())
return
}
}
}
if mh.handler == nil && !b.detached && !b.proxy {
glog.Fatalf("handler is nil for message %v", mh.msg)
}
b.enqueMsg(mh)
}
func (q *qee) handleLocalBcast(mh msgAndHandler) {
glog.V(2).Infof("%v sends a message to all local bees: %v", q, mh.msg)
q.RLock()
for id, b := range q.bees {
if b.detached || b.proxy {
continue
}
if b.colony().Leader != id {
continue
}
b.enqueMsg(mh)
}
q.RUnlock()
}
type placementRes struct {
hive uint64
colony Colony
pCells *pendingCells
}
type pendingCells struct {
visited bool
bee *bee
beeID uint64
cells map[CellKey]struct{}
msgs []msgAndHandler
}
func newBeeCellMsgs() *pendingCells {
return &pendingCells{
cells: make(map[CellKey]struct{}),
}
}
func (pc *pendingCells) MappedCells() (mapped MappedCells) {
for c := range pc.cells {
mapped = append(mapped, c)
}
return
}
func (q *qee) addToPendings(pc *pendingCells) {
for c := range pc.cells {
q.pendingCells[c] = pc
}
}
func (q *qee) queueIfPending(cells MappedCells, mh msgAndHandler) (ok bool) {
if len(q.pendingCells) == 0 {
return false
}
var pc *pendingCells
for _, c := range cells {
if pc, ok = q.pendingCells[c]; ok {
pc.msgs = append(pc.msgs, mh)
break
}
}
if !ok || len(cells) == 1 {
return ok
}
for _, c := range cells {
q.pendingCells[c] = pc
}
return true
}
func (q *qee) removePending(pc *pendingCells) {
for cell := range pc.cells {
delete(q.pendingCells, cell)
}
}
func (q *qee) handlePlacementRes(res placementRes) error {
defer q.removePending(res.pCells)
if res.colony.IsNil() {
b, err := q.newLocalBee(true)
if err != nil {
return err
}
lock := lockMappedCell{
Colony: b.colony(),
App: q.app.Name(),
Cells: res.pCells.MappedCells(),
}
lockRes, err := q.hive.node.ProposeRetry(hiveGroup, lock,
q.hive.config.RaftElectTimeout(), -1)
if err != nil {
return err
}
col := lockRes.(Colony)
if col.Leader == b.ID() {
b.processCmd(cmdAddMappedCells{Cells: lock.Cells})
} else {
var err error
if b, err = q.beeByCells(lock.Cells); err != nil {
return err
}
}
for _, mh := range res.pCells.msgs {
b.enqueMsg(mh)
}
return nil
}
bi := BeeInfo{
ID: res.colony.Leader,
Hive: res.hive,
App: q.app.Name(),
Colony: res.colony,
}
b, err := q.newProxyBee(bi)
if err != nil {
return err
}
q.addBee(b)
for _, mh := range res.pCells.msgs {
b.enqueMsg(mh)
}
return nil
}
func (q *qee) handleMsgs(mhs []msgAndHandler) {
pendingC := make(map[CellKey]*pendingCells)
for i := range mhs {
mh := mhs[i]
if mh.msg.IsUnicast() {
q.handleUnicastMsg(mh)
continue
}
glog.V(2).Infof("%v broadcasts message %v", q, mh.msg)
cells := q.invokeMap(mh)
if cells == nil {
glog.V(2).Infof("%v drops message %v", q, mh.msg)
continue
}
if cells.LocalBroadcast() {
q.handleLocalBcast(mh)
continue
}
if q.queueIfPending(cells, mh) {
continue
}
b, err := q.beeByCells(cells)
if err == nil {
b.enqueMsg(mh)
continue
}
var bcm *pendingCells
ok := false
for _, c := range cells {
if bcm, ok = pendingC[c]; ok {
break
}
}
if !ok {
bcm = newBeeCellMsgs()
}
for _, c := range cells {
// FIXME(soheil): what if map returns conflicting cells.
pendingC[c] = bcm
bcm.cells[c] = struct{}{}
}
bcm.msgs = append(bcm.msgs, mhs[i])
}
if len(pendingC) == 0 {
return
}
var lockBatch batchReq
for _, pc := range pendingC {
if pc.visited {
continue
}
pc.visited = true
// TODO(soheil): we should do this in parallel.
mapped := pc.MappedCells()
if mapped == nil {
panic(mapped)
}
hive := q.placeBee(mapped)
if hive != q.hive.ID() {
q.addToPendings(pc)
go q.newRemoteBee(pc, hive)
continue
}
var err error
pc.beeID, err = q.newBeeID()
if err != nil {
// TODO(soheil): this shouldn't be fatal.
glog.Fatalf("%v cannot allocate a bee ID %v", q, err)
}
lockBatch.addReq(addBee(q.defaultBeeInfo(pc.beeID, false, true)))
lockBatch.addReq(lockMappedCell{
Colony: q.defaultColony(pc.beeID),
App: q.app.Name(),
Cells: mapped,
})
}
lockRes, err := q.hive.node.ProposeRetry(hiveGroup, lockBatch,
2*q.hive.config.RaftElectTimeout(), -1)
if err != nil {
glog.Fatalf("error in lock cells: %v", err)
}
var wg sync.WaitGroup
for i, r := range lockRes.(batchRes) {
if !r.Err.IsNil() {
glog.Fatalf("cannot lock the cells TODO: %v", r.Err)
}
lock, ok := lockBatch.Reqs[i].(lockMappedCell)
if !ok {
// We can simply ignore add bee requests in the batch.
continue
}
wg.Add(1)
go func(res interface{}, lock lockMappedCell) {
cells := lock.Cells
pc := pendingC[cells[0]]
if res.(Colony).Leader == lock.Colony.Leader {
if pc.bee == nil {
var err error
if pc.bee, err = q.newLocalBeeWithID(pc.beeID, true); err != nil {
glog.Fatalf("%v cannot create local bee %v", q, err)
}
}
pc.bee.processCmd(cmdAddMappedCells{Cells: cells})
} else {
// TODO(soheil): maybe, we can find by id.
var err error
if pc.bee, err = q.beeByCells(cells); err != nil {
glog.Fatalf("neither can lock a cell nor can find its bee")
}
}
for _, mh := range pc.msgs {
glog.V(2).Infof("%v enques message to bee %v: %v", q, pc.bee, mh.msg)
pc.bee.enqueMsg(mh)
}
wg.Done()
}(r.Res, lock)
}
wg.Wait()
}
func (q *qee) newRemoteBee(pc *pendingCells, hive uint64) {
var col Colony
cmd := cmd{
Hive: hive,
App: q.app.Name(),
Data: cmdCreateBee{},
}
res, err := q.hive.client.sendCmd(cmd)
if err != nil {
q.placementCh <- placementRes{pCells: pc}
goto fallback
}
col.Leader = res.(uint64)
cmd.Bee = col.Leader
cmd.Data = cmdJoinColony{
Colony: col,
}
if _, err = q.hive.client.sendCmd(cmd); err != nil {
goto fallback
}
q.placementCh <- placementRes{
hive: hive,
colony: col,
pCells: pc,
}
return
fallback:
glog.Errorf("%v cannot create a new bee on %v. will place locally: %v", q,
hive, err)
q.placementCh <- placementRes{pCells: pc}
}
func (q *qee) placeBee(cells MappedCells) (hiveID uint64) {
if q.app.placement == nil || q.app.placement == PlacementMethod(nil) {
return q.hive.ID()
}
defer func() {
if r := recover(); r != nil {
hiveID = q.hive.ID()
}
}()
h := q.app.placement.Place(cells, q.hive, q.hive.registry.hives())
return h.ID
}
func (q *qee) beeByCells(cells MappedCells) (*bee, error) {
info, all, err := q.hive.registry.beeForCells(q.app.Name(), cells)
if err != nil {
return nil, err
}
if !all {
// TODO(soheil): should we check incosistencies?
lock := lockMappedCell{
Colony: info.Colony,
App: q.app.Name(),
Cells: cells,
}
if _, err := q.hive.node.ProposeRetry(hiveGroup, lock,
q.hive.config.RaftElectTimeout(), -1); err != nil {
return nil, err
}
// TODO(soheil): maybe check whether the leader has changed?
}
b, ok := q.beeByID(info.ID)
if ok {
return b, nil
}
if q.isLocalBee(info) {
glog.Fatalf("%v cannot find local bee %v", q, info.ID)
}
b, err = q.newProxyBee(info)
if b == nil || err != nil {
glog.Errorf("%v cannot create proxy to %v", q, info.ID)
}
return b, err
}
func (q *qee) migrate(bid uint64, to uint64) (newb uint64, err error) {
if q.isDetached(bid) {
return Nil, fmt.Errorf("cannot migrate a detached: %#v", bid)
}
glog.V(2).Infof("%v starts to migrate %v to %v", q, bid, to)
var r interface{}
var c cmd
oldb, ok := q.beeByID(bid)
if !ok {
return Nil, fmt.Errorf("%v cannot find %v", q, bid)
}
if oldb.detached || oldb.proxy {
return Nil, fmt.Errorf("%v cannot migrate nonlocal bee %v", q, bid)
}
oldc := oldb.colony()
for _, f := range oldc.Followers {
if info, err := q.hive.bee(f); err == nil && info.Hive == to {
glog.V(2).Infof("%v found follower %v on %v, will hand off", q, f, to)
newb = f
goto handoff
}
}
c = cmd{
Hive: to,
App: q.app.Name(),
Data: cmdCreateBee{},
}
r, err = q.hive.client.sendCmd(c)
if err != nil {
return Nil, err
}
newb = r.(uint64)
// TODO(soheil): we need to do this for persitent apps with a replication
// factor of 1 as well.
if !q.app.persistent() {
c = cmd{
Hive: to,
App: q.app.Name(),
Bee: newb,
Data: cmdJoinColony{Colony: Colony{Leader: newb}},
}
if _, err = q.hive.client.sendCmd(c); err != nil {
return Nil, err
}
goto handoff
}
if _, err = oldb.processCmd(cmdAddFollower{Hive: to, Bee: newb}); err != nil {
// TODO(soheil): Maybe stop newb?
return Nil, err
}
handoff:
if err = q.hive.raftBarrier(); err != nil {
return Nil, err
}
if _, err = oldb.processCmd(cmdHandoff{To: newb}); err != nil {
glog.Errorf("%v cannot handoff to %v: %v", oldb, newb, err)
return Nil, err
}
return newb, nil
}
func (q *qee) isLocalBee(info BeeInfo) bool {
return q.hive.ID() == info.Hive
}
func (q *qee) defaultLocalBee(id uint64) *bee {
var inb *bucket.Bucket
if q.app.rate.inRate == 0 {
inb = bucket.New(bucket.Unlimited, 0)
} else {
inb = bucket.New(q.app.rate.inRate, q.app.rate.inMaxTokens)
}
var outb *bucket.Bucket
if q.app.rate.outRate == 0 {
outb = bucket.New(bucket.Unlimited, 0)
} else {
outb = bucket.New(q.app.rate.outRate, q.app.rate.outMaxTokens)
}
var batch uint
if uint(inb.Max()) < q.hive.config.BatchSize {
batch = uint(inb.Max())
} else {
batch = q.hive.config.BatchSize
}
return &bee{
qee: q,
beeID: id,
dataCh: newMsgChannel(q.hive.config.DataChBufSize),
outCh: make(chan []*msg, cap(q.ctrlCh)),
ctrlCh: make(chan cmdAndChannel, cap(q.ctrlCh)),
hive: q.hive,
app: q.app,
batchSize: batch,
inBucket: inb,
outBucket: outb,
}
}
func (q *qee) enqueMsg(mh msgAndHandler) {
q.dataCh.in() <- mh
}