create account

Steps to restore a Hivemind database snapshot by emrebeyler

View this thread on: hive.blogpeakd.comecency.com
· @emrebeyler · (edited)
$100.68
Steps to restore a Hivemind database snapshot
I [distribute daily Hivemind database snapshots](https://steemit.com/hivemind/@emrebeyler/daily-snapshots-of-hivemind). This is a quick tutorial to restore that database into a fresh new server. 

I have completed these steps on a fresh Digitalocean droplet (8vcpu, 32gb ram) running Ubuntu 16.04. And all the process took 4 hours.

<center><img src="https://cdn.steemitimages.com/DQmfV9tLBsscZJwQJDYdFNRyFUjDtagm17MsR2iTFVQMnHv/Screen%20Shot%202019-01-23%20at%2010.52.34%20AM.png"></center>


# Installing PostgreSQL (10.6)

```
$ apt-get update
$ wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
$ sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt/ $(lsb_release -sc)-pgdg main" > /etc/apt/sources.list.d/PostgreSQL.list'
$ apt-get update
$ apt-get install postgresql-10
```

**Important note**: This dump is only compatible with PostgreSQL 10.6**


# Creating the database and user
```
$ su - postgres
$ createuser --interactive --pwprompt
Enter name of role to add: hive
Enter password for new role:
Enter it again:
Shall the new role be a superuser? (y/n) y
$ psql
$ create database hive;
$ \q
```

Note: Make sure you remember the role(user) name and password and  set the user as `hive`.

# Download the dump
```
$ wget -c http://hivemind.emrebeyler.me/dumps/hive_latest.sql.gz
```

Wait until it finishes. It should take around 10-15 mins. (Make sure you check the [state.txt](http://hivemind.emrebeyler.me/dumps/state.txt). If it says, `backup in progress`, you need to wait.)

# Decompress the file
```
$ apt-get install pigz 
$ apt-get install pv
$ pv hive_latest.sql.gz | pigz -d -p 8 > hive_latest.sql
```

This will decompress the file with 8 threads and gives a nice progress bar.

It should take 15-20 minutes. You can choose thread count with the `-p` parameter. I have aligned it with core count.

# Restore the database
***
```
$ vim /etc/postgresql/10/main/pg_hba.conf
```
***
Find that line:
```
 local   all             all                             peer
```
***
Replace peer with `md5`, then do a restart:
 
```
$ service postgresql restart
```
***
Import the database:
 
```
$psql -U <username> <database_name> -f hive_latest.sql
```
***
Watching the progress:

```
$ su - postgres 
$ psql
SELECT pg_size_pretty(pg_database_size('hive'));
```
***

This will show the database size of `hive`. It should be around 180-200 GB when the import is done.
 
# Install Python3.6 & Hivemind
 
 These steps are required for manual installation of Hivemind. If you use docker installation, you can skip.
 
```
$ add-apt-repository ppa:jonathonf/python-3.6
$ apt-get update
$ apt-get install python3.6 python3.6-dev virtualenv build-essential
$ virtualenv -p python3.6 hivemind-env
$ source hivemind-env/bin/activate
$ git clone https://github.com/steemit/hivemind.git
$ cd hivemind
$ pip install -e .
```

Congrats! Hive is installed.

# Sync process

(Make sure you activated the virtual environment)

```
$ hive sync --database-url postgresql://hive:hive@localhost:5432/hive
```

This will sync the missing blocks and catch-up with the block production fast. It's recommended to run this with a process manager (like [Supervisor](http://supervisord.org/)) to make sure the process is always up and running.

# Server process
(Make sure you activated the virtual environment)

```
$ hive server --database-url postgresql://hive:hive@localhost:5432/hive
```


# Notes

This tutorial is opinionated on some steps and gives a simple start to setup a Hivemind.  For the best results, always follow the official repository for the instructions. 

For example, the recommended way to install Hivemind is the Docker way. I patch and hack things on my Hivemind setup, so I prefer a manual install. Also, it's always preffered to execute apps in a normal user instead of `root`. I skipped this to keep the tutorial simple.

Also, if you don't have SSD in your setup, restoring process may take more time. Some users reported long waiting times on decompressing, importing, etc.

# Troubleshooting

If you encounter any issues while trying this, you can join [#hivemind](https://discord.gg/2R2vzRJ) channel at Steemdevs discord and ask for help.

# Vote for me as a witness

I do my best to support the blockchain with my skills. If you like what I do, consider casting a vote on [via Steemconnect](https://steemconnect.com/sign/account-witness-vote?witness=emrebeyler&approve=1) or on [steemit.com](https://steemit.com/~witnesses).
๐Ÿ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 551 others
properties (23)
authoremrebeyler
permlinksteps-to-restore-a-hivemind-database-snapshot
categoryhivemind
json_metadata{"community":"busy","app":"steemit/0.1","format":"markdown","tags":["hivemind","python","ubuntu","busy"],"links":["https://steemit.com/hivemind/@emrebeyler/daily-snapshots-of-hivemind","http://hivemind.emrebeyler.me/dumps/state.txt","http://supervisord.org/","https://discord.gg/2R2vzRJ","https://steemconnect.com/sign/account-witness-vote?witness=emrebeyler&approve=1","https://steemit.com/~witnesses"],"image":["https://cdn.steemitimages.com/DQmfV9tLBsscZJwQJDYdFNRyFUjDtagm17MsR2iTFVQMnHv/Screen%20Shot%202019-01-23%20at%2010.52.34%20AM.png"]}
created2019-01-23 07:44:48
last_update2019-01-23 14:12:57
depth0
children30
last_payout2019-01-30 07:44:48
cashout_time1969-12-31 23:59:59
total_payout_value76.504 HBD
curator_payout_value24.176 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4,490
author_reputation448,535,049,068,622
root_title"Steps to restore a Hivemind database snapshot"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id78,802,071
net_rshares205,492,182,493,706
author_curate_reward""
vote details (615)
@adenijiadeshina ·
I have voted for you as a witness now. You have been showing hardworking on steemit to move it forward. Keep growing 
๐Ÿ‘  ,
properties (23)
authoradenijiadeshina
permlinkre-emrebeyler-steps-to-restore-a-hivemind-database-snapshot-20190123t074928530z
categoryhivemind
json_metadata{"tags":["hivemind"],"community":"steempeak","app":"steempeak"}
created2019-01-23 07:49:30
last_update2019-01-23 07:49:30
depth1
children1
last_payout2019-01-30 07:49:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length117
author_reputation36,301,706,958,332
root_title"Steps to restore a Hivemind database snapshot"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id78,802,191
net_rshares1,539,608,383
author_curate_reward""
vote details (2)
@emrebeyler ·
Thank you!
properties (22)
authoremrebeyler
permlinkre-adenijiadeshina-re-emrebeyler-steps-to-restore-a-hivemind-database-snapshot-20190123t075435028z
categoryhivemind
json_metadata{"tags":["hivemind"],"app":"steemit/0.1"}
created2019-01-23 07:54:36
last_update2019-01-23 07:54:36
depth2
children0
last_payout2019-01-30 07:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation448,535,049,068,622
root_title"Steps to restore a Hivemind database snapshot"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id78,802,315
net_rshares0
@apshamilton ·
$0.23
I've been looking for a clear and up to date description of how to set up Hivemind. Thanks for this.
Is is possible to later add a steamd node to this setup and sync with it to create a complete full node? It would seem that this is a faster way to setup and recover from an outage as replay of steamd and above process could occur concurrently on seperate machines.
๐Ÿ‘  , ,
properties (23)
authorapshamilton
permlinkre-emrebeyler-2019127t20828469z
categoryhivemind
json_metadata{"tags":["hivemind","python","ubuntu","busy"],"app":"esteem/2.0.4-surfer","format":"markdown+html","community":"esteem.app"}
created2019-01-27 18:08:30
last_update2019-01-27 18:08:30
depth1
children2
last_payout2019-02-03 18:08:30
cashout_time1969-12-31 23:59:59
total_payout_value0.171 HBD
curator_payout_value0.059 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length366
author_reputation212,408,778,971,080
root_title"Steps to restore a Hivemind database snapshot"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,024,153
net_rshares508,701,021,623
author_curate_reward""
vote details (3)
@emrebeyler ·
yes, it decreases the initial sync time from 1 week to 4 hours. :)
properties (22)
authoremrebeyler
permlinkre-apshamilton-re-emrebeyler-2019127t20828469z-20190127t182021049z
categoryhivemind
json_metadata{"tags":["hivemind"],"app":"steemit/0.1"}
created2019-01-27 18:20:21
last_update2019-01-27 18:20:21
depth2
children1
last_payout2019-02-03 18:20:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length66
author_reputation448,535,049,068,622
root_title"Steps to restore a Hivemind database snapshot"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,024,589
net_rshares0
@apshamilton ·
$0.21
This is very important because shorter times to get back online after an outage mean that lower reliability can be tolerated. This all helps with decentralisation by allowing full nodes and parts thereof to be run on (high end) commodity machines.
Thanks. I voted for you as witness.
๐Ÿ‘  , ,
properties (23)
authorapshamilton
permlinkre-emrebeyler-2019127t204113227z
categoryhivemind
json_metadata{"tags":["hivemind"],"app":"esteem/2.0.4-surfer","format":"markdown+html","community":"esteem.app"}
created2019-01-27 18:41:15
last_update2019-01-27 18:41:15
depth3
children0
last_payout2019-02-03 18:41:15
cashout_time1969-12-31 23:59:59
total_payout_value0.151 HBD
curator_payout_value0.054 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length283
author_reputation212,408,778,971,080
root_title"Steps to restore a Hivemind database snapshot"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,025,324
net_rshares450,633,330,406
author_curate_reward""
vote details (3)
@apshamilton ·
$0.21
Its taking 12+ hours to download the Hivemind snapshot. I have very fast internet at my end but download speed is ~500kb/s. Do you know what the problem is. This somewhat defeats the purpose.
๐Ÿ‘  ,
properties (23)
authorapshamilton
permlinkre-emrebeyler-2019128t75047947z
categoryhivemind
json_metadata{"tags":["hivemind","python","ubuntu","busy"],"app":"esteem/2.0.4-surfer","format":"markdown+html","community":"esteem.app"}
created2019-01-28 05:50:48
last_update2019-01-28 05:50:48
depth1
children2
last_payout2019-02-04 05:50:48
cashout_time1969-12-31 23:59:59
total_payout_value0.154 HBD
curator_payout_value0.055 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length191
author_reputation212,408,778,971,080
root_title"Steps to restore a Hivemind database snapshot"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,045,131
net_rshares456,928,257,376
author_curate_reward""
vote details (2)
@emrebeyler · (edited)
Hey, 

Sorry to hear that. It takes around 10 mins to download on my end. (Same figure reported from the people using the dump.)

![Screen Shot 2019-01-28 at 10.20.18 AM.png](https://cdn.steemitimages.com/DQmQQVwRSR8vzRDhnAYi5S8vzJMfQzFWtCnpZeTiZ3ubRLA/Screen%20Shot%202019-01-28%20at%2010.20.18%20AM.png)

However, this is server/datacenter level internet. There is no throttling in the server side, so the download speed is related to your maximum speed and the location. (Server is located at Helsinki/EU.)
properties (22)
authoremrebeyler
permlinkre-apshamilton-re-emrebeyler-2019128t75047947z-20190128t072430584z
categoryhivemind
json_metadata{"tags":["hivemind"],"image":["https://cdn.steemitimages.com/DQmQQVwRSR8vzRDhnAYi5S8vzJMfQzFWtCnpZeTiZ3ubRLA/Screen%20Shot%202019-01-28%20at%2010.20.18%20AM.png"],"app":"steemit/0.1"}
created2019-01-28 07:24:30
last_update2019-01-28 07:24:42
depth2
children1
last_payout2019-02-04 07:24:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length509
author_reputation448,535,049,068,622
root_title"Steps to restore a Hivemind database snapshot"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,047,729
net_rshares0
@apshamilton ·
$0.21
I'm now using Axel rather than wget to download and getting 2.5Mb/s downloads rather than 0.5Mb/s.
๐Ÿ‘  ,
properties (23)
authorapshamilton
permlinkre-emrebeyler-2019128t174548251z
categoryhivemind
json_metadata{"tags":["hivemind"],"app":"esteem/2.0.4-surfer","format":"markdown+html","community":"esteem.app"}
created2019-01-28 15:45:48
last_update2019-01-28 15:45:48
depth3
children0
last_payout2019-02-04 15:45:48
cashout_time1969-12-31 23:59:59
total_payout_value0.153 HBD
curator_payout_value0.055 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length98
author_reputation212,408,778,971,080
root_title"Steps to restore a Hivemind database snapshot"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,066,850
net_rshares455,346,161,947
author_curate_reward""
vote details (2)
@arcange ·
Congratulations @emrebeyler!
Your post was mentioned in the [Steem Hit Parade](https://steemit.com/hit-parade/@arcange/daily-hit-parade-20190123) in the following category:

* Pending payout - Ranked 4 with $ 122,29
properties (22)
authorarcange
permlinkre-steps-to-restore-a-hivemind-database-snapshot-20190123t174812000z
categoryhivemind
json_metadata""
created2019-01-24 16:48:45
last_update2019-01-24 16:48:45
depth1
children0
last_payout2019-01-31 16:48:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length216
author_reputation1,146,633,668,945,473
root_title"Steps to restore a Hivemind database snapshot"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id78,879,011
net_rshares0
@billgatesmotivat · (edited)
just upvoted and left a reply on your post. follow me guys so i will show you flames at upvoting and replying

thank you for this post. your post is super interesting and attractive, i suggest you continue posting such nice posts

thank you
๐Ÿ‘  
properties (23)
authorbillgatesmotivat
permlinkre-emrebeyler-steps-to-restore-a-hivemind-database-snapshot-20190123t153942842z
categoryhivemind
json_metadata{"tags":["hivemind"],"app":"steemit/0.1"}
created2019-01-23 15:41:36
last_update2019-01-23 15:44:12
depth1
children0
last_payout2019-01-30 15:41:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length240
author_reputation-162,586,268
root_title"Steps to restore a Hivemind database snapshot"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id78,820,237
net_rshares30,952,019
author_curate_reward""
vote details (1)
@cryptobets ·
So the crypto universe is moving forward.
I bet you โœŒ
properties (22)
authorcryptobets
permlinkre-emrebeyler-steps-to-restore-a-hivemind-database-snapshot-20190124t132932843z
categoryhivemind
json_metadata{"tags":["hivemind"],"app":"steemit/0.1"}
created2019-01-24 13:30:15
last_update2019-01-24 13:30:15
depth1
children0
last_payout2019-01-31 13:30:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length53
author_reputation22,554,376,794
root_title"Steps to restore a Hivemind database snapshot"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id78,869,987
net_rshares0
@pennsif ·
This post has been included in the latest edition of  [**SoS Daily News**](https://steemit.com/steem/@pennsif/sosdailynewsnewsaboutthestateofsteem23january2019-brfy0uogu7) - a digest of all you need to know about the State of Steem.

***

* *Editor of the [**The State of Steem SoS Daily News**](https://steemit.com/steem/@pennsif/sosdailynewsnewsaboutthestateofsteem23january2019-brfy0uogu7).*

* *Promoter of [**The State of Steem SoS Weekly Forums**](https://steemit.com/steem/@pennsif/the-state-of-steem-forum-5-and-ned-talks-2-thursday-24-january-8pm-12am-utc-msp-waves).*

* *Editor of the [**weekly listing of steem radio shows, podcasts & social broadcasts**](https://steemit.com/mspwaves/@pennsif/schedule-of-radio-shows-podcasts-and-social-broadcasts-week-beginning-21-january-2019).*

* *Founder of the [**A Dollar A Day**](https://steemit.com/adollaraday/@adollaraday/a-dollar-a-day-charitable-giving-project-ususd-5000-donated-in-8-months-we-made-it) charitable giving project.*

***
properties (22)
authorpennsif
permlinkre-emrebeyler-steps-to-restore-a-hivemind-database-snapshot-20190124t175042657z
categoryhivemind
json_metadata{"tags":["hivemind"],"links":["https://steemit.com/steem/@pennsif/sosdailynewsnewsaboutthestateofsteem23january2019-brfy0uogu7","https://steemit.com/steem/@pennsif/the-state-of-steem-forum-5-and-ned-talks-2-thursday-24-january-8pm-12am-utc-msp-waves","https://steemit.com/mspwaves/@pennsif/schedule-of-radio-shows-podcasts-and-social-broadcasts-week-beginning-21-january-2019","https://steemit.com/adollaraday/@adollaraday/a-dollar-a-day-charitable-giving-project-ususd-5000-donated-in-8-months-we-made-it"],"app":"steemit/0.1"}
created2019-01-24 17:50:45
last_update2019-01-24 17:50:45
depth1
children0
last_payout2019-01-31 17:50:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length996
author_reputation636,410,097,572,565
root_title"Steps to restore a Hivemind database snapshot"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id78,881,457
net_rshares0
@shadyshady ·
$0.03
im beginner  i learn now python first tutorial  after i finish i will read this post again
๐Ÿ‘  ,
properties (23)
authorshadyshady
permlinkre-emrebeyler-steps-to-restore-a-hivemind-database-snapshot-20190123t223832743z
categoryhivemind
json_metadata{"tags":["hivemind"],"app":"steemit/0.1"}
created2019-01-23 22:38:36
last_update2019-01-23 22:38:36
depth1
children0
last_payout2019-01-30 22:38:36
cashout_time1969-12-31 23:59:59
total_payout_value0.033 HBD
curator_payout_value0.001 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length90
author_reputation559,760,700,768
root_title"Steps to restore a Hivemind database snapshot"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id78,838,144
net_rshares91,570,794,332
author_curate_reward""
vote details (2)
@themadcurator ·
$0.28
วษนวษฅ sษส ษนoส‡ษษนnฦ† pษW วษฅโ”ด

๐Ÿ‘  , , , ,
properties (23)
authorthemadcurator
permlinkre-steps-to-restore-a-hivemind-database-snapshot-20190123t083408
categoryhivemind
json_metadata""
created2019-01-23 08:34:09
last_update2019-01-23 08:34:09
depth1
children1
last_payout2019-01-30 08:34:09
cashout_time1969-12-31 23:59:59
total_payout_value0.207 HBD
curator_payout_value0.068 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length26
author_reputation53,938,302,377,048
root_title"Steps to restore a Hivemind database snapshot"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id78,803,546
net_rshares561,006,136,439
author_curate_reward""
vote details (5)
@emrebeyler ·
.uoy knahT
properties (22)
authoremrebeyler
permlinkre-themadcurator-re-steps-to-restore-a-hivemind-database-snapshot-20190123t083408-20190123t083510310z
categoryhivemind
json_metadata{"tags":["hivemind"],"app":"steemit/0.1"}
created2019-01-23 08:35:09
last_update2019-01-23 08:35:09
depth2
children0
last_payout2019-01-30 08:35:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation448,535,049,068,622
root_title"Steps to restore a Hivemind database snapshot"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id78,803,581
net_rshares0
@tosch ·
Awesome!
I was just in the process of syncing and knew it would take at least 3 more days. I have downloaded your snapshot and will give it a try. This could reduce the syncing time by so much!
properties (22)
authortosch
permlinkre-emrebeyler-steps-to-restore-a-hivemind-database-snapshot-20190123t131410895z
categoryhivemind
json_metadata{"tags":["hivemind"],"app":"steemit/0.1"}
created2019-01-23 13:14:12
last_update2019-01-23 13:14:12
depth1
children12
last_payout2019-01-30 13:14:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length193
author_reputation3,148,075,991,236
root_title"Steps to restore a Hivemind database snapshot"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id78,813,064
net_rshares0
@emrebeyler ·
It takes 6-7 days at best. The progress bar is misleading :)
properties (22)
authoremrebeyler
permlinkre-tosch-re-emrebeyler-steps-to-restore-a-hivemind-database-snapshot-20190123t131626232z
categoryhivemind
json_metadata{"tags":["hivemind"],"app":"steemit/0.1"}
created2019-01-23 13:16:27
last_update2019-01-23 13:16:27
depth2
children11
last_payout2019-01-30 13:16:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length60
author_reputation448,535,049,068,622
root_title"Steps to restore a Hivemind database snapshot"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id78,813,187
net_rshares0
@tosch · (edited)
I guessed so, I think I was at block 5 Million after around 24 hours. And the first 5 Million blocks are probably less filled than what is coming later :D
I am in the process of syncing your snapshot now.
properties (22)
authortosch
permlinkre-emrebeyler-re-tosch-re-emrebeyler-steps-to-restore-a-hivemind-database-snapshot-20190123t134448041z
categoryhivemind
json_metadata{"tags":["hivemind"],"app":"steemit/0.1"}
created2019-01-23 13:44:48
last_update2019-01-23 13:45:42
depth3
children10
last_payout2019-01-30 13:44:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length204
author_reputation3,148,075,991,236
root_title"Steps to restore a Hivemind database snapshot"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id78,814,565
net_rshares0
@tosch ·
$0.15
Thanks!! Did the whole process on a clean machine. It worked smooth and I am now synced to hive!!

On the clean machine it took me around 3-4 hours. This is what I was hoping for =)
๐Ÿ‘  ,
properties (23)
authortosch
permlinkre-emrebeyler-steps-to-restore-a-hivemind-database-snapshot-20190124t191320062z
categoryhivemind
json_metadata{"tags":["hivemind"],"app":"steemit/0.1"}
created2019-01-24 19:13:21
last_update2019-01-24 19:13:21
depth1
children0
last_payout2019-01-31 19:13:21
cashout_time1969-12-31 23:59:59
total_payout_value0.120 HBD
curator_payout_value0.026 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length181
author_reputation3,148,075,991,236
root_title"Steps to restore a Hivemind database snapshot"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id78,884,445
net_rshares326,265,528,084
author_curate_reward""
vote details (2)
@tusiko ·
A very informative article. Thank you for this information

Posted using [Partiko Android](https://steemit.com/@partiko-android)
properties (22)
authortusiko
permlinktusiko-re-emrebeyler-steps-to-restore-a-hivemind-database-snapshot-20190123t143759573z
categoryhivemind
json_metadata{"app":"partiko","client":"android"}
created2019-01-23 14:38:00
last_update2019-01-23 14:38:00
depth1
children0
last_payout2019-01-30 14:38:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length128
author_reputation117,000,108,527
root_title"Steps to restore a Hivemind database snapshot"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id78,817,037
net_rshares0