oxen-core/src/blockchain_utilities
Doyle fdc340b0ee
Service node checkpointing: rebased on relaxed deregistration (#662)
* core: do not commit half constructed batch db txn

* Add defer macro

* Revert dumb extra copy/move change

* Fix pop_blocks not calling hooks, fix BaseTestDB missing prototypes

* Merge ServiceNodeCheckpointing5 branch, syncing and integration fixes

* Update tests to compile with relaxed-registration changes

* Get back to feature parity pre-relaxed registration changes

* Remove debug changes noticed in code review and some small bugs
2019-06-26 14:00:05 +10:00
..
blockchain_ancestry.cpp Update monero copyright to 2019 pre-emptively to make merge simpler 2019-04-12 14:36:43 +10:00
blockchain_blackball.cpp Make tx type and version scoped enums 2019-06-19 17:47:03 -03:00
blockchain_depth.cpp Update monero copyright to 2019 pre-emptively to make merge simpler 2019-04-12 14:36:43 +10:00
blockchain_export.cpp Update monero copyright to 2019 pre-emptively to make merge simpler 2019-04-12 14:36:43 +10:00
blockchain_import.cpp Service node checkpointing: rebased on relaxed deregistration (#662) 2019-06-26 14:00:05 +10:00
blockchain_objects.h Unify and move responsibility of voting to quorum_cop (#615) 2019-05-31 11:06:42 +10:00
blockchain_prune.cpp Merge commit 'bd42903' into LokiMergeUpstream 2019-04-12 18:37:56 +10:00
blockchain_prune_known_spent_data.cpp Make tx type and version scoped enums 2019-06-19 17:47:03 -03:00
blockchain_stats.cpp Merge commit '5db72d1' into LokiMergeUpstream 2019-04-12 18:41:07 +10:00
blockchain_usage.cpp Update monero copyright to 2019 pre-emptively to make merge simpler 2019-04-12 14:36:43 +10:00
blockchain_utilities.h Update monero copyright to 2019 pre-emptively to make merge simpler 2019-04-12 14:36:43 +10:00
blocksdat_file.cpp Update monero copyright to 2019 pre-emptively to make merge simpler 2019-04-12 14:36:43 +10:00
blocksdat_file.h Update monero copyright to 2019 pre-emptively to make merge simpler 2019-04-12 14:36:43 +10:00
bootstrap_file.cpp Update monero copyright to 2019 pre-emptively to make merge simpler 2019-04-12 14:36:43 +10:00
bootstrap_file.h Update monero copyright to 2019 pre-emptively to make merge simpler 2019-04-12 14:36:43 +10:00
bootstrap_serialization.h Update monero copyright to 2019 pre-emptively to make merge simpler 2019-04-12 14:36:43 +10:00
CMakeLists.txt Update monero copyright to 2019 pre-emptively to make merge simpler 2019-04-12 14:36:43 +10:00
README.md Merge commit 'e8487fa' into LokiMergeUpstream 2019-05-17 04:39:08 +10:00

Loki Blockchain Utilities

Copyright (c) 2014-2019, The Monero Project Copyright (c) 2018, The Loki Project

Introduction

The blockchain utilities allow one to import and export the blockchain.

Usage:

See also each utility's "--help" option.

Export an existing blockchain database

$ loki-blockchain-export

This loads the existing blockchain and exports it to $LOKI_DATA_DIR/export/blockchain.raw

Import the exported file

$ loki-blockchain-import

This imports blocks from $LOKI_DATA_DIR/export/blockchain.raw (exported using the loki-blockchain-export tool as described above) into the current database.

Defaults: --batch on, --batch size 20000, --verify on

Batch size refers to number of blocks and can be adjusted for performance based on available RAM.

Verification should only be turned off if importing from a trusted blockchain.

If you encounter an error like "resizing not supported in batch mode", you can just re-run the loki-blockchain-import command again, and it will restart from where it left off.

## use default settings to import blockchain.raw into database
$ loki-blockchain-import

## fast import with large batch size, database mode "fastest", verification off
$ loki-blockchain-import --batch-size 20000 --database lmdb#fastest --verify off

Import options

--input-file specifies input file path for importing

default: <data-dir>/export/blockchain.raw

--output-file specifies output file path to export to

default: <data-dir>/export/blockchain.raw

--block-stop stop at block number

--database <database type>

--database <database type>#<flag(s)>

database type: lmdb, memory

flags:

The flag after the # is interpreted as a composite mode/flag if there's only one (no comma separated arguments).

The composite mode represents multiple DB flags and support different database types:

safe, fast, fastest

Database-specific flags can be set instead.

LMDB flags (more than one may be specified):

nosync, nometasync, writemap, mapasync, nordahead

Examples:

$ loki-blockchain-import --database lmdb#fastest

$ loki-blockchain-import --database lmdb#nosync

$ loki-blockchain-import --database lmdb#nosync,nometasync