-
Notifications
You must be signed in to change notification settings - Fork 209
Expand file tree
/
Copy pathrequester.go
More file actions
360 lines (302 loc) · 13.3 KB
/
requester.go
File metadata and controls
360 lines (302 loc) · 13.3 KB
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
package requester
import (
"context"
"fmt"
"time"
"github.com/rs/zerolog"
"go.opentelemetry.io/otel/attribute"
"golang.org/x/exp/rand"
"github.com/onflow/flow-go/engine"
"github.com/onflow/flow-go/engine/verification/fetcher"
"github.com/onflow/flow-go/model/flow"
"github.com/onflow/flow-go/model/messages"
"github.com/onflow/flow-go/model/verification"
"github.com/onflow/flow-go/module"
"github.com/onflow/flow-go/module/mempool"
"github.com/onflow/flow-go/module/trace"
"github.com/onflow/flow-go/network"
"github.com/onflow/flow-go/network/channels"
"github.com/onflow/flow-go/state/protocol"
"github.com/onflow/flow-go/utils/logging"
)
const (
// DefaultRequestInterval is the time interval that requester engine tries requesting chunk data packs.
DefaultRequestInterval = 1000 * time.Millisecond
// DefaultBackoffMultiplier is the base of exponent in exponential backoff multiplier for backing off requests for chunk data packs.
DefaultBackoffMultiplier = float64(2)
// DefaultBackoffMinInterval is the minimum time interval a chunk data pack request waits before dispatching.
DefaultBackoffMinInterval = 1000 * time.Millisecond
// DefaultBackoffMaxInterval is the maximum time interval a chunk data pack request waits before dispatching.
DefaultBackoffMaxInterval = 1 * time.Minute
// DefaultRequestTargets is the maximum number of execution nodes a chunk data pack request is dispatched to.
DefaultRequestTargets = 2
)
// Engine implements a ChunkDataPackRequester that is responsible of receiving chunk data pack requests,
// dispatching it to the execution nodes, receiving the requested chunk data pack from execution nodes,
// and passing it to the registered handler.
type Engine struct {
// common
log zerolog.Logger
unit *engine.Unit
state protocol.State // used to check the last sealed height.
con network.Conduit // used to send the chunk data request, and receive the response.
// monitoring
tracer module.Tracer
metrics module.VerificationMetrics
// output interfaces
handler fetcher.ChunkDataPackHandler // contains callbacks for handling received chunk data packs.
// internal logic
retryInterval time.Duration // determines time in milliseconds for retrying chunk data requests.
requestTargets uint64 // maximum number of execution nodes being asked for a chunk data pack.
pendingRequests mempool.ChunkRequests // used to track requested chunks.
reqQualifierFunc RequestQualifierFunc // used to decide whether to dispatch a request at a certain cycle.
reqUpdaterFunc mempool.ChunkRequestHistoryUpdaterFunc // used to atomically update chunk request info on mempool.
}
func New(log zerolog.Logger,
state protocol.State,
net network.EngineRegistry,
tracer module.Tracer,
metrics module.VerificationMetrics,
pendingRequests mempool.ChunkRequests,
retryInterval time.Duration,
reqQualifierFunc RequestQualifierFunc,
reqUpdaterFunc mempool.ChunkRequestHistoryUpdaterFunc,
requestTargets uint64) (*Engine, error) {
e := &Engine{
log: log.With().Str("engine", "requester").Logger(),
unit: engine.NewUnit(),
state: state,
tracer: tracer,
metrics: metrics,
retryInterval: retryInterval,
requestTargets: requestTargets,
pendingRequests: pendingRequests,
reqUpdaterFunc: reqUpdaterFunc,
reqQualifierFunc: reqQualifierFunc,
}
con, err := net.Register(channels.RequestChunks, e)
if err != nil {
return nil, fmt.Errorf("could not register chunk data pack provider engine: %w", err)
}
e.con = con
return e, nil
}
func (e *Engine) WithChunkDataPackHandler(handler fetcher.ChunkDataPackHandler) {
e.handler = handler
}
// SubmitLocal submits an event originating on the local node.
func (e *Engine) SubmitLocal(event interface{}) {
e.log.Fatal().Msg("engine is not supposed to be invoked on SubmitLocal")
}
// Submit submits the given event from the node with the given origin ID
// for processing in a non-blocking manner. It returns instantly and logs
// a potential processing error internally when done.
func (e *Engine) Submit(channel channels.Channel, originID flow.Identifier, event interface{}) {
e.unit.Launch(func() {
err := e.Process(channel, originID, event)
if err != nil {
engine.LogError(e.log, err)
}
})
}
// ProcessLocal processes an event originating on the local node.
func (e *Engine) ProcessLocal(event interface{}) error {
return fmt.Errorf("should not invoke ProcessLocal of Match engine, use Process instead")
}
// Process processes the given event from the node with the given origin ID in
// a blocking manner. It returns the potential processing error when done.
func (e *Engine) Process(channel channels.Channel, originID flow.Identifier, event interface{}) error {
return e.unit.Do(func() error {
return e.process(originID, event)
})
}
// Ready initializes the engine and returns a channel that is closed when the initialization is done.
func (e *Engine) Ready() <-chan struct{} {
delay := time.Duration(0)
// run a periodic check to retry requesting chunk data packs.
// if onTimer takes longer than retryInterval, the next call will be blocked until the previous
// call has finished.
// That being said, there won't be two onTimer running in parallel. See test cases for LaunchPeriodically.
e.unit.LaunchPeriodically(e.onTimer, e.retryInterval, delay)
return e.unit.Ready()
}
// Done terminates the engine and returns a channel that is closed when the termination is done
func (e *Engine) Done() <-chan struct{} {
return e.unit.Done()
}
// process receives and submits an event to the engine for processing.
// It returns an error so the engine will not propagate an event unless
// it is successfully processed by the engine.
// The origin ID indicates the node which originally submitted the event to
// the peer-to-peer network.
func (e *Engine) process(originID flow.Identifier, event interface{}) error {
switch resource := event.(type) {
case *messages.ChunkDataResponse:
e.handleChunkDataPackWithTracing(originID, &resource.ChunkDataPack)
default:
return fmt.Errorf("invalid event type (%T)", event)
}
return nil
}
// handleChunkDataPackWithTracing encapsulates the logic of handling a chunk data pack with tracing enabled.
func (e *Engine) handleChunkDataPackWithTracing(originID flow.Identifier, chunkDataPack *flow.ChunkDataPack) {
// TODO: change this to block level as well
if chunkDataPack.Collection != nil {
span, _ := e.tracer.StartCollectionSpan(e.unit.Ctx(), chunkDataPack.Collection.ID(), trace.VERRequesterHandleChunkDataResponse)
span.SetAttributes(attribute.String("chunk_id", chunkDataPack.ChunkID.String()))
defer span.End()
}
e.handleChunkDataPack(originID, chunkDataPack)
}
// handleChunkDataPack sends the received chunk data pack to the registered handler, and cleans up its request status.
func (e *Engine) handleChunkDataPack(originID flow.Identifier, chunkDataPack *flow.ChunkDataPack) {
chunkID := chunkDataPack.ChunkID
lg := e.log.With().
Hex("chunk_id", logging.ID(chunkID)).
Logger()
if chunkDataPack.Collection != nil {
collectionID := chunkDataPack.Collection.ID()
lg = lg.With().Hex("collection_id", logging.ID(collectionID)).Logger()
}
lg.Debug().Msg("chunk data pack received")
e.metrics.OnChunkDataPackResponseReceivedFromNetworkByRequester()
// makes sure we still need this chunk, and we will not process duplicate chunk data packs.
locators, removed := e.pendingRequests.PopAll(chunkID)
if !removed {
lg.Debug().Msg("chunk request status not found in mempool to be removed, dropping chunk")
return
}
for _, locator := range locators {
response := verification.ChunkDataPackResponse{
Locator: *locator,
Cdp: chunkDataPack,
}
e.handler.HandleChunkDataPack(originID, &response)
e.metrics.OnChunkDataPackSentToFetcher()
lg.Info().
Hex("result_id", logging.ID(locator.ResultID)).
Uint64("chunk_index", locator.Index).
Msg("successfully sent the chunk data pack to the handler")
}
}
// Request receives a chunk data pack request and adds it into the pending requests mempool.
func (e *Engine) Request(request *verification.ChunkDataPackRequest) {
added := e.pendingRequests.Add(request)
e.metrics.OnChunkDataPackRequestReceivedByRequester()
e.log.Info().
Hex("chunk_id", logging.ID(request.ChunkID)).
Uint64("block_height", request.Height).
Int("agree_executors", len(request.Agrees)).
Int("disagree_executors", len(request.Disagrees)).
Bool("added_to_pending_requests", added).
Msg("chunk data pack request arrived")
}
// onTimer should run periodically, it goes through all pending requests, and requests their chunk data pack.
// It also retries the chunk data request if the data hasn't been received for a while.
func (e *Engine) onTimer() {
pendingReqs := e.pendingRequests.All()
// keeps maximum attempts made on chunk data packs of the next unsealed height for telemetry
maxAttempts := uint64(0)
e.log.Debug().
Int("total", len(pendingReqs)).
Msg("start processing all pending chunk data requests")
lastSealed, err := e.state.Sealed().Head()
if err != nil {
e.log.Fatal().
Err(err).
Msg("could not determine whether block has been sealed")
}
for _, request := range pendingReqs {
attempts := e.handleChunkDataPackRequestWithTracing(request, lastSealed.Height)
if attempts > maxAttempts && request.Height == lastSealed.Height+uint64(1) {
maxAttempts = attempts
}
}
e.metrics.SetMaxChunkDataPackAttemptsForNextUnsealedHeightAtRequester(maxAttempts)
}
// handleChunkDataPackRequestWithTracing encapsulates the logic of dispatching chunk data request in network with tracing enabled.
func (e *Engine) handleChunkDataPackRequestWithTracing(request *verification.ChunkDataPackRequestInfo, lastSealedHeight uint64) uint64 {
// TODO (Ramtin) - enable tracing later
ctx := e.unit.Ctx()
return e.handleChunkDataPackRequest(ctx, request, lastSealedHeight)
}
// handleChunkDataPackRequest encapsulates the logic of dispatching the chunk data pack request to the network.
// The return value determines number of times this request has been dispatched.
func (e *Engine) handleChunkDataPackRequest(ctx context.Context, request *verification.ChunkDataPackRequestInfo, lastSealedHeight uint64) uint64 {
lg := e.log.With().
Hex("chunk_id", logging.ID(request.ChunkID)).
Uint64("block_height", request.Height).
Logger()
// if block has been sealed, then we can finish
if request.Height <= lastSealedHeight {
locators, removed := e.pendingRequests.PopAll(request.ChunkID)
if !removed {
lg.Debug().Msg("chunk request status not found in mempool to be removed, drops requesting chunk of a sealed block")
return 0
}
for _, locator := range locators {
e.handler.NotifyChunkDataPackSealed(locator.Index, locator.ResultID)
lg.Info().
Hex("result_id", logging.ID(locator.ResultID)).
Uint64("chunk_index", locator.Index).
Msg("drops requesting chunk of a sealed block")
}
return 0
}
qualified := e.canDispatchRequest(request.ChunkID)
if !qualified {
lg.Debug().Msg("chunk data pack request is not qualified for dispatching at this round")
return 0
}
err := e.requestChunkDataPackWithTracing(ctx, request)
if err != nil {
lg.Error().Err(err).Msg("could not request chunk data pack")
return 0
}
attempts, lastAttempt, retryAfter, updated := e.onRequestDispatched(request.ChunkID)
lg.Info().
Bool("pending_request_updated", updated).
Uint64("attempts_made", attempts).
Time("last_attempt", lastAttempt).
Dur("retry_after", retryAfter).
Msg("chunk data pack requested")
return attempts
}
// requestChunkDataPack dispatches request for the chunk data pack to the execution nodes.
func (e *Engine) requestChunkDataPackWithTracing(ctx context.Context, request *verification.ChunkDataPackRequestInfo) error {
var err error
e.tracer.WithSpanFromContext(ctx, trace.VERRequesterDispatchChunkDataRequest, func() {
err = e.requestChunkDataPack(request)
})
return err
}
// requestChunkDataPack dispatches request for the chunk data pack to the execution nodes.
func (e *Engine) requestChunkDataPack(request *verification.ChunkDataPackRequestInfo) error {
req := &messages.ChunkDataRequest{
ChunkID: request.ChunkID,
Nonce: rand.Uint64(), // prevent the request from being deduplicated by the receiver
}
// publishes the chunk data request to the network
targetIDs, err := request.SampleTargets(int(e.requestTargets))
if err != nil {
return fmt.Errorf("target sampling failed: %w", err)
}
err = e.con.Publish(req, targetIDs...)
if err != nil {
return fmt.Errorf("could not publish chunk data pack request for chunk (id=%s): %w", request.ChunkID, err)
}
return nil
}
// canDispatchRequest returns whether chunk data request for this chunk ID can be dispatched.
func (e *Engine) canDispatchRequest(chunkID flow.Identifier) bool {
attempts, lastAttempt, retryAfter, exists := e.pendingRequests.RequestHistory(chunkID)
if !exists {
return false
}
return e.reqQualifierFunc(attempts, lastAttempt, retryAfter)
}
// onRequestDispatched encapsulates the logic of updating the chunk data request post a successful dispatch.
func (e *Engine) onRequestDispatched(chunkID flow.Identifier) (uint64, time.Time, time.Duration, bool) {
e.metrics.OnChunkDataPackRequestDispatchedInNetworkByRequester()
return e.pendingRequests.UpdateRequestHistory(chunkID, e.reqUpdaterFunc)
}