-
Notifications
You must be signed in to change notification settings - Fork 672
/
transitive.go
715 lines (615 loc) · 21.3 KB
/
transitive.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
// Copyright (C) 2019-2022, Ava Labs, Inc. All rights reserved.
// See the file LICENSE for licensing terms.
package avalanche
import (
"context"
"fmt"
"time"
"go.uber.org/zap"
"github.com/ava-labs/avalanchego/ids"
"github.com/ava-labs/avalanchego/snow"
"github.com/ava-labs/avalanchego/snow/consensus/avalanche"
"github.com/ava-labs/avalanchego/snow/consensus/avalanche/poll"
"github.com/ava-labs/avalanchego/snow/consensus/snowstorm"
"github.com/ava-labs/avalanchego/snow/engine/avalanche/vertex"
"github.com/ava-labs/avalanchego/snow/engine/common"
"github.com/ava-labs/avalanchego/snow/events"
"github.com/ava-labs/avalanchego/utils/sampler"
"github.com/ava-labs/avalanchego/utils/wrappers"
"github.com/ava-labs/avalanchego/version"
)
var _ Engine = (*Transitive)(nil)
func New(config Config) (Engine, error) {
return newTransitive(config)
}
// Transitive implements the Engine interface by attempting to fetch all
// transitive dependencies.
type Transitive struct {
Config
metrics
// list of NoOpsHandler for messages dropped by engine
common.StateSummaryFrontierHandler
common.AcceptedStateSummaryHandler
common.AcceptedFrontierHandler
common.AcceptedHandler
common.AncestorsHandler
RequestID uint32
polls poll.Set // track people I have asked for their preference
// The set of vertices that have been requested in Get messages but not yet received
outstandingVtxReqs common.Requests
// missingTxs tracks transaction that are missing
missingTxs ids.Set
// IDs of vertices that are queued to be added to consensus but haven't yet been
// because of missing dependencies
pending ids.Set
// vtxBlocked tracks operations that are blocked on vertices
// txBlocked tracks operations that are blocked on transactions
vtxBlocked, txBlocked events.Blocker
// transactions that have been provided from the VM but that are pending to
// be issued once the number of processing vertices has gone below the
// optimal number.
pendingTxs []snowstorm.Tx
// A uniform sampler without replacement
uniformSampler sampler.Uniform
errs wrappers.Errs
}
func newTransitive(config Config) (*Transitive, error) {
config.Ctx.Log.Info("initializing consensus engine")
factory := poll.NewEarlyTermNoTraversalFactory(config.Params.Alpha)
t := &Transitive{
Config: config,
StateSummaryFrontierHandler: common.NewNoOpStateSummaryFrontierHandler(config.Ctx.Log),
AcceptedStateSummaryHandler: common.NewNoOpAcceptedStateSummaryHandler(config.Ctx.Log),
AcceptedFrontierHandler: common.NewNoOpAcceptedFrontierHandler(config.Ctx.Log),
AcceptedHandler: common.NewNoOpAcceptedHandler(config.Ctx.Log),
AncestorsHandler: common.NewNoOpAncestorsHandler(config.Ctx.Log),
polls: poll.NewSet(factory,
config.Ctx.Log,
"",
config.Ctx.Registerer,
),
uniformSampler: sampler.NewUniform(),
}
return t, t.metrics.Initialize("", config.Ctx.Registerer)
}
func (t *Transitive) Put(ctx context.Context, nodeID ids.NodeID, requestID uint32, vtxBytes []byte) error {
t.Ctx.Log.Verbo("called Put",
zap.Stringer("nodeID", nodeID),
zap.Uint32("requestID", requestID),
)
vtx, err := t.Manager.ParseVtx(vtxBytes)
if err != nil {
t.Ctx.Log.Debug("failed to parse vertex",
zap.Stringer("nodeID", nodeID),
zap.Uint32("requestID", requestID),
zap.Error(err),
)
t.Ctx.Log.Verbo("failed to parse vertex",
zap.Stringer("nodeID", nodeID),
zap.Uint32("requestID", requestID),
zap.Binary("vertex", vtxBytes),
zap.Error(err),
)
return t.GetFailed(ctx, nodeID, requestID)
}
actualVtxID := vtx.ID()
expectedVtxID, ok := t.outstandingVtxReqs.Get(nodeID, requestID)
// If the provided vertex is not the requested vertex, we need to explicitly
// mark the request as failed to avoid having a dangling dependency.
if ok && actualVtxID != expectedVtxID {
t.Ctx.Log.Debug("incorrect vertex returned in Put",
zap.Stringer("nodeID", nodeID),
zap.Uint32("requestID", requestID),
zap.Stringer("vtxID", actualVtxID),
zap.Stringer("expectedVtxID", expectedVtxID),
)
// We assume that [vtx] is useless because it doesn't match what we
// expected.
return t.GetFailed(ctx, nodeID, requestID)
}
if t.Consensus.VertexIssued(vtx) || t.pending.Contains(actualVtxID) {
t.metrics.numUselessPutBytes.Add(float64(len(vtxBytes)))
}
if _, err := t.issueFrom(ctx, nodeID, vtx); err != nil {
return err
}
return t.attemptToIssueTxs(ctx)
}
func (t *Transitive) GetFailed(ctx context.Context, nodeID ids.NodeID, requestID uint32) error {
vtxID, ok := t.outstandingVtxReqs.Remove(nodeID, requestID)
if !ok {
t.Ctx.Log.Debug("unexpected GetFailed",
zap.Stringer("nodeID", nodeID),
zap.Uint32("requestID", requestID),
)
return nil
}
t.vtxBlocked.Abandon(ctx, vtxID)
if t.outstandingVtxReqs.Len() == 0 {
for txID := range t.missingTxs {
t.txBlocked.Abandon(ctx, txID)
}
t.missingTxs.Clear()
}
// Track performance statistics
t.metrics.numVtxRequests.Set(float64(t.outstandingVtxReqs.Len()))
t.metrics.numMissingTxs.Set(float64(t.missingTxs.Len()))
t.metrics.blockerVtxs.Set(float64(t.vtxBlocked.Len()))
t.metrics.blockerTxs.Set(float64(t.txBlocked.Len()))
return t.attemptToIssueTxs(ctx)
}
func (t *Transitive) PullQuery(ctx context.Context, nodeID ids.NodeID, requestID uint32, vtxID ids.ID) error {
// Immediately respond to the query with the current consensus preferences.
t.Sender.SendChits(ctx, nodeID, requestID, t.Consensus.Preferences().List())
// If we have [vtxID], attempt to put it into consensus, if we haven't
// already. If we don't not have [vtxID], fetch it from [nodeID].
if _, err := t.issueFromByID(ctx, nodeID, vtxID); err != nil {
return err
}
return t.attemptToIssueTxs(ctx)
}
func (t *Transitive) PushQuery(ctx context.Context, nodeID ids.NodeID, requestID uint32, vtxBytes []byte) error {
// Immediately respond to the query with the current consensus preferences.
t.Sender.SendChits(ctx, nodeID, requestID, t.Consensus.Preferences().List())
vtx, err := t.Manager.ParseVtx(vtxBytes)
if err != nil {
t.Ctx.Log.Debug("failed to parse vertex",
zap.Stringer("nodeID", nodeID),
zap.Uint32("requestID", requestID),
zap.Error(err),
)
t.Ctx.Log.Verbo("failed to parse vertex",
zap.Stringer("nodeID", nodeID),
zap.Uint32("requestID", requestID),
zap.Binary("vertex", vtxBytes),
zap.Error(err),
)
return nil
}
if t.Consensus.VertexIssued(vtx) || t.pending.Contains(vtx.ID()) {
t.metrics.numUselessPushQueryBytes.Add(float64(len(vtxBytes)))
}
if _, err := t.issueFrom(ctx, nodeID, vtx); err != nil {
return err
}
return t.attemptToIssueTxs(ctx)
}
func (t *Transitive) Chits(ctx context.Context, nodeID ids.NodeID, requestID uint32, votes []ids.ID) error {
v := &voter{
t: t,
vdr: nodeID,
requestID: requestID,
response: votes,
}
for _, vote := range votes {
if added, err := t.issueFromByID(ctx, nodeID, vote); err != nil {
return err
} else if !added {
v.deps.Add(vote)
}
}
t.vtxBlocked.Register(ctx, v)
t.metrics.blockerVtxs.Set(float64(t.vtxBlocked.Len()))
return t.attemptToIssueTxs(ctx)
}
func (t *Transitive) QueryFailed(ctx context.Context, nodeID ids.NodeID, requestID uint32) error {
return t.Chits(ctx, nodeID, requestID, nil)
}
func (t *Transitive) CrossChainAppRequest(ctx context.Context, chainID ids.ID, requestID uint32, deadline time.Time, request []byte) error {
return t.VM.CrossChainAppRequest(ctx, chainID, requestID, deadline, request)
}
func (t *Transitive) CrossChainAppRequestFailed(ctx context.Context, chainID ids.ID, requestID uint32) error {
return t.VM.CrossChainAppRequestFailed(ctx, chainID, requestID)
}
func (t *Transitive) CrossChainAppResponse(ctx context.Context, chainID ids.ID, requestID uint32, response []byte) error {
return t.VM.CrossChainAppResponse(ctx, chainID, requestID, response)
}
func (t *Transitive) AppRequest(ctx context.Context, nodeID ids.NodeID, requestID uint32, deadline time.Time, request []byte) error {
// Notify the VM of this request
return t.VM.AppRequest(ctx, nodeID, requestID, deadline, request)
}
func (t *Transitive) AppRequestFailed(ctx context.Context, nodeID ids.NodeID, requestID uint32) error {
// Notify the VM that a request it made failed
return t.VM.AppRequestFailed(ctx, nodeID, requestID)
}
func (t *Transitive) AppResponse(ctx context.Context, nodeID ids.NodeID, requestID uint32, response []byte) error {
// Notify the VM of a response to its request
return t.VM.AppResponse(ctx, nodeID, requestID, response)
}
func (t *Transitive) AppGossip(ctx context.Context, nodeID ids.NodeID, msg []byte) error {
// Notify the VM of this message which has been gossiped to it
return t.VM.AppGossip(ctx, nodeID, msg)
}
func (t *Transitive) Connected(nodeID ids.NodeID, nodeVersion *version.Application) error {
return t.VM.Connected(nodeID, nodeVersion)
}
func (t *Transitive) Disconnected(nodeID ids.NodeID) error {
return t.VM.Disconnected(nodeID)
}
func (t *Transitive) Timeout() error { return nil }
func (t *Transitive) Gossip() error {
edge := t.Manager.Edge()
if len(edge) == 0 {
t.Ctx.Log.Verbo("dropping gossip request as no vertices have been accepted")
return nil
}
if err := t.uniformSampler.Initialize(uint64(len(edge))); err != nil {
return err // Should never happen
}
indices, err := t.uniformSampler.Sample(1)
if err != nil {
return err // Also should never really happen because the edge has positive length
}
vtxID := edge[int(indices[0])]
vtx, err := t.Manager.GetVtx(vtxID)
if err != nil {
t.Ctx.Log.Warn("dropping gossip request",
zap.String("reason", "couldn't load vertex"),
zap.Stringer("vtxID", vtxID),
zap.Error(err),
)
return nil
}
t.Ctx.Log.Verbo("gossiping accepted vertex to the network",
zap.Stringer("vtxID", vtxID),
)
t.Sender.SendGossip(context.TODO(), vtx.Bytes())
return nil
}
func (t *Transitive) Halt() {}
func (t *Transitive) Shutdown() error {
t.Ctx.Log.Info("shutting down consensus engine")
return t.VM.Shutdown()
}
func (t *Transitive) Notify(msg common.Message) error {
switch msg {
case common.PendingTxs:
t.pendingTxs = append(t.pendingTxs, t.VM.PendingTxs()...)
t.metrics.pendingTxs.Set(float64(len(t.pendingTxs)))
return t.attemptToIssueTxs(context.TODO())
case common.StopVertex:
// stop vertex doesn't have any txs, issue directly!
return t.issueStopVtx(context.TODO())
default:
t.Ctx.Log.Warn("received an unexpected message from the VM",
zap.Stringer("messageString", msg),
)
return nil
}
}
func (t *Transitive) Context() *snow.ConsensusContext {
return t.Ctx
}
func (t *Transitive) Start(startReqID uint32) error {
t.RequestID = startReqID
// Load the vertices that were last saved as the accepted frontier
edge := t.Manager.Edge()
frontier := make([]avalanche.Vertex, 0, len(edge))
for _, vtxID := range edge {
if vtx, err := t.Manager.GetVtx(vtxID); err == nil {
frontier = append(frontier, vtx)
} else {
t.Ctx.Log.Error("failed to load vertex from the frontier",
zap.Stringer("vtxID", vtxID),
zap.Error(err),
)
}
}
t.Ctx.Log.Info("consensus starting",
zap.Int("lenFrontier", len(frontier)),
)
t.metrics.bootstrapFinished.Set(1)
t.Ctx.SetState(snow.NormalOp)
if err := t.VM.SetState(snow.NormalOp); err != nil {
return fmt.Errorf("failed to notify VM that consensus has started: %w",
err)
}
return t.Consensus.Initialize(t.Ctx, t.Params, frontier)
}
func (t *Transitive) HealthCheck() (interface{}, error) {
consensusIntf, consensusErr := t.Consensus.HealthCheck()
vmIntf, vmErr := t.VM.HealthCheck()
intf := map[string]interface{}{
"consensus": consensusIntf,
"vm": vmIntf,
}
if consensusErr == nil {
return intf, vmErr
}
if vmErr == nil {
return intf, consensusErr
}
return intf, fmt.Errorf("vm: %s ; consensus: %s", vmErr, consensusErr)
}
func (t *Transitive) GetVM() common.VM {
return t.VM
}
func (t *Transitive) GetVtx(vtxID ids.ID) (avalanche.Vertex, error) {
// GetVtx returns a vertex by its ID.
// Returns database.ErrNotFound if unknown.
return t.Manager.GetVtx(vtxID)
}
func (t *Transitive) attemptToIssueTxs(ctx context.Context) error {
err := t.errs.Err
if err != nil {
return err
}
t.pendingTxs, err = t.batch(ctx, t.pendingTxs, batchOption{limit: true})
t.metrics.pendingTxs.Set(float64(len(t.pendingTxs)))
return err
}
// If there are pending transactions from the VM, issue them.
// If we're not already at the limit for number of concurrent polls, issue a new
// query.
func (t *Transitive) repoll(ctx context.Context) {
for i := t.polls.Len(); i < t.Params.ConcurrentRepolls && !t.errs.Errored(); i++ {
t.issueRepoll(ctx)
}
}
// issueFromByID issues the branch ending with vertex [vtxID] to consensus.
// Fetches [vtxID] if we don't have it locally.
// Returns true if [vtx] has been added to consensus (now or previously)
func (t *Transitive) issueFromByID(ctx context.Context, nodeID ids.NodeID, vtxID ids.ID) (bool, error) {
vtx, err := t.Manager.GetVtx(vtxID)
if err != nil {
// We don't have [vtxID]. Request it.
t.sendRequest(ctx, nodeID, vtxID)
return false, nil
}
return t.issueFrom(ctx, nodeID, vtx)
}
// issueFrom issues the branch ending with [vtx] to consensus.
// Assumes we have [vtx] locally
// Returns true if [vtx] has been added to consensus (now or previously)
func (t *Transitive) issueFrom(ctx context.Context, nodeID ids.NodeID, vtx avalanche.Vertex) (bool, error) {
issued := true
// Before we issue [vtx] into consensus, we have to issue its ancestors.
// Go through [vtx] and its ancestors. issue each ancestor that hasn't yet been issued.
// If we find a missing ancestor, fetch it and note that we can't issue [vtx] yet.
ancestry := vertex.NewHeap()
ancestry.Push(vtx)
for ancestry.Len() > 0 {
vtx := ancestry.Pop()
if t.Consensus.VertexIssued(vtx) {
// This vertex has been issued --> its ancestors have been issued.
// No need to try to issue it or its ancestors
continue
}
if t.pending.Contains(vtx.ID()) {
issued = false
continue
}
parents, err := vtx.Parents()
if err != nil {
return false, err
}
// Ensure we have ancestors of this vertex
for _, parent := range parents {
if !parent.Status().Fetched() {
// We don't have the parent. Request it.
t.sendRequest(ctx, nodeID, parent.ID())
// We're missing an ancestor so we can't have issued the vtx in this method's argument
issued = false
} else {
// Come back to this vertex later to make sure it and its ancestors have been fetched/issued
ancestry.Push(parent)
}
}
// Queue up this vertex to be issued once its dependencies are met
if err := t.issue(ctx, vtx); err != nil {
return false, err
}
}
return issued, nil
}
// issue queues [vtx] to be put into consensus after its dependencies are met.
// Assumes we have [vtx].
func (t *Transitive) issue(ctx context.Context, vtx avalanche.Vertex) error {
vtxID := vtx.ID()
// Add to set of vertices that have been queued up to be issued but haven't been yet
t.pending.Add(vtxID)
t.outstandingVtxReqs.RemoveAny(vtxID)
// Will put [vtx] into consensus once dependencies are met
i := &issuer{
t: t,
vtx: vtx,
}
parents, err := vtx.Parents()
if err != nil {
return err
}
for _, parent := range parents {
if !t.Consensus.VertexIssued(parent) {
// This parent hasn't been issued yet. Add it as a dependency.
i.vtxDeps.Add(parent.ID())
}
}
txs, err := vtx.Txs()
if err != nil {
return err
}
txIDs := ids.NewSet(len(txs))
for _, tx := range txs {
txIDs.Add(tx.ID())
}
for _, tx := range txs {
deps, err := tx.Dependencies()
if err != nil {
return err
}
for _, dep := range deps {
depID := dep.ID()
if !txIDs.Contains(depID) && !t.Consensus.TxIssued(dep) {
// This transaction hasn't been issued yet. Add it as a dependency.
t.missingTxs.Add(depID)
i.txDeps.Add(depID)
}
}
}
t.Ctx.Log.Verbo("vertex is blocking",
zap.Stringer("vtxID", vtxID),
zap.Int("numVtxDeps", i.vtxDeps.Len()),
zap.Int("numTxDeps", i.txDeps.Len()),
)
// Wait until all the parents of [vtx] are added to consensus before adding [vtx]
t.vtxBlocked.Register(ctx, &vtxIssuer{i: i})
// Wait until all the parents of [tx] are added to consensus before adding [vtx]
t.txBlocked.Register(ctx, &txIssuer{i: i})
if t.outstandingVtxReqs.Len() == 0 {
// There are no outstanding vertex requests but we don't have these transactions, so we're not getting them.
for txID := range t.missingTxs {
t.txBlocked.Abandon(ctx, txID)
}
t.missingTxs.Clear()
}
// Track performance statistics
t.metrics.numVtxRequests.Set(float64(t.outstandingVtxReqs.Len()))
t.metrics.numMissingTxs.Set(float64(t.missingTxs.Len()))
t.metrics.numPendingVts.Set(float64(len(t.pending)))
t.metrics.blockerVtxs.Set(float64(t.vtxBlocked.Len()))
t.metrics.blockerTxs.Set(float64(t.txBlocked.Len()))
return t.errs.Err
}
type batchOption struct {
// if [force], allow for a conflict to be issued, and force each tx to be issued
// otherwise, some txs may not be put into vertices that are issued.
force bool
// if [limit], stop when "Params.OptimalProcessing <= Consensus.NumProcessing"
limit bool
}
// Batchs [txs] into vertices and issue them.
func (t *Transitive) batch(ctx context.Context, txs []snowstorm.Tx, opt batchOption) ([]snowstorm.Tx, error) {
if len(txs) == 0 {
return nil, nil
}
if opt.limit && t.Params.OptimalProcessing <= t.Consensus.NumProcessing() {
return txs, nil
}
issuedTxs := ids.Set{}
consumed := ids.Set{}
orphans := t.Consensus.Orphans()
start := 0
end := 0
for end < len(txs) {
tx := txs[end]
inputs := ids.Set{}
inputs.Add(tx.InputIDs()...)
overlaps := consumed.Overlaps(inputs)
if end-start >= t.Params.BatchSize || (opt.force && overlaps) {
if err := t.issueBatch(ctx, txs[start:end]); err != nil {
return nil, err
}
if opt.limit && t.Params.OptimalProcessing <= t.Consensus.NumProcessing() {
return txs[end:], nil
}
start = end
consumed.Clear()
overlaps = false
}
if txID := tx.ID(); !overlaps && // should never allow conflicting txs in the same vertex
!issuedTxs.Contains(txID) && // shouldn't issue duplicated transactions to the same vertex
(opt.force || t.Consensus.IsVirtuous(tx)) && // force allows for a conflict to be issued
(!t.Consensus.TxIssued(tx) || orphans.Contains(txID)) { // should only reissue orphaned txs
end++
issuedTxs.Add(txID)
consumed.Union(inputs)
} else {
newLen := len(txs) - 1
txs[end] = txs[newLen]
txs[newLen] = nil
txs = txs[:newLen]
}
}
if end > start {
return txs[end:], t.issueBatch(ctx, txs[start:end])
}
return txs[end:], nil
}
// Issues a new poll for a preferred vertex in order to move consensus along
func (t *Transitive) issueRepoll(ctx context.Context) {
preferredIDs := t.Consensus.Preferences()
if preferredIDs.Len() == 0 {
t.Ctx.Log.Error("re-query attempt was dropped due to no pending vertices")
return
}
vtxID := preferredIDs.CappedList(1)[0]
vdrs, err := t.Validators.Sample(t.Params.K) // Validators to sample
if err != nil {
t.Ctx.Log.Error("dropped re-query",
zap.String("reason", "insufficient number of validators"),
zap.Stringer("vtxID", vtxID),
zap.Error(err),
)
return
}
vdrBag := ids.NodeIDBag{} // IDs of validators to be sampled
for _, vdr := range vdrs {
vdrBag.Add(vdr.ID())
}
vdrList := vdrBag.List()
vdrSet := ids.NewNodeIDSet(len(vdrList))
vdrSet.Add(vdrList...)
// Poll the network
t.RequestID++
if t.polls.Add(t.RequestID, vdrBag) {
t.Sender.SendPullQuery(ctx, vdrSet, t.RequestID, vtxID)
}
}
// Puts a batch of transactions into a vertex and issues it into consensus.
func (t *Transitive) issueBatch(ctx context.Context, txs []snowstorm.Tx) error {
t.Ctx.Log.Verbo("batching transactions into a new vertex",
zap.Int("numTxs", len(txs)),
)
// Randomly select parents of this vertex from among the virtuous set
virtuousIDs := t.Consensus.Virtuous().CappedList(t.Params.Parents)
numVirtuousIDs := len(virtuousIDs)
if err := t.uniformSampler.Initialize(uint64(numVirtuousIDs)); err != nil {
return err
}
indices, err := t.uniformSampler.Sample(numVirtuousIDs)
if err != nil {
return err
}
parentIDs := make([]ids.ID, len(indices))
for i, index := range indices {
parentIDs[i] = virtuousIDs[int(index)]
}
vtx, err := t.Manager.BuildVtx(parentIDs, txs)
if err != nil {
t.Ctx.Log.Warn("error building new vertex",
zap.Int("numParents", len(parentIDs)),
zap.Int("numTxs", len(txs)),
zap.Error(err),
)
return nil
}
return t.issue(ctx, vtx)
}
// to be triggered via X-Chain API
func (t *Transitive) issueStopVtx(ctx context.Context) error {
// use virtuous frontier (accepted) as parents
virtuousSet := t.Consensus.Virtuous()
vtx, err := t.Manager.BuildStopVtx(virtuousSet.List())
if err != nil {
t.Ctx.Log.Warn("error building new stop vertex",
zap.Int("numParents", virtuousSet.Len()),
zap.Error(err),
)
return nil
}
return t.issue(ctx, vtx)
}
// Send a request to [vdr] asking them to send us vertex [vtxID]
func (t *Transitive) sendRequest(ctx context.Context, nodeID ids.NodeID, vtxID ids.ID) {
if t.outstandingVtxReqs.Contains(vtxID) {
t.Ctx.Log.Debug("not sending request for vertex",
zap.String("reason", "existing outstanding request"),
zap.Stringer("vtxID", vtxID),
)
return
}
t.RequestID++
t.outstandingVtxReqs.Add(nodeID, t.RequestID, vtxID) // Mark that there is an outstanding request for this vertex
t.Sender.SendGet(ctx, nodeID, t.RequestID, vtxID)
t.metrics.numVtxRequests.Set(float64(t.outstandingVtxReqs.Len())) // Tracks performance statistics
}