Option to process only some fraction of blocks at head #213
Labels
No Label
bug
critical
duplicate
enhancement
epic
help wanted
in progress
invalid
low priority
question
rebase
v1
v5
wontfix
Copied from Github
Kind/Breaking
Kind/Bug
Kind/Documentation
Kind/Enhancement
Kind/Feature
Kind/Security
Kind/Testing
Priority
Critical
Priority
High
Priority
Low
Priority
Medium
Reviewed
Confirmed
Reviewed
Duplicate
Reviewed
Invalid
Reviewed
Won't Fix
Status
Abandoned
Status
Blocked
Status
Need More Info
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: cerc-io/go-ethereum#213
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
E.g. every even block, only process diffs when
block_number % 2 == 0
.In this manner, we can have multiple geth nodes processing statediffs at head in parallel without duplicating efforts. We can support some configurable degree of overlap/redundancy across multiple geth nodes processing statediffs at head.
We would want to define modulo as well as an offset:
(block_number + offset) % modulo == 0
.E.g.
(block_number + 0) % 2
and(block_number + 1) % 2
would define a processing pattern for two clients that alternate every block, providing full coverage.