-
Notifications
You must be signed in to change notification settings - Fork 202
/
config.go
463 lines (404 loc) · 14.4 KB
/
config.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
package config
// CacheConfig will map the cache configuration
type CacheConfig struct {
Name string
Type string
Capacity uint32
SizePerSender uint32
SizeInBytes uint64
SizeInBytesPerSender uint32
Shards uint32
}
//HeadersPoolConfig will map the headers cache configuration
type HeadersPoolConfig struct {
MaxHeadersPerShard int
NumElementsToRemoveOnEviction int
}
// DBConfig will map the database configuration
type DBConfig struct {
FilePath string
Type string
BatchDelaySeconds int
MaxBatchSize int
MaxOpenFiles int
}
// BloomFilterConfig will map the bloom filter configuration
type BloomFilterConfig struct {
Size uint
HashFunc []string
}
// StorageConfig will map the storage unit configuration
type StorageConfig struct {
Cache CacheConfig
DB DBConfig
Bloom BloomFilterConfig
}
// PubkeyConfig will map the public key configuration
type PubkeyConfig struct {
Length int
Type string
SignatureLength int
}
// TypeConfig will map the string type configuration
type TypeConfig struct {
Type string
}
// MarshalizerConfig holds the marshalizer related configuration
type MarshalizerConfig struct {
Type string
//TODO check if we still need this
SizeCheckDelta uint32
}
// NTPConfig will hold the configuration for NTP queries
type NTPConfig struct {
Hosts []string
Port int
TimeoutMilliseconds int
SyncPeriodSeconds int
Version int
}
// EvictionWaitingListConfig will hold the configuration for the EvictionWaitingList
type EvictionWaitingListConfig struct {
Size uint
DB DBConfig
}
// EpochStartConfig will hold the configuration of EpochStart settings
type EpochStartConfig struct {
MinRoundsBetweenEpochs int64
RoundsPerEpoch int64
MinShuffledOutRestartThreshold float64
MaxShuffledOutRestartThreshold float64
MinNumConnectedPeersToStart int
MinNumOfPeersToConsiderBlockValid int
}
// BlockSizeThrottleConfig will hold the configuration for adaptive block size throttle
type BlockSizeThrottleConfig struct {
MinSizeInBytes uint32
MaxSizeInBytes uint32
}
// SoftwareVersionConfig will hold the configuration for software version checker
type SoftwareVersionConfig struct {
StableTagLocation string
PollingIntervalInMinutes int
}
// Config will hold the entire application configuration parameters
type Config struct {
MiniBlocksStorage StorageConfig
PeerBlockBodyStorage StorageConfig
BlockHeaderStorage StorageConfig
TxStorage StorageConfig
UnsignedTransactionStorage StorageConfig
RewardTxStorage StorageConfig
ShardHdrNonceHashStorage StorageConfig
MetaHdrNonceHashStorage StorageConfig
StatusMetricsStorage StorageConfig
ReceiptsStorage StorageConfig
SmartContractsStorage StorageConfig
SmartContractsStorageForSCQuery StorageConfig
BootstrapStorage StorageConfig
MetaBlockStorage StorageConfig
AccountsTrieStorage StorageConfig
PeerAccountsTrieStorage StorageConfig
TrieSnapshotDB DBConfig
EvictionWaitingList EvictionWaitingListConfig
StateTriesConfig StateTriesConfig
TrieStorageManagerConfig TrieStorageManagerConfig
BadBlocksCache CacheConfig
TxBlockBodyDataPool CacheConfig
PeerBlockBodyDataPool CacheConfig
TxDataPool CacheConfig
UnsignedTransactionDataPool CacheConfig
RewardTransactionDataPool CacheConfig
TrieNodesDataPool CacheConfig
WhiteListPool CacheConfig
WhiteListerVerifiedTxs CacheConfig
SmartContractDataPool CacheConfig
EpochStartConfig EpochStartConfig
AddressPubkeyConverter PubkeyConfig
ValidatorPubkeyConverter PubkeyConfig
Hasher TypeConfig
MultisigHasher TypeConfig
Marshalizer MarshalizerConfig
VmMarshalizer TypeConfig
TxSignMarshalizer TypeConfig
TxSignHasher TypeConfig
PublicKeyShardId CacheConfig
PublicKeyPeerId CacheConfig
PeerIdShardId CacheConfig
PublicKeyPIDSignature CacheConfig
PeerHonesty CacheConfig
Antiflood AntifloodConfig
ResourceStats ResourceStatsConfig
Heartbeat HeartbeatConfig
ValidatorStatistics ValidatorStatisticsConfig
GeneralSettings GeneralSettingsConfig
Consensus TypeConfig
StoragePruning StoragePruningConfig
TxLogsStorage StorageConfig
NTPConfig NTPConfig
HeadersPoolConfig HeadersPoolConfig
BlockSizeThrottleConfig BlockSizeThrottleConfig
VirtualMachine VirtualMachineServicesConfig
Hardfork HardforkConfig
Debug DebugConfig
Health HealthServiceConfig
SoftwareVersionConfig SoftwareVersionConfig
DbLookupExtensions DbLookupExtensionsConfig
Versions VersionsConfig
GasSchedule GasScheduleConfig
Logs LogsConfig
}
// LogsConfig will hold settings related to the logging sub-system
type LogsConfig struct {
LogFileLifeSpanInSec int
}
// StoragePruningConfig will hold settings related to storage pruning
type StoragePruningConfig struct {
Enabled bool
CleanOldEpochsData bool
NumEpochsToKeep uint64
NumActivePersisters uint64
}
// ResourceStatsConfig will hold all resource stats settings
type ResourceStatsConfig struct {
Enabled bool
RefreshIntervalInSec int
}
// HeartbeatConfig will hold all heartbeat settings
type HeartbeatConfig struct {
MinTimeToWaitBetweenBroadcastsInSec int
MaxTimeToWaitBetweenBroadcastsInSec int
DurationToConsiderUnresponsiveInSec int
HeartbeatRefreshIntervalInSec uint32
HideInactiveValidatorIntervalInSec uint32
HeartbeatStorage StorageConfig
}
// ValidatorStatisticsConfig will hold validator statistics specific settings
type ValidatorStatisticsConfig struct {
CacheRefreshIntervalInSec uint32
}
// MaxNodesChangeConfig defines a config change tuple, with a maximum number enabled in a certain epoch number
type MaxNodesChangeConfig struct {
EpochEnable uint32
MaxNumNodes uint32
NodesToShufflePerShard uint32
}
// GeneralSettingsConfig will hold the general settings for a node
type GeneralSettingsConfig struct {
StatusPollingIntervalSec int
MaxComputableRounds uint64
StartInEpochEnabled bool
SCDeployEnableEpoch uint32
BuiltInFunctionsEnableEpoch uint32
RelayedTransactionsEnableEpoch uint32
PenalizedTooMuchGasEnableEpoch uint32
SwitchJailWaitingEnableEpoch uint32
SwitchHysteresisForMinNodesEnableEpoch uint32
BelowSignedThresholdEnableEpoch uint32
TransactionSignedWithTxHashEnableEpoch uint32
MetaProtectionEnableEpoch uint32
AheadOfTimeGasUsageEnableEpoch uint32
GasPriceModifierEnableEpoch uint32
RepairCallbackEnableEpoch uint32
MaxNodesChangeEnableEpoch []MaxNodesChangeConfig
GenesisString string
GenesisMaxNumberOfShards uint32
BlockGasAndFeesReCheckEnableEpoch uint32
}
// FacadeConfig will hold different configuration option that will be passed to the main ElrondFacade
type FacadeConfig struct {
RestApiInterface string
PprofEnabled bool
}
// StateTriesConfig will hold information about state tries
type StateTriesConfig struct {
CheckpointRoundsModulus uint
AccountsStatePruningEnabled bool
PeerStatePruningEnabled bool
MaxStateTrieLevelInMemory uint
MaxPeerTrieLevelInMemory uint
}
// TrieStorageManagerConfig will hold config information about trie storage manager
type TrieStorageManagerConfig struct {
PruningBufferLen uint32
SnapshotsBufferLen uint32
MaxSnapshots uint32
}
// EndpointsThrottlersConfig holds a pair of an endpoint and its maximum number of simultaneous go routines
type EndpointsThrottlersConfig struct {
Endpoint string
MaxNumGoRoutines int32
}
// WebServerAntifloodConfig will hold the anti-flooding parameters for the web server
type WebServerAntifloodConfig struct {
SimultaneousRequests uint32
SameSourceRequests uint32
SameSourceResetIntervalInSec uint32
EndpointsThrottlers []EndpointsThrottlersConfig
}
// BlackListConfig will hold the p2p peer black list threshold values
type BlackListConfig struct {
ThresholdNumMessagesPerInterval uint32
ThresholdSizePerInterval uint64
NumFloodingRounds uint32
PeerBanDurationInSeconds uint32
}
// TopicMaxMessagesConfig will hold the maximum number of messages/sec per topic value
type TopicMaxMessagesConfig struct {
Topic string
NumMessagesPerSec uint32
}
// TopicAntifloodConfig will hold the maximum values per second to be used in certain topics
type TopicAntifloodConfig struct {
DefaultMaxMessagesPerSec uint32
MaxMessages []TopicMaxMessagesConfig
}
// TxAccumulatorConfig will hold the tx accumulator config values
type TxAccumulatorConfig struct {
MaxAllowedTimeInMilliseconds uint32
MaxDeviationTimeInMilliseconds uint32
}
// AntifloodConfig will hold all p2p antiflood parameters
type AntifloodConfig struct {
Enabled bool
NumConcurrentResolverJobs int32
OutOfSpecs FloodPreventerConfig
FastReacting FloodPreventerConfig
SlowReacting FloodPreventerConfig
PeerMaxOutput AntifloodLimitsConfig
Cache CacheConfig
WebServer WebServerAntifloodConfig
Topic TopicAntifloodConfig
TxAccumulator TxAccumulatorConfig
}
// FloodPreventerConfig will hold all flood preventer parameters
type FloodPreventerConfig struct {
IntervalInSeconds uint32
ReservedPercent float32
PeerMaxInput AntifloodLimitsConfig
BlackList BlackListConfig
}
// AntifloodLimitsConfig will hold the maximum antiflood limits in both number of messages and total
// size of the messages
type AntifloodLimitsConfig struct {
BaseMessagesPerInterval uint32
TotalSizePerInterval uint64
IncreaseFactor IncreaseFactorConfig
}
// IncreaseFactorConfig defines the configurations used to increase the set values of a flood preventer
type IncreaseFactorConfig struct {
Threshold uint32
Factor float32
}
// VirtualMachineServicesConfig holds configuration for the Virtual Machine(s): both querying and execution services.
type VirtualMachineServicesConfig struct {
Execution VirtualMachineConfig
Querying QueryVirtualMachineConfig
}
// VirtualMachineConfig holds configuration for a Virtual Machine service
type VirtualMachineConfig struct {
OutOfProcessConfig VirtualMachineOutOfProcessConfig
OutOfProcessEnabled bool
}
// QueryVirtualMachineConfig holds the configuration for the virtual machine(s) used in query process
type QueryVirtualMachineConfig struct {
VirtualMachineConfig
NumConcurrentVMs int
}
// VirtualMachineOutOfProcessConfig holds configuration for out-of-process virtual machine(s)
type VirtualMachineOutOfProcessConfig struct {
LogsMarshalizer string
MessagesMarshalizer string
MaxLoopTime int
}
// HardforkConfig holds the configuration for the hardfork trigger
type HardforkConfig struct {
ExportStateStorageConfig StorageConfig
ExportKeysStorageConfig StorageConfig
ExportTriesStorageConfig StorageConfig
ImportStateStorageConfig StorageConfig
ImportKeysStorageConfig StorageConfig
PublicKeyToListenFrom string
ImportFolder string
GenesisTime int64
StartRound uint64
StartNonce uint64
CloseAfterExportInMinutes uint32
StartEpoch uint32
ValidatorGracePeriodInEpochs uint32
EnableTrigger bool
EnableTriggerFromP2P bool
MustImport bool
AfterHardFork bool
}
// DbLookupExtensionsConfig holds the configuration for the db lookup extensions
type DbLookupExtensionsConfig struct {
Enabled bool
MiniblocksMetadataStorageConfig StorageConfig
MiniblockHashByTxHashStorageConfig StorageConfig
EpochByHashStorageConfig StorageConfig
ResultsHashesByTxHashStorageConfig StorageConfig
}
// DebugConfig will hold debugging configuration
type DebugConfig struct {
InterceptorResolver InterceptorResolverDebugConfig
Antiflood AntifloodDebugConfig
}
// HealthServiceConfig will hold health service (monitoring) configuration
type HealthServiceConfig struct {
IntervalVerifyMemoryInSeconds int
IntervalDiagnoseComponentsInSeconds int
IntervalDiagnoseComponentsDeeplyInSeconds int
MemoryUsageToCreateProfiles int
NumMemoryUsageRecordsToKeep int
FolderPath string
}
// InterceptorResolverDebugConfig will hold the interceptor-resolver debug configuration
type InterceptorResolverDebugConfig struct {
Enabled bool
EnablePrint bool
CacheSize int
IntervalAutoPrintInSeconds int
NumRequestsThreshold int
NumResolveFailureThreshold int
DebugLineExpiration int
}
// AntifloodDebugConfig will hold the antiflood debug configuration
type AntifloodDebugConfig struct {
Enabled bool
CacheSize int
IntervalAutoPrintInSeconds int
}
// ApiRoutesConfig holds the configuration related to Rest API routes
type ApiRoutesConfig struct {
APIPackages map[string]APIPackageConfig
}
// APIPackageConfig holds the configuration for the routes of each package
type APIPackageConfig struct {
Routes []RouteConfig
}
// RouteConfig holds the configuration for a single route
type RouteConfig struct {
Name string
Open bool
}
// VersionByEpochs represents a version entry that will be applied between the provided epochs
type VersionByEpochs struct {
StartEpoch uint32
Version string
}
// VersionsConfig represents the versioning config area
type VersionsConfig struct {
DefaultVersion string
VersionsByEpochs []VersionByEpochs
Cache CacheConfig
}
// GasScheduleByEpochs represents a gas schedule toml entry that will be applied from the provided epoch
type GasScheduleByEpochs struct {
StartEpoch uint32
FileName string
}
// GasScheduleConfig represents the versioning config area for the gas schedule toml
type GasScheduleConfig struct {
GasScheduleByEpochs []GasScheduleByEpochs
}