Skip to content

bitcoin-eagle/bitcoin-surrealdb

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Import into surreal db using command line

  • -P5 switch of xargs is number of surrealdb import threads. I found that on my laptop with 4 cores and 8 threads. 5 import threads was fastest. So what is worth use 1.25x number of your physical cores.
cargo run -r -- export --btc-rpc-url "127.0.0.1:8332" --btc-rpc-user "bitcoin-surrealdb" --btc-rpc-pass "o4ka4wx3i0wxar0bec2w1sm9h" --no-db-transaction -z | xargs -0 -n1 -P5 sh -c 'for arg do echo "importing " "$arg" " ..." ; surreal import -e "http:/127.0.0.1:8000" -u root -p root --namespace test --database bitcoin-main "$arg" ; echo "removing " "$arg" " ..." ; rm "$arg" ;  done' _

Storage Size

Experiment --from-height=820000 --block-count=10 -> 170M. The current blocks (height 820,000) take ~17 MiB per block. That leads to total size about ~10 TiB. That's impractical for any personal use which is necessary for privacy so I'm abandoning using SurrealDB for my needs.

About

Ingest bitcoin blockchain into SurrealDB graph database

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages