Nodeos Replays
Nodeos provides various options for replaying blockchain blocks. This can be useful if, for example, a node has downloaded a blocks.log file from the internet (as a faster alternative to synchronizing from the p2p network) and the node wants to use it to quickly catch up with the network, or if you want to know the chain state at specified points in a blockchain's life.
Replaying data can be done in two ways:
From a
blocks.logfile:
Theblocks.logfile contains all irreversible transactions on the blockchain. All instances ofnodeoswrite irreversible blocks to theblocks.logfile, which is located at thedata/blocksdirectory relative to thenodeosdirectory. Using ablocks.logfile to replay will allow you to start anodeosinstance, which recreates the entire history of the blockchain locally, without adding unnecessary load to the network.From a snapshot file:
Snapshot files can be created from a runningnodeosinstance. The snapshot contains the chain state for the block referenced when created. It is recommended to use snapshot files created from blocks that are irreversible. Using a snapshot file to replay allows you to quickly start anodeosinstance which has a full and correct chain state at a specified block number, but not a full history of transactions up to that block number. From that point on thenodeosinstance will operate in the configured manner.
Replay How-Tos
- How To Generate a Blocks Log
- How To Generate a Snapshot
- How To Replay from a Blocks Log
- How to Replay from a Snapshot
Replay Snapshot-specific Options
Typing nodeos --help on the command line will show you all the options available for running nodeos. The snapshot and replay specific options are:
--force-all-checks
The node operator may not trust the source of theblocks.logfile and may want to runnodeoswith--replay-blockchain --force-all-checksthe first time to make sure the blocks are good. The--force-all-checksflag can be passed intonodeosto tell it to not skip any checks during replay.--disable-replay-opts
By default, during replay,nodeosdoes not create a stack of chain state deltas (this stack is used to enable rollback of state for reversible blocks.) This is a replay performance optimization. Using this option turns off this replay optimization and creates a stack of chain state deltas. If you are using the state history plugin you must use this option.--replay-blockchain
This option tellsnodeosto replay from theblocks.logfile located in the data/blocks directory.nodeoswill clear the chain state and replay all blocks.--hard-replay-blockchain
This option tellsnodeosto replay from theblocks.logfile located in the data/blocks directory.nodeosmakes a backup of the existingblocks.logfile and will then clear the chain state and replay all blocks. This option assumes that the backupblocks.logfile may contain corrupted blocks, sonodeosreplays as many blocks as possible from the backup block log. Whennodeosfinds the first corrupted block while replying fromnodeos.logit will synchronize the rest of the blockchain from the p2p network.--delete-all-blocks
This tellsnodeosto clear the local chain state and local theblocks.logfile, If you intend to then synchronize from the p2p network you would need to provide a correctgenesis.jsonfile. This option is not recommended.--truncate-at-block
Default argument (=0), only used if the given value is non-zero. Using this option when replaying the blockchain will force the replay to stop at the specified block number. This option will only work if replaying with the--hard-replay-blockchainoption. The localnodeosprocess will contain the chain state for that block. This option may be useful for checking blockchain state at specific points in time. It is intended for testing/validation and is not intended to be used when creating a localnodeosinstance which is synchronized with the network.--snapshot
Use this option to specify which snapshot file to use to recreate the chain state from a snapshot file. This option will not replay theblocks.logfile. Thenodeosinstance will not know the full transaction history of the blockchain.--snapshots-dir
You can use this to specify the location of the snapshot file directory (absolute path or relative to application data dir.)--blocks-dir
You can use this to specify the location of theblocks.logfile directory (absolute path or relative to application data dir)