-
Notifications
You must be signed in to change notification settings - Fork 179
/
result_collector.go
444 lines (378 loc) · 12.5 KB
/
result_collector.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
package computer
import (
"context"
"fmt"
"sync"
"time"
otelTrace "go.opentelemetry.io/otel/trace"
"github.com/onflow/flow-go/crypto"
"github.com/onflow/flow-go/crypto/hash"
"github.com/onflow/flow-go/engine/execution"
"github.com/onflow/flow-go/engine/execution/computation/result"
"github.com/onflow/flow-go/engine/execution/storehouse"
"github.com/onflow/flow-go/fvm"
"github.com/onflow/flow-go/fvm/meter"
"github.com/onflow/flow-go/fvm/storage/snapshot"
"github.com/onflow/flow-go/fvm/storage/state"
"github.com/onflow/flow-go/ledger"
"github.com/onflow/flow-go/model/flow"
"github.com/onflow/flow-go/module"
"github.com/onflow/flow-go/module/executiondatasync/execution_data"
"github.com/onflow/flow-go/module/executiondatasync/provider"
"github.com/onflow/flow-go/module/mempool/entity"
"github.com/onflow/flow-go/module/trace"
)
// ViewCommitter commits execution snapshot to the ledger and collects
// the proofs
type ViewCommitter interface {
// CommitView commits an execution snapshot and collects proofs
CommitView(
*snapshot.ExecutionSnapshot,
execution.ExtendableStorageSnapshot,
) (
flow.StateCommitment, // TODO(leo): deprecate. see storehouse.ExtendableStorageSnapshot.Commitment()
[]byte,
*ledger.TrieUpdate,
execution.ExtendableStorageSnapshot,
error,
)
}
type transactionResult struct {
TransactionRequest
*snapshot.ExecutionSnapshot
fvm.ProcedureOutput
timeSpent time.Duration
numConflictRetries int
}
// TODO(ramtin): move committer and other folks to consumers layer
type resultCollector struct {
tracer module.Tracer
blockSpan otelTrace.Span
metrics module.ExecutionMetrics
closeOnce sync.Once
processorInputChan chan transactionResult
processorDoneChan chan struct{}
processorError error
committer ViewCommitter
signer module.Local
spockHasher hash.Hasher
receiptHasher hash.Hasher
executionDataProvider provider.Provider
parentBlockExecutionResultID flow.Identifier
result *execution.ComputationResult
consumers []result.ExecutedCollectionConsumer
spockSignatures []crypto.Signature
blockStartTime time.Time
blockStats module.ExecutionResultStats
blockMeter *meter.Meter
currentCollectionStartTime time.Time
currentCollectionState *state.ExecutionState
currentCollectionStats module.ExecutionResultStats
currentCollectionStorageSnapshot execution.ExtendableStorageSnapshot
}
func newResultCollector(
tracer module.Tracer,
blockSpan otelTrace.Span,
metrics module.ExecutionMetrics,
committer ViewCommitter,
signer module.Local,
executionDataProvider provider.Provider,
spockHasher hash.Hasher,
receiptHasher hash.Hasher,
parentBlockExecutionResultID flow.Identifier,
block *entity.ExecutableBlock,
numTransactions int,
consumers []result.ExecutedCollectionConsumer,
previousBlockSnapshot snapshot.StorageSnapshot,
) *resultCollector {
numCollections := len(block.Collections()) + 1
now := time.Now()
collector := &resultCollector{
tracer: tracer,
blockSpan: blockSpan,
metrics: metrics,
processorInputChan: make(chan transactionResult, numTransactions),
processorDoneChan: make(chan struct{}),
committer: committer,
signer: signer,
spockHasher: spockHasher,
receiptHasher: receiptHasher,
executionDataProvider: executionDataProvider,
parentBlockExecutionResultID: parentBlockExecutionResultID,
result: execution.NewEmptyComputationResult(block),
consumers: consumers,
spockSignatures: make([]crypto.Signature, 0, numCollections),
blockStartTime: now,
blockMeter: meter.NewMeter(meter.DefaultParameters()),
currentCollectionStartTime: now,
currentCollectionState: state.NewExecutionState(nil, state.DefaultParameters()),
currentCollectionStats: module.ExecutionResultStats{
NumberOfCollections: 1,
},
currentCollectionStorageSnapshot: storehouse.NewExecutingBlockSnapshot(
previousBlockSnapshot,
*block.StartState,
),
}
go collector.runResultProcessor()
return collector
}
func (collector *resultCollector) commitCollection(
collection collectionInfo,
startTime time.Time,
collectionExecutionSnapshot *snapshot.ExecutionSnapshot,
) error {
defer collector.tracer.StartSpanFromParent(
collector.blockSpan,
trace.EXECommitDelta).End()
startState := collector.currentCollectionStorageSnapshot.Commitment()
_, proof, trieUpdate, newSnapshot, err := collector.committer.CommitView(
collectionExecutionSnapshot,
collector.currentCollectionStorageSnapshot,
)
if err != nil {
return fmt.Errorf("commit view failed: %w", err)
}
endState := newSnapshot.Commitment()
collector.currentCollectionStorageSnapshot = newSnapshot
execColRes := collector.result.CollectionExecutionResultAt(collection.collectionIndex)
execColRes.UpdateExecutionSnapshot(collectionExecutionSnapshot)
events := execColRes.Events()
eventsHash, err := flow.EventsMerkleRootHash(events)
if err != nil {
return fmt.Errorf("hash events failed: %w", err)
}
txResults := execColRes.TransactionResults()
convertedTxResults := execution_data.ConvertTransactionResults(txResults)
col := collection.Collection()
chunkExecData := &execution_data.ChunkExecutionData{
Collection: &col,
Events: events,
TrieUpdate: trieUpdate,
TransactionResults: convertedTxResults,
}
collector.result.AppendCollectionAttestationResult(
startState,
endState,
proof,
eventsHash,
chunkExecData,
)
collector.metrics.ExecutionChunkDataPackGenerated(
len(proof),
len(collection.Transactions))
spock, err := collector.signer.SignFunc(
collectionExecutionSnapshot.SpockSecret,
collector.spockHasher,
crypto.SPOCKProve)
if err != nil {
return fmt.Errorf("signing spock hash failed: %w", err)
}
collector.spockSignatures = append(collector.spockSignatures, spock)
collector.currentCollectionStats.EventCounts = len(events)
collector.currentCollectionStats.EventSize = events.ByteSize()
collector.currentCollectionStats.NumberOfRegistersTouched = len(
collectionExecutionSnapshot.AllRegisterIDs())
for _, entry := range collectionExecutionSnapshot.UpdatedRegisters() {
collector.currentCollectionStats.NumberOfBytesWrittenToRegisters += len(
entry.Value)
}
collector.metrics.ExecutionCollectionExecuted(
time.Since(startTime),
collector.currentCollectionStats)
collector.blockStats.Merge(collector.currentCollectionStats)
collector.blockMeter.MergeMeter(collectionExecutionSnapshot.Meter)
collector.currentCollectionStartTime = time.Now()
collector.currentCollectionState = state.NewExecutionState(nil, state.DefaultParameters())
collector.currentCollectionStats = module.ExecutionResultStats{
NumberOfCollections: 1,
}
for _, consumer := range collector.consumers {
err = consumer.OnExecutedCollection(collector.result.CollectionExecutionResultAt(collection.collectionIndex))
if err != nil {
return fmt.Errorf("consumer failed: %w", err)
}
}
return nil
}
func (collector *resultCollector) processTransactionResult(
txn TransactionRequest,
txnExecutionSnapshot *snapshot.ExecutionSnapshot,
output fvm.ProcedureOutput,
timeSpent time.Duration,
numConflictRetries int,
) error {
logger := txn.ctx.Logger.With().
Uint64("computation_used", output.ComputationUsed).
Uint64("memory_used", output.MemoryEstimate).
Int64("time_spent_in_ms", timeSpent.Milliseconds()).
Logger()
if output.Err != nil {
logger = logger.With().
Str("error_message", output.Err.Error()).
Uint16("error_code", uint16(output.Err.Code())).
Logger()
logger.Info().Msg("transaction execution failed")
if txn.isSystemTransaction {
// This log is used as the data source for an alert on grafana.
// The system_chunk_error field must not be changed without adding
// the corresponding changes in grafana.
// https://github.com/dapperlabs/flow-internal/issues/1546
logger.Error().
Bool("system_chunk_error", true).
Bool("system_transaction_error", true).
Bool("critical_error", true).
Msg("error executing system chunk transaction")
}
} else {
logger.Info().Msg("transaction executed successfully")
}
collector.metrics.ExecutionTransactionExecuted(
timeSpent,
numConflictRetries,
output.ComputationUsed,
output.MemoryEstimate,
len(output.Events),
flow.EventsList(output.Events).ByteSize(),
output.Err != nil,
)
txnResult := flow.TransactionResult{
TransactionID: txn.ID,
ComputationUsed: output.ComputationUsed,
MemoryUsed: output.MemoryEstimate,
}
if output.Err != nil {
txnResult.ErrorMessage = output.Err.Error()
}
collector.result.
CollectionExecutionResultAt(txn.collectionIndex).
AppendTransactionResults(
output.Events,
output.ServiceEvents,
output.ConvertedServiceEvents,
txnResult,
)
err := collector.currentCollectionState.Merge(txnExecutionSnapshot)
if err != nil {
return fmt.Errorf("failed to merge into collection view: %w", err)
}
collector.currentCollectionStats.ComputationUsed += output.ComputationUsed
collector.currentCollectionStats.MemoryUsed += output.MemoryEstimate
collector.currentCollectionStats.NumberOfTransactions += 1
if !txn.lastTransactionInCollection {
return nil
}
return collector.commitCollection(
txn.collectionInfo,
collector.currentCollectionStartTime,
collector.currentCollectionState.Finalize())
}
func (collector *resultCollector) AddTransactionResult(
request TransactionRequest,
snapshot *snapshot.ExecutionSnapshot,
output fvm.ProcedureOutput,
timeSpent time.Duration,
numConflictRetries int,
) {
result := transactionResult{
TransactionRequest: request,
ExecutionSnapshot: snapshot,
ProcedureOutput: output,
timeSpent: timeSpent,
numConflictRetries: numConflictRetries,
}
select {
case collector.processorInputChan <- result:
// Do nothing
case <-collector.processorDoneChan:
// Processor exited (probably due to an error)
}
}
func (collector *resultCollector) runResultProcessor() {
defer close(collector.processorDoneChan)
for result := range collector.processorInputChan {
err := collector.processTransactionResult(
result.TransactionRequest,
result.ExecutionSnapshot,
result.ProcedureOutput,
result.timeSpent,
result.numConflictRetries)
if err != nil {
collector.processorError = err
return
}
}
}
func (collector *resultCollector) Stop() {
collector.closeOnce.Do(func() {
close(collector.processorInputChan)
})
}
func (collector *resultCollector) Finalize(
ctx context.Context,
) (
*execution.ComputationResult,
error,
) {
collector.Stop()
<-collector.processorDoneChan
if collector.processorError != nil {
return nil, collector.processorError
}
executionDataID, executionDataRoot, err := collector.executionDataProvider.Provide(
ctx,
collector.result.Height(),
collector.result.BlockExecutionData)
if err != nil {
return nil, fmt.Errorf("failed to provide execution data: %w", err)
}
executionResult := flow.NewExecutionResult(
collector.parentBlockExecutionResultID,
collector.result.ExecutableBlock.ID(),
collector.result.AllChunks(),
collector.result.AllConvertedServiceEvents(),
executionDataID)
executionReceipt, err := GenerateExecutionReceipt(
collector.signer,
collector.receiptHasher,
executionResult,
collector.spockSignatures)
if err != nil {
return nil, fmt.Errorf("could not sign execution result: %w", err)
}
collector.result.ExecutionReceipt = executionReceipt
collector.result.ExecutionDataRoot = executionDataRoot
collector.metrics.ExecutionBlockExecuted(
time.Since(collector.blockStartTime),
collector.blockStats)
for kind, intensity := range collector.blockMeter.ComputationIntensities() {
collector.metrics.ExecutionBlockExecutionEffortVectorComponent(
kind.String(),
intensity)
}
return collector.result, nil
}
func GenerateExecutionReceipt(
signer module.Local,
receiptHasher hash.Hasher,
result *flow.ExecutionResult,
spockSignatures []crypto.Signature,
) (
*flow.ExecutionReceipt,
error,
) {
receipt := &flow.ExecutionReceipt{
ExecutionResult: *result,
Spocks: spockSignatures,
ExecutorSignature: crypto.Signature{},
ExecutorID: signer.NodeID(),
}
// generates a signature over the execution result
id := receipt.ID()
sig, err := signer.Sign(id[:], receiptHasher)
if err != nil {
return nil, fmt.Errorf("could not sign execution result: %w", err)
}
receipt.ExecutorSignature = sig
return receipt, nil
}