-
Notifications
You must be signed in to change notification settings - Fork 152
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
Processor crashed with missing blocks despite correct DB entries #253
Comments
Not sure that caused the error, but blocks weren't missed. More looks like there was some issue on the rpc node side due to that it was unable to return new blocks for a certain period of time, and these 8 blocks weren't printed in the logs because only the last block of the batch is printed. Regarding to the error itself, it seems that there was a fork/rollback, but processor didn't handle it correctly, will investigate. |
@belopash is this completed issue link to a MR ? |
Perhaps |
@belopash I just have the same issue again with the processor:
Nothing happend after this.
So this issue is not fixed =) |
After an update, getting the same error with assertion on line 62 as on your screenshot.
Here you can see the current version of our dependencies: https://git.duniter.org/nodes/duniter-squid/-/blob/main/package.json?ref_type=heads:
|
Did it happen again or you are trying to run against the same DB? |
Yes, it happened again on a fresh db. Currently our indexer is still moving a lot so we are re-indexing from scratch at every update that touches the db. Multiple instances met the same bug. |
@Hugo-Trentesaux Is this endpoint still valid - wss://gdev.p2p.legal/ws? Is it what you use? |
Yes, this endpoint is on our current dev network. You can also use:
And see other nodes connected to this network on the telemetry: https://telemetry.polkadot.io/#list/0xc184c4ccde8e771483bba7a01533d007a3e19a66d3537c7fd59c5d9e3550b6c3 About the indexers, you can interact with graphql API on :
and see latest indexed block with:
|
My subsquid node processor crashed with this logs:
Error:
[ERR_ASSERTION]: The expression evaluated to a falsy value:\n\n (0, assert_1.default)(head.height >= this.chain[0].height)
It look likes it missed 8 higher blocks, between
435163
and435172
, which is the cause of this error.This indexer is listening a local duniter v2s archive node.
indexer enpoind:
https://gdev-squid.axiom-team.fr/v1/graphql
duniter endpoint:
wss://gdev.p2p.legal/ws
We observe that the problem occurs exactly at midnight, which would be a strange coincidence:
We also notice a gap of 6 minutes and 48 seconds between block 435163 and 435172, whereas only 48 seconds should have passed.
Disturbingly, the missing blocks in the logs seem to be present in the DB, and correctly dated:
Here a simple processor restart solve the problem, but whatever the cause of the problem, processor should be able to recover using its checkpoints, without manual restart.
Version:
"@subsquid/substrate-processor": "^8.1.1"
The text was updated successfully, but these errors were encountered: