-
Notifications
You must be signed in to change notification settings - Fork 663
Expand file tree
/
Copy pathBlockCachePreWarmer.cs
More file actions
429 lines (373 loc) · 16.6 KB
/
BlockCachePreWarmer.cs
File metadata and controls
429 lines (373 loc) · 16.6 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
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
// SPDX-FileCopyrightText: 2024 Demerzel Solutions Limited
// SPDX-License-Identifier: LGPL-3.0-only
using System;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.Extensions.ObjectPool;
using Nethermind.Blockchain;
using Nethermind.Config;
using Nethermind.Core;
using Nethermind.Core.Specs;
using Nethermind.Core.Threading;
using Nethermind.Evm;
using Nethermind.Evm.Tracing;
using Nethermind.Evm.TransactionProcessing;
using Nethermind.Int256;
using Nethermind.Logging;
using Nethermind.Evm.State;
using Nethermind.Core.Eip2930;
using Nethermind.Core.Collections;
using Nethermind.Core.Extensions;
using Nethermind.State;
using Nethermind.Trie;
namespace Nethermind.Consensus.Processing;
public sealed class BlockCachePreWarmer(
PrewarmerEnvFactory envFactory,
int concurrency,
NodeStorageCache nodeStorageCache,
PreBlockCaches preBlockCaches,
ILogManager logManager
) : IBlockCachePreWarmer
{
private readonly int _concurrencyLevel = concurrency == 0 ? Math.Min(Environment.ProcessorCount - 1, 16) : concurrency;
private readonly ObjectPool<IReadOnlyTxProcessorSource> _envPool = new DefaultObjectPool<IReadOnlyTxProcessorSource>(new ReadOnlyTxProcessingEnvPooledObjectPolicy(envFactory, preBlockCaches), Environment.ProcessorCount * 2);
private readonly ILogger _logger = logManager.GetClassLogger<BlockCachePreWarmer>();
public BlockCachePreWarmer(
PrewarmerEnvFactory envFactory,
IBlocksConfig blocksConfig,
NodeStorageCache nodeStorageCache,
PreBlockCaches preBlockCaches,
ILogManager logManager
) : this(
envFactory,
blocksConfig.PreWarmStateConcurrency,
nodeStorageCache,
preBlockCaches,
logManager)
{
}
public Task PreWarmCaches(Block suggestedBlock, BlockHeader? parent, IReleaseSpec spec, CancellationToken cancellationToken = default, params ReadOnlySpan<IHasAccessList> systemAccessLists)
{
if (preBlockCaches is not null)
{
CacheType result = preBlockCaches.ClearCaches();
nodeStorageCache.ClearCaches();
nodeStorageCache.Enabled = true;
if (result != default)
{
if (_logger.IsWarn) _logger.Warn($"Caches {result} are not empty. Clearing them.");
}
if (parent is not null && _concurrencyLevel > 1 && !cancellationToken.IsCancellationRequested)
{
BlockState blockState = new(this, suggestedBlock, parent, spec);
ParallelOptions parallelOptions = new() { MaxDegreeOfParallelism = _concurrencyLevel, CancellationToken = cancellationToken };
// Run address warmer ahead of transactions warmer, but queue to ThreadPool so it doesn't block the txs
var addressWarmer = new AddressWarmer(parallelOptions, suggestedBlock, parent, spec, systemAccessLists, this);
ThreadPool.UnsafeQueueUserWorkItem(addressWarmer, preferLocal: false);
// Do not pass the cancellation token to the task, we don't want exceptions to be thrown in the main processing thread
return Task.Run(() => PreWarmCachesParallel(blockState, suggestedBlock, parent, spec, parallelOptions, addressWarmer, cancellationToken));
}
}
return Task.CompletedTask;
}
public CacheType ClearCaches()
{
if (_logger.IsDebug) _logger.Debug("Clearing caches");
CacheType cachesCleared = preBlockCaches?.ClearCaches() ?? default;
cachesCleared |= nodeStorageCache.ClearCaches() ? CacheType.Rlp : CacheType.None;
if (_logger.IsDebug) _logger.Debug($"Cleared caches: {cachesCleared}");
return cachesCleared;
}
private void PreWarmCachesParallel(BlockState blockState, Block suggestedBlock, BlockHeader parent, IReleaseSpec spec, ParallelOptions parallelOptions, AddressWarmer addressWarmer, CancellationToken cancellationToken)
{
try
{
if (cancellationToken.IsCancellationRequested) return;
if (_logger.IsDebug) _logger.Debug($"Started pre-warming caches for block {suggestedBlock.Number}.");
WarmupTransactions(blockState, parallelOptions);
WarmupWithdrawals(parallelOptions, spec, suggestedBlock, parent);
if (_logger.IsDebug) _logger.Debug($"Finished pre-warming caches for block {suggestedBlock.Number}.");
}
catch (Exception ex)
{
if (_logger.IsDebug) _logger.Warn($"DEBUG/ERROR Error pre-warming {suggestedBlock.Number}. {ex}");
}
finally
{
// Don't compete the task until address warmer is also done.
addressWarmer.Wait();
}
}
private void WarmupWithdrawals(ParallelOptions parallelOptions, IReleaseSpec spec, Block block, BlockHeader? parent)
{
if (parallelOptions.CancellationToken.IsCancellationRequested) return;
try
{
if (spec.WithdrawalsEnabled && block.Withdrawals is not null)
{
ParallelUnbalancedWork.For(0, block.Withdrawals.Length, parallelOptions, (EnvPool: _envPool, Block: block, Parent: parent),
static (i, state) =>
{
IReadOnlyTxProcessorSource env = state.EnvPool.Get();
try
{
using IReadOnlyTxProcessingScope scope = env.Build(state.Parent);
scope.WorldState.WarmUp(state.Block.Withdrawals![i].Address);
}
catch (MissingTrieNodeException)
{
}
finally
{
state.EnvPool.Return(env);
}
return state;
});
}
}
catch (OperationCanceledException)
{
// Ignore, block completed cancel
}
catch (Exception ex)
{
if (_logger.IsDebug) _logger.Error("DEBUG/ERROR Error pre-warming withdrawal", ex);
}
}
private void WarmupTransactions(BlockState blockState, ParallelOptions parallelOptions)
{
if (parallelOptions.CancellationToken.IsCancellationRequested) return;
try
{
Block block = blockState.Block;
if (block.Transactions.Length == 0) return;
// Group transactions by sender to process same-sender transactions sequentially
// This ensures state changes (balance, storage) from tx[N] are visible to tx[N+1]
Dictionary<AddressAsKey, ArrayPoolList<(int Index, Transaction Tx)>>? senderGroups = GroupTransactionsBySender(block);
try
{
// Convert to array for parallel iteration
using ArrayPoolList<ArrayPoolList<(int Index, Transaction Tx)>> groupArray = senderGroups.Values.ToPooledList();
// Parallel across different senders, sequential within the same sender
ParallelUnbalancedWork.For(
0,
groupArray.Count,
parallelOptions,
(blockState, groupArray, parallelOptions.CancellationToken),
static (groupIndex, tupleState) =>
{
(BlockState? blockState, ArrayPoolList<ArrayPoolList<(int Index, Transaction Tx)>> groups, CancellationToken token) = tupleState;
ArrayPoolList<(int Index, Transaction Tx)>? txList = groups[groupIndex];
// Get thread-local processing state for this sender's transactions
IReadOnlyTxProcessorSource env = blockState.PreWarmer._envPool.Get();
try
{
using IReadOnlyTxProcessingScope scope = env.Build(blockState.Parent);
BlockExecutionContext context = new(blockState.Block.Header, blockState.Spec);
scope.TransactionProcessor.SetBlockExecutionContext(context);
// Sequential within the same sender-state changes propagate correctly
foreach ((int txIndex, Transaction? tx) in txList.AsSpan())
{
if (token.IsCancellationRequested) return tupleState;
WarmupSingleTransaction(scope, tx, txIndex, blockState);
}
}
finally
{
blockState.PreWarmer._envPool.Return(env);
}
return tupleState;
});
}
finally
{
foreach (KeyValuePair<AddressAsKey, ArrayPoolList<(int Index, Transaction Tx)>> kvp in senderGroups)
kvp.Value.Dispose();
}
}
catch (OperationCanceledException)
{
// Ignore, block completed cancel
}
catch (Exception ex)
{
if (_logger.IsDebug) _logger.Error($"DEBUG/ERROR Error pre-warming transactions", ex);
}
}
private static Dictionary<AddressAsKey, ArrayPoolList<(int Index, Transaction Tx)>> GroupTransactionsBySender(Block block)
{
Dictionary<AddressAsKey, ArrayPoolList<(int, Transaction)>> groups = new();
for (int i = 0; i < block.Transactions.Length; i++)
{
Transaction tx = block.Transactions[i];
Address sender = tx.SenderAddress!;
if (!groups.TryGetValue(sender, out ArrayPoolList<(int, Transaction)> list))
{
list = new(4);
groups[sender] = list;
}
list.Add((i, tx));
}
return groups;
}
private static void WarmupSingleTransaction(
IReadOnlyTxProcessingScope scope,
Transaction tx,
int txIndex,
BlockState blockState)
{
try
{
Address senderAddress = tx.SenderAddress!;
IWorldState worldState = scope.WorldState;
if (!worldState.AccountExists(senderAddress))
{
worldState.CreateAccountIfNotExists(senderAddress, UInt256.Zero);
}
if (blockState.Spec.UseTxAccessLists)
{
worldState.WarmUp(tx.AccessList); // eip-2930
}
TransactionResult result = scope.TransactionProcessor.Warmup(tx, NullTxTracer.Instance);
if (blockState.PreWarmer._logger.IsTrace) blockState.PreWarmer._logger.Trace($"Finished pre-warming cache for tx[{txIndex}] {tx.Hash} with {result}");
}
catch (Exception ex) when (ex is EvmException or OverflowException)
{
// Ignore, regular tx processing exceptions
}
catch (Exception ex)
{
if (blockState.PreWarmer._logger.IsDebug) blockState.PreWarmer._logger.Error($"DEBUG/ERROR Error pre-warming cache {tx.Hash}", ex);
}
}
private class AddressWarmer(ParallelOptions parallelOptions, Block block, BlockHeader parent, IReleaseSpec spec, ReadOnlySpan<IHasAccessList> systemAccessLists, BlockCachePreWarmer preWarmer)
: IThreadPoolWorkItem
{
private readonly Block Block = block;
private readonly BlockCachePreWarmer PreWarmer = preWarmer;
private readonly ArrayPoolList<AccessList>? SystemTxAccessLists = GetAccessLists(block, spec, systemAccessLists);
private readonly ManualResetEventSlim _doneEvent = new(initialState: false);
public void Wait() => _doneEvent.Wait();
private static ArrayPoolList<AccessList>? GetAccessLists(Block block, IReleaseSpec spec, ReadOnlySpan<IHasAccessList> systemAccessLists)
{
if (systemAccessLists.Length == 0) return null;
ArrayPoolList<AccessList> list = new(systemAccessLists.Length);
foreach (IHasAccessList systemAccessList in systemAccessLists)
{
list.Add(systemAccessList.GetAccessList(block, spec));
}
return list;
}
void IThreadPoolWorkItem.Execute()
{
try
{
if (parallelOptions.CancellationToken.IsCancellationRequested) return;
WarmupAddresses(parallelOptions, Block);
}
catch (Exception ex)
{
if (PreWarmer._logger.IsDebug) PreWarmer._logger.Error($"DEBUG/ERROR Error pre-warming addresses", ex);
}
finally
{
_doneEvent.Set();
}
}
private void WarmupAddresses(ParallelOptions parallelOptions, Block block)
{
if (parallelOptions.CancellationToken.IsCancellationRequested)
{
SystemTxAccessLists?.Dispose();
return;
}
ObjectPool<IReadOnlyTxProcessorSource> envPool = PreWarmer._envPool;
try
{
if (SystemTxAccessLists is not null)
{
IReadOnlyTxProcessorSource env = envPool.Get();
try
{
using IReadOnlyTxProcessingScope scope = env.Build(parent);
foreach (AccessList list in SystemTxAccessLists.AsSpan())
{
scope.WorldState.WarmUp(list);
}
}
finally
{
envPool.Return(env);
SystemTxAccessLists.Dispose();
}
}
AddressWarmingState baseState = new(envPool, block, parent);
ParallelUnbalancedWork.For(
0,
block.Transactions.Length,
parallelOptions,
baseState.InitThreadState,
static (i, state) =>
{
Transaction tx = state.Block.Transactions[i];
Address? sender = tx.SenderAddress;
try
{
if (sender is not null)
{
state.Scope!.WorldState.WarmUp(sender);
}
Address to = tx.To;
if (to is not null)
{
state.Scope!.WorldState.WarmUp(to);
}
}
catch (MissingTrieNodeException)
{
}
return state;
},
AddressWarmingState.FinallyAction);
}
catch (OperationCanceledException)
{
// Ignore, block completed cancel
}
}
}
private readonly struct AddressWarmingState(ObjectPool<IReadOnlyTxProcessorSource> envPool, Block block, BlockHeader parent) : IDisposable
{
public static Action<AddressWarmingState> FinallyAction { get; } = DisposeThreadState;
private readonly ObjectPool<IReadOnlyTxProcessorSource> EnvPool = envPool;
private readonly IReadOnlyTxProcessorSource? Env;
public readonly Block Block = block;
public readonly IReadOnlyTxProcessingScope? Scope;
private AddressWarmingState(ObjectPool<IReadOnlyTxProcessorSource> envPool, Block block, BlockHeader parent, IReadOnlyTxProcessorSource env, IReadOnlyTxProcessingScope scope) : this(envPool, block, parent)
{
Env = env;
Scope = scope;
}
public AddressWarmingState InitThreadState()
{
IReadOnlyTxProcessorSource env = EnvPool.Get();
return new(EnvPool, Block, parent, env, scope: env.Build(parent));
}
public void Dispose()
{
Scope?.Dispose();
if (Env is not null)
{
EnvPool.Return(Env);
}
}
private static void DisposeThreadState(AddressWarmingState state) => state.Dispose();
}
private class ReadOnlyTxProcessingEnvPooledObjectPolicy(PrewarmerEnvFactory envFactory, PreBlockCaches preBlockCaches) : IPooledObjectPolicy<IReadOnlyTxProcessorSource>
{
public IReadOnlyTxProcessorSource Create() => envFactory.Create(preBlockCaches);
public bool Return(IReadOnlyTxProcessorSource obj) => true;
}
private record BlockState(BlockCachePreWarmer PreWarmer, Block Block, BlockHeader Parent, IReleaseSpec Spec);
}