near / near-indexer-for-explorer

Watch NEAR network and store all the data from NEAR blockchain to PostgreSQL database
https://near-indexers.io/docs/projects/near-indexer-for-explorer
GNU General Public License v3.0
124 stars 56 forks source link

Is this warning message normal? #181

Closed rayn316 closed 2 years ago

rayn316 commented 2 years ago

I started indexing information from the genesis block, do I need to pay attention to this kind of information afterwards Cmd: cargo run --release -- --home-dir ~/.near/mainnet run --store-genesis --stream-while-syncing --concurrency 100 sync-from-block --height 9820214

WARN: WARN indexer_for_explorer: Going to retry to find parent transactions for receipts in 400 milliseconds...

khorolets commented 2 years ago

It's a retry logic. Sometimes indexer can't store data immediately for different reasons: a new data to store relies on previous data to be store and the latter hasn't been stored yet. In this case indexer will retry for ~5 min.

If the warning is persistent for all 5 min indexer will stop with error. That might be a signal that something is wrong.

If the warning occurs from time to time it's ok.

Let us know if this helps and feel free to close the issue.

rayn316 commented 2 years ago

@khorolets I understand, thank you, you can close this post.