-
Notifications
You must be signed in to change notification settings - Fork 22
Syncing is not continue #805
Description
When I set up my node before, around versions v0.8.3 to v0.8.5.1, I was able to sync blocks continuously — the block height would increase like +1 +1 +1 +1, just like the official node.
but i forgot to paid the invoice so the server was down for 2 days and all data gone
now, no matter whether I run it with the official config or with my previous custom setup, it only updates in batches.
Each update processes about 100–200 blocks at once, which is basically useless for my case.
I asked an AI about it, and it suggested the issue might be this log:
INFO[09-30|05:20:54.121] [16/17 DataStream] no streamer provided, skipping stage
That it can’t capture the small packets sent by the datastream..?
Is that really the case? Or could there be some other issue?
I remember that when I was running it before, I would see logs like this:
INFO[09-30|05:21:30.667] [Datastream client] Sending entry command entryNum=173892109
INFO[09-30|05:21:30.925] [Datastream client] Sending entry command entryNum=173892108
INFO[09-30|05:21:31.183] [Datastream client] Sending entry command entryNum=173892107
INFO[09-30|05:21:31.441] [Datastream client] Sending entry command entryNum=173892106
INFO[09-30|05:21:31.699] [Datastream client] Sending entry command entryNum=173892105
INFO[09-30|05:21:31.957] [Datastream client] Sending entry command entryNum=173892104
The entire log would just keep printing lines like that, and the blocks were increasing +1 +1 +1.
But now it just runs a few lines, and then goes back into stage3 (the longest stage, taking several seconds).
I also noticed in the config.yaml there are these two lines:
zkevm.increment-tree-always: false
zkevm.rebuild-tree-after: 10000000
When I was running it before, my setup didn’t have:
zkevm.increment-tree-always: false
zkevm.rebuild-tree-after: 10000000
But now, whether or not I include these two lines, it still does batch updates just like I described…
Does anyone have an explanation for this?
Batch updates are completely unusable for my needs.
btw i am using HK server