-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fraud detection: limit number of measurements per round #78
Comments
@juliangruber I think you already implemented this, right? It would also be great to add telemetry & visualisation - p5/p50/p95 values for the "number of measurements submitted by a node" so that we know how often we slash nodes. Should we keep this issue open to remind us of this remaining task? |
See #101 |
Yes, in #101.
Good idea!
Merging that PR will close this issue :) |
Detect when a checker node is submitting too many measurements.
In https://www.notion.so/pl-strflt/SPARK-tasking-v2-604e26d57f6b4892946525bcb3a77104, we are describing the following parameters:
CC
- “committee count” - how many committees we want to form. Initially, this will be a hardcoded parameter. We will manually tweak it over time based on the number of active checker nodes.TC
- “tasks per committee” - how many tasks to define for each committee.TN
- “tasks per node” - how many tasks a node performs. This value should be a fraction of TC, e.g.TN = TC/5
At the moment,
CC=1
andTC=400
.Assuming retrievals are fast and can be completed in ~1 second, and the spark checker waits for 10 seconds between tasks, and the SPARK round is ~60 minutes, then an honest node can complete around 327 tasks per round.
Proposed changes:
(participant_address, inet_group)
as the identifier.The text was updated successfully, but these errors were encountered: