Last active
April 14, 2016 01:19
-
-
Save hyc/ffce33a965134ea2e52f2ee2d0c4c5f3 to your computer and use it in GitHub Desktop.
Wallet restore optimization
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Restoring a wallet using https://github.com/LMDB/bitmonero/commit/be15f5a6d945c3926781133bca8c838d5f94a218 | |
The blockchain had 1025121 blocks, the first block containing a txn for the wallet is 882230. So 86% of the | |
blockchain would have been scanned without having anything relevant. | |
See https://github.com/monero-project/bitmonero/issues/805 for more discussion. | |
violino:/home/software/bitmonero/build/debug/bin> /usr/bin/time -v ./simplewallet --restore-deterministic-wallet --wallet-file wall1 --password tester1 | |
Creating the logger system | |
Monero 'Hydrogen Helix' (v0.9.4.0-be15f5a) | |
Logging at log level 0 to /home/software/bitmonero/build/debug/bin/./simplewallet.log | |
Specify Electrum seed: xxx | |
Generated new wallet: xxx | |
View key: xxx | |
********************************************************************** | |
[wallet 4262Dp]: set refresh-height 882220 | |
[wallet 4262Dp]: refresh | |
Starting refresh... | |
Height 882230, transaction ... | |
Height 1023626, transaction ... | |
Refresh done, blocks received: 142902 | |
Balance: 399.302186410000, unlocked balance: 399.302186410000 | |
[wallet 4262Dp]: exit | |
Command being timed: "./simplewallet --restore-deterministic-wallet --wallet-file wall1 --password tester1" | |
User time (seconds): 515.98 | |
System time (seconds): 13.98 | |
Percent of CPU this job got: 187% | |
Elapsed (wall clock) time (h:mm:ss or m:ss): 4:42.49 | |
Average shared text size (kbytes): 0 | |
Average unshared data size (kbytes): 0 | |
Average stack size (kbytes): 0 | |
Average total size (kbytes): 0 | |
Maximum resident set size (kbytes): 277224 | |
Average resident set size (kbytes): 0 | |
Major (requiring I/O) page faults: 0 | |
Minor (reclaiming a frame) page faults: 114703 | |
Voluntary context switches: 614085 | |
Involuntary context switches: 237823 | |
Swaps: 0 | |
File system inputs: 0 | |
File system outputs: 80960 | |
Socket messages sent: 0 | |
Socket messages received: 0 | |
Signals delivered: 0 | |
Page size (bytes): 4096 | |
Exit status: 0 | |
Daemon status | |
violino:/home/software/bitmonero/build/debug/bin> /usr/bin/time -v ./bitmonerod.fast --add-exclusive-node 127.0.0.1:9999 --data-dir /mnt/1/bitmo --db-sync-mode fast:async:5000 --no-igd | |
Creating the logger system | |
2016-Apr-13 23:37:54.043793 Initializing cryptonote protocol... | |
2016-Apr-13 23:37:54.043850 Cryptonote protocol initialized OK | |
2016-Apr-13 23:37:54.044054 Initializing p2p server... | |
2016-Apr-13 23:37:54.436400 Set limit-up to 2048 kB/s | |
2016-Apr-13 23:37:54.436814 Set limit-down to 8192 kB/s | |
2016-Apr-13 23:37:54.436902 Set limit-up to 2048 kB/s | |
2016-Apr-13 23:37:54.437011 Set limit-down to 8192 kB/s | |
2016-Apr-13 23:37:54.438277 Binding on 0.0.0.0:18080 | |
2016-Apr-13 23:37:54.438452 Net service bound to 0.0.0.0:18080 | |
2016-Apr-13 23:37:54.438503 P2p server initialized OK | |
2016-Apr-13 23:37:54.438679 Initializing core rpc server... | |
2016-Apr-13 23:37:54.438795 Binding on 127.0.0.1:18081 | |
2016-Apr-13 23:37:54.438947 Core rpc server initialized OK on port: 18081 | |
2016-Apr-13 23:37:54.439000 Initializing core... | |
2016-Apr-13 23:37:54.439405 Loading blockchain from folder /mnt/1/bitmo/lmdb ... | |
2016-Apr-13 23:37:54.439482 option: fast | |
2016-Apr-13 23:37:54.439524 option: async | |
2016-Apr-13 23:37:54.439562 option: 5000 | |
2016-Apr-13 23:37:54.516856 Blockchain initialized. last block: 1025121, d0.h0.m46.s31 time ago, current difficulty: 1663001247 | |
2016-Apr-13 23:37:55.324837 WARNING: no two valid MoneroPulse DNS checkpoint records were received | |
2016-Apr-13 23:37:55.324971 [batch] DB resize needed | |
2016-Apr-13 23:37:55.333729 LMDB Mapsize increased. Old: 11578MiB, New: 12602MiB | |
2016-Apr-13 23:37:55.334268 Core initialized OK | |
2016-Apr-13 23:37:55.334314 Starting core rpc server... | |
2016-Apr-13 23:37:55.334355 Run net_service loop( 2 threads)... | |
2016-Apr-13 23:37:55.334600 [SRV_MAIN]Core rpc server started ok | |
2016-Apr-13 23:37:55.334845 [SRV_MAIN]Starting p2p net loop... | |
2016-Apr-13 23:37:55.334949 [SRV_MAIN]Run net_service loop( 10 threads)... | |
2016-Apr-13 23:37:56.335232 [P2P9] | |
********************************************************************** | |
The daemon will start synchronizing with the network. It may take up to several hours. | |
You can set the level of process detailization* through "set_log <level>" command*, where <level> is between 0 (no details) and 4 (very verbose). | |
Use "help" command to see the list of available commands. | |
Note: in case you need to interrupt the process, use "exit" command. Otherwise, the current progress won't be saved. | |
********************************************************************** | |
exit | |
2016-Apr-13 23:43:08.742758 [node] Stop signal sent | |
Stop signal sent | |
2016-Apr-13 23:43:08.743240 [SRV_MAIN]net_service loop stopped. | |
2016-Apr-13 23:43:08.743307 [SRV_MAIN]p2p net loop stopped | |
2016-Apr-13 23:43:08.743388 [node] Stop signal sent | |
2016-Apr-13 23:43:08.743412 [SRV_MAIN]Stopping core rpc server... | |
2016-Apr-13 23:43:08.743702 [SRV_MAIN]Node stopped. | |
2016-Apr-13 23:43:08.743740 [SRV_MAIN]Deinitializing rpc server... | |
2016-Apr-13 23:43:08.743906 [SRV_MAIN]Deinitializing p2p... | |
2016-Apr-13 23:43:09.372497 [SRV_MAIN]Deinitializing core... | |
2016-Apr-13 23:43:09.372682 [SRV_MAIN]Closing IO Service. | |
2016-Apr-13 23:43:09.537340 [SRV_MAIN]Deinitializing cryptonote_protocol... | |
Command exited with non-zero status 1 | |
Command being timed: "./bitmonerod.fast --add-exclusive-node 127.0.0.1:9999 --data-dir /mnt/1/bitmo --db-sync-mode fast:async:5000 --no-igd" | |
User time (seconds): 10.85 | |
System time (seconds): 2.29 | |
Percent of CPU this job got: 4% | |
Elapsed (wall clock) time (h:mm:ss or m:ss): 5:16.50 | |
Average shared text size (kbytes): 0 | |
Average unshared data size (kbytes): 0 | |
Average stack size (kbytes): 0 | |
Average total size (kbytes): 0 | |
Maximum resident set size (kbytes): 2454612 | |
Average resident set size (kbytes): 0 | |
Major (requiring I/O) page faults: 39 | |
Minor (reclaiming a frame) page faults: 539256 | |
Voluntary context switches: 9478 | |
Involuntary context switches: 2564 | |
Swaps: 0 | |
File system inputs: 312 | |
File system outputs: 56 | |
Socket messages sent: 0 | |
Socket messages received: 0 | |
Signals delivered: 0 | |
Page size (bytes): 4096 | |
Exit status: 1 | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This is with only the refresh-height patch; the blockchain is on a 5400rpm HDD and the majority of blocks | |
were not yet cached in RAM. The fact the blocks were not cached yet is reflected in the 810165 major page | |
faults the daemon incurred for this job. | |
violino:/home/software/bitmonero/build/debug/bin> /usr/bin/time -v ./simplewallet --restore-deterministic-wallet --wallet-file wall1 --password tester1 | |
Creating the logger system | |
Monero 'Hydrogen Helix' (v0.9.4.0-2b4895d) | |
Logging at log level 0 to /home/software/bitmonero/build/debug/bin/./simplewallet.log | |
Specify Electrum seed: xxx | |
Generated new wallet: xxx | |
View key: xxx | |
********************************************************************** | |
[wallet 4262Dp]: set refresh-height 882220 | |
[wallet 4262Dp]: refresh | |
Starting refresh... | |
Height 882230, transaction ... | |
Height 1023626, transaction ... | |
Refresh done, blocks received: 1025121 | |
Balance: 399.302186410000, unlocked balance: 399.302186410000 | |
[wallet 4262Dp]: exit | |
Command being timed: "./simplewallet --restore-deterministic-wallet --wallet-file wall1 --password tester1" | |
User time (seconds): 610.12 | |
System time (seconds): 48.36 | |
Percent of CPU this job got: 39% | |
Elapsed (wall clock) time (h:mm:ss or m:ss): 27:56.49 | |
Average shared text size (kbytes): 0 | |
Average unshared data size (kbytes): 0 | |
Average stack size (kbytes): 0 | |
Average total size (kbytes): 0 | |
Maximum resident set size (kbytes): 398604 | |
Average resident set size (kbytes): 0 | |
Major (requiring I/O) page faults: 1 | |
Minor (reclaiming a frame) page faults: 547856 | |
Voluntary context switches: 2228591 | |
Involuntary context switches: 544154 | |
Swaps: 0 | |
File system inputs: 88 | |
File system outputs: 80960 | |
Socket messages sent: 0 | |
Socket messages received: 0 | |
Signals delivered: 0 | |
Page size (bytes): 4096 | |
Exit status: 0 | |
Daemon status | |
iolino:/home/software/bitmonero/build/debug/bin> /usr/bin/time -v ./bitmonerod.fast --add-exclusive-node 127.0.0.1:9999 --data-dir /mnt/1/bitmo --db-sync-mode fast:async:5000 --no-igd | |
Creating the logger system | |
2016-Apr-13 23:50:45.936353 Initializing cryptonote protocol... | |
2016-Apr-13 23:50:45.936415 Cryptonote protocol initialized OK | |
2016-Apr-13 23:50:45.937666 Initializing p2p server... | |
2016-Apr-13 23:50:46.172225 Set limit-up to 2048 kB/s | |
2016-Apr-13 23:50:46.172374 Set limit-down to 8192 kB/s | |
2016-Apr-13 23:50:46.172457 Set limit-up to 2048 kB/s | |
2016-Apr-13 23:50:46.172565 Set limit-down to 8192 kB/s | |
2016-Apr-13 23:50:46.577457 Binding on 0.0.0.0:18080 | |
2016-Apr-13 23:50:46.577581 Net service bound to 0.0.0.0:18080 | |
2016-Apr-13 23:50:46.577611 P2p server initialized OK | |
2016-Apr-13 23:50:46.577720 Initializing core rpc server... | |
2016-Apr-13 23:50:46.578517 Binding on 127.0.0.1:18081 | |
2016-Apr-13 23:50:46.578630 Core rpc server initialized OK on port: 18081 | |
2016-Apr-13 23:50:46.578664 Initializing core... | |
2016-Apr-13 23:50:46.579766 Loading blockchain from folder /mnt/1/bitmo/lmdb ... | |
2016-Apr-13 23:50:46.580088 option: fast | |
2016-Apr-13 23:50:46.580130 option: async | |
2016-Apr-13 23:50:46.580167 option: 5000 | |
2016-Apr-13 23:50:56.753080 Blockchain initialized. last block: 1025121, d0.h0.m59.s33 time ago, current difficulty: 1663001247 | |
2016-Apr-13 23:50:56.853607 WARNING: no two valid MoneroPulse DNS checkpoint records were received | |
2016-Apr-13 23:50:57.164062 Core initialized OK | |
2016-Apr-13 23:50:57.164122 Starting core rpc server... | |
2016-Apr-13 23:50:57.164164 Run net_service loop( 2 threads)... | |
2016-Apr-13 23:50:57.164365 [SRV_MAIN]Core rpc server started ok | |
2016-Apr-13 23:50:57.164546 [SRV_MAIN]Starting p2p net loop... | |
2016-Apr-13 23:50:57.165051 [SRV_MAIN]Run net_service loop( 10 threads)... | |
2016-Apr-13 23:50:58.165206 [P2P9] | |
********************************************************************** | |
The daemon will start synchronizing with the network. It may take up to several hours. | |
You can set the level of process detailization* through "set_log <level>" command*, where <level> is between 0 (no details) and 4 (very verbose). | |
Use "help" command to see the list of available commands. | |
Note: in case you need to interrupt the process, use "exit" command. Otherwise, the current progress won't be saved. | |
********************************************************************** | |
exit | |
2016-Apr-14 00:18:25.529325 [node] Stop signal sent | |
Stop signal sent | |
2016-Apr-14 00:18:25.529661 [SRV_MAIN]net_service loop stopped. | |
2016-Apr-14 00:18:25.529698 [SRV_MAIN]p2p net loop stopped | |
2016-Apr-14 00:18:25.529748 [node] Stop signal sent | |
2016-Apr-14 00:18:25.530093 [SRV_MAIN]Stopping core rpc server... | |
2016-Apr-14 00:18:25.530289 [SRV_MAIN]Node stopped. | |
2016-Apr-14 00:18:25.530327 [SRV_MAIN]Deinitializing rpc server... | |
2016-Apr-14 00:18:25.530500 [SRV_MAIN]Deinitializing p2p... | |
2016-Apr-14 00:18:26.350146 [SRV_MAIN]Deinitializing core... | |
2016-Apr-14 00:18:26.350325 [SRV_MAIN]Closing IO Service. | |
2016-Apr-14 00:18:26.648620 [SRV_MAIN]Deinitializing cryptonote_protocol... | |
Command exited with non-zero status 1 | |
Command being timed: "./bitmonerod.fast --add-exclusive-node 127.0.0.1:9999 --data-dir /mnt/1/bitmo --db-sync-mode fast:async:5000 --no-igd" | |
User time (seconds): 92.50 | |
System time (seconds): 27.85 | |
Percent of CPU this job got: 7% | |
Elapsed (wall clock) time (h:mm:ss or m:ss): 27:41.73 | |
Average shared text size (kbytes): 0 | |
Average unshared data size (kbytes): 0 | |
Average stack size (kbytes): 0 | |
Average total size (kbytes): 0 | |
Maximum resident set size (kbytes): 4657668 | |
Average resident set size (kbytes): 0 | |
Major (requiring I/O) page faults: 810165 | |
Minor (reclaiming a frame) page faults: 3567904 | |
Voluntary context switches: 851705 | |
Involuntary context switches: 19737 | |
Swaps: 0 | |
File system inputs: 6483904 | |
File system outputs: 56 | |
Socket messages sent: 0 | |
Socket messages received: 0 | |
Signals delivered: 0 | |
Page size (bytes): 4096 | |
Exit status: 1 | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This is the same as the previous, but after the blocks got cached in RAM | |
violino:/home/software/bitmonero/build/debug/bin> /usr/bin/time -v ./simplewallet --restore-deterministic-wallet --wallet-file wall1 --password tester1 | |
Creating the logger system | |
Monero 'Hydrogen Helix' (v0.9.4.0-2b4895d) | |
Logging at log level 0 to /home/software/bitmonero/build/debug/bin/./simplewallet.log | |
Specify Electrum seed: xxx | |
Generated new wallet: xxx | |
View key: xxx | |
********************************************************************** | |
[wallet 4262Dp]: set refresh-height 882220 | |
[wallet 4262Dp]: refresh | |
Starting refresh... | |
Height 882230, transaction ... | |
Height 1023626, transaction ... | |
Refresh done, blocks received: 1025121 | |
Balance: 399.302186410000, unlocked balance: 399.302186410000 | |
[wallet 4262Dp]: exit | |
Command being timed: "./simplewallet --restore-deterministic-wallet --wallet-file wall1 --password tester1" | |
User time (seconds): 614.95 | |
System time (seconds): 44.33 | |
Percent of CPU this job got: 168% | |
Elapsed (wall clock) time (h:mm:ss or m:ss): 6:32.26 | |
Average shared text size (kbytes): 0 | |
Average unshared data size (kbytes): 0 | |
Average stack size (kbytes): 0 | |
Average total size (kbytes): 0 | |
Maximum resident set size (kbytes): 350468 | |
Average resident set size (kbytes): 0 | |
Major (requiring I/O) page faults: 0 | |
Minor (reclaiming a frame) page faults: 655376 | |
Voluntary context switches: 2301616 | |
Involuntary context switches: 660312 | |
Swaps: 0 | |
File system inputs: 8 | |
File system outputs: 80952 | |
Socket messages sent: 0 | |
Socket messages received: 0 | |
Signals delivered: 0 | |
Page size (bytes): 4096 | |
Exit status: 0 | |
Daemon status | |
violino:/home/software/bitmonero/build/debug/bin> /usr/bin/time -v ./bitmonerod.fast --add-exclusive-node 127.0.0.1:9999 --data-dir /mnt/1/bitmo --db-sync-mode fast:async:5000 --no-igd | |
Creating the logger system | |
2016-Apr-14 01:07:56.696085 Initializing cryptonote protocol... | |
2016-Apr-14 01:07:56.696142 Cryptonote protocol initialized OK | |
2016-Apr-14 01:07:56.696349 Initializing p2p server... | |
2016-Apr-14 01:07:56.984655 Set limit-up to 2048 kB/s | |
2016-Apr-14 01:07:56.984825 Set limit-down to 8192 kB/s | |
2016-Apr-14 01:07:56.984880 Set limit-up to 2048 kB/s | |
2016-Apr-14 01:07:56.984949 Set limit-down to 8192 kB/s | |
2016-Apr-14 01:07:56.985811 Binding on 0.0.0.0:18080 | |
2016-Apr-14 01:07:56.985923 Net service bound to 0.0.0.0:18080 | |
2016-Apr-14 01:07:56.985956 P2p server initialized OK | |
2016-Apr-14 01:07:56.986071 Initializing core rpc server... | |
2016-Apr-14 01:07:56.986144 Binding on 127.0.0.1:18081 | |
2016-Apr-14 01:07:56.986240 Core rpc server initialized OK on port: 18081 | |
2016-Apr-14 01:07:56.986275 Initializing core... | |
2016-Apr-14 01:07:56.986526 Loading blockchain from folder /mnt/1/bitmo/lmdb ... | |
2016-Apr-14 01:07:56.986571 option: fast | |
2016-Apr-14 01:07:56.986598 option: async | |
2016-Apr-14 01:07:56.986622 option: 5000 | |
2016-Apr-14 01:07:57.065543 Blockchain initialized. last block: 1025121, d0.h2.m16.s34 time ago, current difficulty: 1663001247 | |
2016-Apr-14 01:07:57.598379 WARNING: no two valid MoneroPulse DNS checkpoint records were received | |
2016-Apr-14 01:07:57.598890 Core initialized OK | |
2016-Apr-14 01:07:57.598973 Starting core rpc server... | |
2016-Apr-14 01:07:57.599014 Run net_service loop( 2 threads)... | |
2016-Apr-14 01:07:57.599254 [SRV_MAIN]Core rpc server started ok | |
2016-Apr-14 01:07:57.599530 [SRV_MAIN]Starting p2p net loop... | |
2016-Apr-14 01:07:57.599633 [SRV_MAIN]Run net_service loop( 10 threads)... | |
2016-Apr-14 01:07:58.599926 [P2P9] | |
********************************************************************** | |
The daemon will start synchronizing with the network. It may take up to several hours. | |
You can set the level of process detailization* through "set_log <level>" command*, where <level> is between 0 (no details) and 4 (very verbose). | |
Use "help" command to see the list of available commands. | |
Note: in case you need to interrupt the process, use "exit" command. Otherwise, the current progress won't be saved. | |
********************************************************************** | |
exit | |
2016-Apr-14 01:14:10.865370 [node] Stop signal sent | |
Stop signal sent | |
2016-Apr-14 01:14:10.866124 [SRV_MAIN]net_service loop stopped. | |
2016-Apr-14 01:14:10.866191 [SRV_MAIN]p2p net loop stopped | |
2016-Apr-14 01:14:10.965915 [node] Stop signal sent | |
2016-Apr-14 01:14:10.965940 [SRV_MAIN]Stopping core rpc server... | |
2016-Apr-14 01:14:10.966163 [SRV_MAIN]Node stopped. | |
2016-Apr-14 01:14:10.966207 [SRV_MAIN]Deinitializing rpc server... | |
2016-Apr-14 01:14:10.966376 [SRV_MAIN]Deinitializing p2p... | |
2016-Apr-14 01:14:11.637474 [SRV_MAIN]Deinitializing core... | |
2016-Apr-14 01:14:11.637655 [SRV_MAIN]Closing IO Service. | |
2016-Apr-14 01:14:11.917505 [SRV_MAIN]Deinitializing cryptonote_protocol... | |
Command exited with non-zero status 1 | |
Command being timed: "./bitmonerod.fast --add-exclusive-node 127.0.0.1:9999 --data-dir /mnt/1/bitmo --db-sync-mode fast:async:5000 --no-igd" | |
User time (seconds): 72.23 | |
System time (seconds): 12.88 | |
Percent of CPU this job got: 22% | |
Elapsed (wall clock) time (h:mm:ss or m:ss): 6:16.23 | |
Average shared text size (kbytes): 0 | |
Average unshared data size (kbytes): 0 | |
Average stack size (kbytes): 0 | |
Average total size (kbytes): 0 | |
Maximum resident set size (kbytes): 4637048 | |
Average resident set size (kbytes): 0 | |
Major (requiring I/O) page faults: 0 | |
Minor (reclaiming a frame) page faults: 3746718 | |
Voluntary context switches: 19143 | |
Involuntary context switches: 12510 | |
Swaps: 0 | |
File system inputs: 0 | |
File system outputs: 56 | |
Socket messages sent: 0 | |
Socket messages received: 0 | |
Signals delivered: 0 | |
Page size (bytes): 4096 | |
Exit status: 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This is the original code, without any tweaks. The blockchain was already cached in RAM. | |
violino:/home/software/bitmonero/build/debug/bin> /usr/bin/time -v ./simplewallet --restore-deterministic-wallet --wallet-file wall1 --password tester1 | |
Creating the logger system | |
Monero 'Hydrogen Helix' (v0.9.4.0-fbc5824) | |
Logging at log level 0 to /home/software/bitmonero/build/debug/bin/./simplewallet.log | |
Specify Electrum seed: xxx | |
Generated new wallet: xxx | |
View key: xxx | |
********************************************************************** | |
[wallet 4262Dp]: set refresh-height 882220 | |
[wallet 4262Dp]: refresh | |
Starting refresh... | |
Height 882230, transaction ... | |
Height 1023626, transaction ... | |
Refresh done, blocks received: 1025121 | |
Balance: 399.302186410000, unlocked balance: 399.302186410000 | |
[wallet 4262Dp]: exit | |
Command being timed: "./simplewallet --restore-deterministic-wallet --wallet-file wall1 --password tester1" | |
User time (seconds): 6653.25 | |
System time (seconds): 112.69 | |
Percent of CPU this job got: 259% | |
Elapsed (wall clock) time (h:mm:ss or m:ss): 43:24.60 | |
Average shared text size (kbytes): 0 | |
Average unshared data size (kbytes): 0 | |
Average stack size (kbytes): 0 | |
Average total size (kbytes): 0 | |
Maximum resident set size (kbytes): 336564 | |
Average resident set size (kbytes): 0 | |
Major (requiring I/O) page faults: 0 | |
Minor (reclaiming a frame) page faults: 367200 | |
Voluntary context switches: 4963866 | |
Involuntary context switches: 2266163 | |
Swaps: 0 | |
File system inputs: 0 | |
File system outputs: 80968 | |
Socket messages sent: 0 | |
Socket messages received: 0 | |
Signals delivered: 0 | |
Page size (bytes): 4096 | |
Exit status: 0 | |
Daemon status | |
violino:/home/software/bitmonero/build/debug/bin> /usr/bin/time -v ./bitmonerod.fast --add-exclusive-node 127.0.0.1:9999 --data-dir /mnt/1/bitmo --db-sync-mode fast:async:5000 --no-igd | |
Creating the logger system | |
2016-Apr-14 00:22:02.990240 Initializing cryptonote protocol... | |
2016-Apr-14 00:22:02.990332 Cryptonote protocol initialized OK | |
2016-Apr-14 00:22:02.990537 Initializing p2p server... | |
2016-Apr-14 00:22:03.706807 Set limit-up to 2048 kB/s | |
2016-Apr-14 00:22:03.706946 Set limit-down to 8192 kB/s | |
2016-Apr-14 00:22:03.707008 Set limit-up to 2048 kB/s | |
2016-Apr-14 00:22:03.707098 Set limit-down to 8192 kB/s | |
2016-Apr-14 00:22:03.708377 Binding on 0.0.0.0:18080 | |
2016-Apr-14 00:22:03.708533 Net service bound to 0.0.0.0:18080 | |
2016-Apr-14 00:22:03.708565 P2p server initialized OK | |
2016-Apr-14 00:22:03.708727 Initializing core rpc server... | |
2016-Apr-14 00:22:03.708822 Binding on 127.0.0.1:18081 | |
2016-Apr-14 00:22:03.708953 Core rpc server initialized OK on port: 18081 | |
2016-Apr-14 00:22:03.708988 Initializing core... | |
2016-Apr-14 00:22:03.709348 Loading blockchain from folder /mnt/1/bitmo/lmdb ... | |
2016-Apr-14 00:22:03.709397 option: fast | |
2016-Apr-14 00:22:03.709423 option: async | |
2016-Apr-14 00:22:03.709446 option: 5000 | |
2016-Apr-14 00:22:03.792590 Blockchain initialized. last block: 1025121, d0.h1.m30.s40 time ago, current difficulty: 1663001247 | |
2016-Apr-14 00:22:05.180997 WARNING: no two valid MoneroPulse DNS checkpoint records were received | |
2016-Apr-14 00:22:05.181523 Core initialized OK | |
2016-Apr-14 00:22:05.181573 Starting core rpc server... | |
2016-Apr-14 00:22:05.181615 Run net_service loop( 2 threads)... | |
2016-Apr-14 00:22:05.181849 [SRV_MAIN]Core rpc server started ok | |
2016-Apr-14 00:22:05.182579 [SRV_MAIN]Starting p2p net loop... | |
2016-Apr-14 00:22:05.182687 [SRV_MAIN]Run net_service loop( 10 threads)... | |
2016-Apr-14 00:22:06.183265 [P2P9] | |
********************************************************************** | |
The daemon will start synchronizing with the network. It may take up to several hours. | |
You can set the level of process detailization* through "set_log <level>" command*, where <level> is between 0 (no details) and 4 (very verbose). | |
Use "help" command to see the list of available commands. | |
Note: in case you need to interrupt the process, use "exit" command. Otherwise, the current progress won't be saved. | |
********************************************************************** | |
exit | |
2016-Apr-14 01:05:23.381121 [node] Stop signal sent | |
Stop signal sent | |
2016-Apr-14 01:05:23.382022 [SRV_MAIN]net_service loop stopped. | |
2016-Apr-14 01:05:23.382063 [SRV_MAIN]p2p net loop stopped | |
2016-Apr-14 01:05:23.482416 [node] Stop signal sent | |
2016-Apr-14 01:05:23.482626 [SRV_MAIN]Stopping core rpc server... | |
2016-Apr-14 01:05:23.482791 [SRV_MAIN]Node stopped. | |
2016-Apr-14 01:05:23.482824 [SRV_MAIN]Deinitializing rpc server... | |
2016-Apr-14 01:05:23.482992 [SRV_MAIN]Deinitializing p2p... | |
2016-Apr-14 01:05:23.484409 [SRV_MAIN]Deinitializing core... | |
2016-Apr-14 01:05:23.484588 [SRV_MAIN]Closing IO Service. | |
2016-Apr-14 01:05:23.857048 [SRV_MAIN]Deinitializing cryptonote_protocol... | |
Command exited with non-zero status 1 | |
Command being timed: "./bitmonerod.fast --add-exclusive-node 127.0.0.1:9999 --data-dir /mnt/1/bitmo --db-sync-mode fast:async:5000 --no-igd" | |
User time (seconds): 73.63 | |
System time (seconds): 12.40 | |
Percent of CPU this job got: 3% | |
Elapsed (wall clock) time (h:mm:ss or m:ss): 43:21.87 | |
Average shared text size (kbytes): 0 | |
Average unshared data size (kbytes): 0 | |
Average stack size (kbytes): 0 | |
Average total size (kbytes): 0 | |
Maximum resident set size (kbytes): 4656032 | |
Average resident set size (kbytes): 0 | |
Major (requiring I/O) page faults: 4 | |
Minor (reclaiming a frame) page faults: 3388475 | |
Voluntary context switches: 62693 | |
Involuntary context switches: 13132 | |
Swaps: 0 | |
File system inputs: 384 | |
File system outputs: 104 | |
Socket messages sent: 0 | |
Socket messages received: 0 | |
Signals delivered: 0 | |
Page size (bytes): 4096 | |
Exit status: 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment