 With the recent update to `steemd` version 19.3, I had to do a lot of full node replaying, which can take anywhere from 1-30 days depending on the hardware and plugins enabled. The full nodes I manage typically take somewhere between 2-3 days to fully replay with account history and all other plugins. The hardware isn't cheap either, it is about the best you can get without building your own configuration and self-hosting. ### Full Node Configuration AMD EPYC 24 Core CPU 512GB Ram 2x 960GB NVMe Gen 3 Data Center Drives 1Gbit/s Internet This means anything that causes a replay is extremely time consuming and frustrating to resolve. Luckily we have two similar servers in a cluster when one fails I can easily remove it and replay it while the other picks up the load. If both have to be upgraded, they can be staggered and upgraded one at a time without downtime. In the case of the recent emergency patch, both full nodes had to be replayed and this causes a lot of difficulties when trying to maintain service but also patch quickly. Not only do both nodes have to be updated quickly, most public full nodes are doing the same thing at the same time. A common practice with full nodes is to redirect queries to another node during a replay, this maintains service while allowing you to pull your node out of use. This is effective during failure or when you have other nodes you maintain, but when all full nodes are patching at the same time, this becomes ineffective. During this wave of replays, I tested two new tricks that dramatically sped up my replay times and allowed me to patch and bring all four full nodes I maintain online much quicker than normal. # Follow Feed Calculation The first is a trick I picked up from @gtg (thanks!) and it involves specifying a start time for steemd to start populating follow plugin feeds. Follow feeds are primarily used by a condenser (front ends like steemit.com) and are not used by most services that use public full nodes. In my case, upon replaying my nodes, I told steemd not to process feeds earlier than 7 days ago. This is done with the `--follow-start-feeds=` parameter to steemd. It takes a unixtime stamp as a parameter, which is easily calculated using [UnixTimeStamp.com](https://www.unixtimestamp.com/index.php). # Example `~/bin/steemd -d data --replay-blockchain --follow-start-feeds=1524355200` Combined with the next suggestion, my replay times went from around 2.5 days to about 18-19 hours. While replays are still extremely painful, this is a huge improvement in recovery time from a node failure or patch that requires a replay. Every day that passes increases the potential replay time of a full node (including witness and seed nodes). <center></center> # Remove block_log from OS cache The other trick is a suggestion from Github user [theoreticalbts](https://github.com/theoreticalbts) is to drop the block_log file from the OS cache, giving more ram to the shared memory file. The block_log is currently 101GB and growing very rapidly. This eats up a significant portion of ram even on a 512GB server. There are two ways to accomplish this, both have different implications. Further testing needs to be done to see which one is better overall. During a replay, run the following script to purge the block_log from the OS cache. This will maintain the maximum amount of ram for steemd and it's shared memory file. ``` while : do dd if=blockchain/block_log iflag=nocache count=0 sleep 60 done ``` You will need to adjust the path to your block_log if you do not run it from the blockchain directory. Leave this script running while you do a replay. I am not entirely sure how much of an improvement this step alone made as further testing is needed to isolate the improvements by this trick alone. There is another approach @bhuz uses to accomplish the same thing, but in addition to purging the block_log this will purge the shared memory file. This may provide additional benefits of clearing dirty pages even outside of replays, but further testing is needed. This can be done with the following command: `echo 3 | sudo tee /proc/sys/vm/drop_caches` # Conclusion and failures In the recent replays, I used both tricks to drastically reduce how long replay took. Unfortunately, I screwed up and accidentally built some of the nodes using low memory (setting I only use on witness nodes) as I was upgrading 9 nodes during the course of 24 hours. Upon realizing this, I fixed it and restarted the replay. What I didn't realize, is low memory setting persists even after turning it off with a new build. (Thanks @anyx for pointing this out) Which caused some weird issues with the node until I realized it was in low memory mode even though I built without low memory. The solution for this is to delete the `CMakeCache.txt` prior to doing a rebuild. It's been a trying few days, but learned a few interesting things and have a few new tools to dramatically speed up recovery time in future replays. While most people this isn't very interesting, those running full nodes may save some sanity with this advice. Thanks again @gtg, @anyx, @bhuz, and Github user: theoreticalbts (I suspect there is a Steem user behind this account). <center><sub><sub> X48EJ </sub></sub></center> # <center> [Why you should vote me as witness](https://steemit.com/witness-category/@themarkymark/why-you-should-vote-for-themarkymark-as-witness) </center> # <center>https://steemitimages.com/DQmcWxV1dpA1eAtw2ipwZiWZkydyVNU5LaLa2Ak1GUnbGmS/The-Marky-Mark.png </center> # <center> Witness & Administrator of four full nodes </center> #  </br> # <center> My recent popular posts </center> # [STEEM, STEEM Power, Vests, and Steem Dollars. wtf is this shit?](https://steemit.com/steem/@themarkymark/steem-steem-power-vests-and-steem-dollars-wtf-is-this-shit) [The truth and lies about 25% curation, why what you know is FAKE NEWS](https://steemit.com/curation/@themarkymark/the-truth-and-lies-about-25-curation-why-what-you-know-is-fake-news) [WTF is a hardware wallet, and why should you have one?](https://steemit.com/bitcoin/@themarkymark/wtf-is-a-hardware-wallet-and-why-should-you-have-one) [GINABOT - The Secret to your Sanity on Steemit](https://steemit.com/ginabot/@themarkymark/ginabot-the-secret-to-your-sanity-on-steemit) [How to calculate post rewards](https://steemit.com/steemit/@themarkymark/how-to-calculate-post-rewards) [Use SSH all the time? Time for a big boy SSH Client](https://steemit.com/linux/@themarkymark/use-ssh-all-the-time-time-for-a-big-boy-ssh-client) [How to change your recovery account](https://steemit.com/steemit/@themarkymark/how-to-change-your-recovery-account) [How curation rewards work and how to be a kick ass curator](https://steemit.com/curation/@themarkymark/how-curation-rewards-work-and-how-to-be-a-kick-ass-curator) [Markdown 101 - How to make kick ass posts on Steemit](https://steemit.com/steemit/@themarkymark/markdown-101-how-to-make-kick-ass-posts-on-steemit) [Work ON your business, not in your business! - How to succeed as a small business](https://steemit.com/business/@themarkymark/work-on-your-business-not-in-your-business-how-to-succeed-as-a-small-business) [You are not entitled to an audience, you need to earn it!](https://steemit.com/steemit/@themarkymark/you-are-not-entitled-to-an-audience-you-need-to-earn-it) [How to properly setup SSH Key Authentication - If you are logging into your server with root, you are doing it wrong!](https://steemit.com/sysadmin/@themarkymark/how-to-properly-setup-ssh-key-authentication-if-you-are-logging-into-your-server-with-root-you-are-doing-it-wrong) [Building a Portable Game Console](https://steemit.com/raspberrypi/@themarkymark/building-a-portable-game-console) [](https://v2.steemconnect.com/sign/account-witness-vote?witness=themarkymark&approve=1)
author | themarkymark |
---|---|
permlink | how-i-replayed-our-full-nodes-in-18-19-hours-instead-of-2-5-days |
category | steem |
json_metadata | {"community":"busy","app":"steemit/0.1","format":"markdown","users":["gtg","bhuz","anyx"],"links":["https://www.unixtimestamp.com/index.php","https://github.com/theoreticalbts","https://steemit.com/witness-category/@themarkymark/why-you-should-vote-for-themarkymark-as-witness","https://steemit.com/steem/@themarkymark/steem-steem-power-vests-and-steem-dollars-wtf-is-this-shit","https://steemit.com/curation/@themarkymark/the-truth-and-lies-about-25-curation-why-what-you-know-is-fake-news","https://steemit.com/bitcoin/@themarkymark/wtf-is-a-hardware-wallet-and-why-should-you-have-one","https://steemit.com/ginabot/@themarkymark/ginabot-the-secret-to-your-sanity-on-steemit","https://steemit.com/steemit/@themarkymark/how-to-calculate-post-rewards","https://steemit.com/linux/@themarkymark/use-ssh-all-the-time-time-for-a-big-boy-ssh-client","https://steemit.com/steemit/@themarkymark/how-to-change-your-recovery-account","https://steemit.com/curation/@themarkymark/how-curation-rewards-work-and-how-to-be-a-kick-ass-curator","https://steemit.com/steemit/@themarkymark/markdown-101-how-to-make-kick-ass-posts-on-steemit","https://steemit.com/business/@themarkymark/work-on-your-business-not-in-your-business-how-to-succeed-as-a-small-business","https://steemit.com/steemit/@themarkymark/you-are-not-entitled-to-an-audience-you-need-to-earn-it","https://steemit.com/sysadmin/@themarkymark/how-to-properly-setup-ssh-key-authentication-if-you-are-logging-into-your-server-with-root-you-are-doing-it-wrong","https://steemit.com/raspberrypi/@themarkymark/building-a-portable-game-console","https://v2.steemconnect.com/sign/account-witness-vote?witness=themarkymark&approve=1"],"tags":["steem","fullnode","technicalshit","witness-category","busy"],"image":["https://steemitimages.com/DQmZCs6nUq1sSep2c9xaffH1VRdKzBRfiwRevDn825TqRpM/image.png","https://steemitimages.com/DQmUwKv24TMiDR2prNrmAFHmkDghnASTwcrBytufcVaNiMa/image.png","https://steemitimages.com/DQmcWxV1dpA1eAtw2ipwZiWZkydyVNU5LaLa2Ak1GUnbGmS/The-Marky-Mark.png","https://steemitimages.com/DQmVpwMxWTYDVum2dXcVRBLwHqHZh2Sr6DDHAFwDeeTG2YK/themarkymark.png","https://steemitimages.com/DQmPkQhAQceC7aHr4Gy5GKv7LMoiy47P7PyaNCeZBHMpFke/white-bg-with-drop-shadow.gif"]} |
created | 2018-04-30 06:18:06 |
last_update | 2018-04-30 06:24:42 |
depth | 0 |
children | 17 |
last_payout | 2018-05-07 06:18:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 305.466 HBD |
curator_payout_value | 57.939 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 8,286 |
author_reputation | 1,773,898,031,206,220 |
root_title | "How I replayed our full nodes in 18-19 hours instead of 2.5 days" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 52,971,446 |
net_rshares | 58,362,143,831,356 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
berniesanders | 0 | 4,132,369,698 | 2.5% | ||
pharesim | 0 | 75,924,903,470 | 0.19% | ||
kushed | 0 | 325,343,793,994 | 25% | ||
nextgencrypto | 0 | 71,084,311,286 | 2.5% | ||
stone1 | 0 | 4,430,972,508 | 25% | ||
steemychicken1 | 0 | 38,145,454,374 | 25% | ||
steemservices | 0 | 6,855,289,606 | 2.5% | ||
joseph | 0 | 51,509,020,742 | 25% | ||
aizensou | 0 | 93,821,290,843 | 25% | ||
b0y2k | 0 | 287,754,855,220 | 25% | ||
frankyfrank10 | 0 | 99,891,872 | 25% | ||
stoner19 | 0 | 9,574,779,158 | 25% | ||
germanaure | 0 | 1,858,155,226 | 100% | ||
teamsteem | 0 | 1,287,185,609,403 | 20% | ||
richman | 0 | 79,093,765,877 | 25% | ||
daycrypter | 0 | 19,739,719,642 | 100% | ||
thecryptodrive | 0 | 13,229,064,954 | 20% | ||
geoffrey | 0 | 1,612,734,101,412 | 100% | ||
trevonjb | 0 | 605,986,940,079 | 10% | ||
gtg | 0 | 1,455,462,966,951 | 25% | ||
razvanelulmarin | 0 | 28,762,395,811 | 25% | ||
shayne | 0 | 6,448,541,310 | 100% | ||
ausbitbank | 0 | 5,440,314,928,773 | 100% | ||
anyx | 0 | 193,101,546,613 | 20% | ||
fulltimegeek | 0 | 5,285,506,404,732 | 39% | ||
transisto | 0 | 2,409,636,795,207 | 100% | ||
raymondspeaks | 0 | 3,219,662,387 | 25% | ||
knozaki2015 | 0 | 472,769,335,921 | 25% | ||
shawnamawna | 0 | 8,132,073,472 | 25% | ||
hagie | 0 | 30,247,120,597 | 25% | ||
coinbar | 0 | 4,579,566,057 | 25% | ||
ozchartart | 0 | 73,392,010,317 | 2.5% | ||
caesarion | 0 | 5,313,959,161 | 25% | ||
thebluepanda | 0 | 49,186,203,621 | 25% | ||
yoshiko | 0 | 84,266,877,265 | 25% | ||
thisisbenbrick | 0 | 10,533,112,879 | 25% | ||
sirwinchester | 0 | 39,471,968,462 | 25% | ||
kiddarko | 0 | 15,474,252,562 | 12.5% | ||
kenistyles | 0 | 15,382,308,594 | 11% | ||
einsteinpotsdam | 0 | 7,911,286,330 | 25% | ||
dadview | 0 | 3,121,749,898 | 7.5% | ||
zahnspange | 0 | 593,207,820,700 | 25% | ||
thecyclist | 0 | 54,119,952,244 | 2.5% | ||
steemsquad | 0 | 2,691,608,326 | 25% | ||
allesgruen | 0 | 2,814,760,302 | 25% | ||
dannystravels | 0 | 20,573,352,248 | 25% | ||
jerryblanceton | 0 | 7,420,269,528 | 25% | ||
platinum-blue | 0 | 51,284,934,274 | 25% | ||
ssekulji | 0 | 27,837,072,254 | 25% | ||
timbernana | 0 | 10,826,392,860 | 25% | ||
hanamana | 0 | 15,538,619,297 | 63% | ||
sherlockcupid | 0 | 28,078,375,579 | 25% | ||
busy.pay | 0 | 756,925,258,739 | 6.2% | ||
barton26 | 0 | 7,338,593,262 | 100% | ||
dark.horse | 0 | 5,678,287,532 | 25% | ||
jamzed | 0 | 21,105,440,767 | 100% | ||
adventureevryday | 0 | 12,467,694,838 | 25% | ||
samuelhull | 0 | 7,204,810,989 | 100% | ||
toyman | 0 | 13,762,292,863 | 25% | ||
demartini | 0 | 11,118,699,988 | 100% | ||
dimidrolshina | 0 | 1,758,389,518 | 100% | ||
i-gordan | 0 | 16,686,271,239 | 25% | ||
steemcenterwiki | 0 | 610,969,758 | 5% | ||
playfulfoodie | 0 | 49,534,741,403 | 20% | ||
yougotflagged | 0 | 9,014,194,884 | 2.5% | ||
buzzbeergeek | 0 | 12,631,913,369 | 25% | ||
danielsaori | 0 | 63,641,775,057 | 42% | ||
bigdaddy | 0 | 21,524,410,842 | 25% | ||
kingsmind | 0 | 4,954,735,061 | 25% | ||
freebornsociety | 0 | 430,749,083 | 1% | ||
steemitcitizen | 0 | 989,085,266 | 12.5% | ||
nicnas | 0 | 18,886,595,965 | 50% | ||
sacred-agent | 0 | 110,915,819,866 | 100% | ||
steemchiller | 0 | 102,888,298,578 | 100% | ||
romedog | 0 | 260,316,711,614 | 25% | ||
sunshinetraveler | 0 | 13,088,575,286 | 25% | ||
andybets | 0 | 23,590,146,968 | 100% | ||
denisechips | 0 | 12,738,456,071 | 25% | ||
spg | 0 | 8,703,944,281 | 25% | ||
reggaemuffin | 0 | 9,179,212,459,094 | 100% | ||
freefuture | 0 | 6,758,398,238 | 25% | ||
chaka321 | 0 | 9,794,625,149 | 100% | ||
kinakomochi | 0 | 17,389,685,975 | 25% | ||
lazzelazer | 0 | 7,462,430,975 | 100% | ||
suitablybored | 0 | 316,877,454 | 100% | ||
derrick829 | 0 | 14,332,297,064 | 1% | ||
assetminds | 0 | 2,848,027,782 | 100% | ||
epixar | 0 | 611,732,481 | 100% | ||
mahdiyari | 0 | 55,993,822,696 | 60% | ||
moarafatshow | 0 | 2,825,895,251 | 100% | ||
drakos | 0 | 1,451,106,389,322 | 100% | ||
sammosk | 0 | 2,079,164,794 | 25% | ||
arbitrarykitten | 0 | 8,482,297,896 | 25% | ||
biancajapan | 0 | 8,431,604,341 | 25% | ||
iamnotageek | 0 | 1,267,433,623 | 5% | ||
thedelegator | 0 | 25,961,088,764 | 2.5% | ||
horsepower | 0 | 4,486,100,587 | 25% | ||
stitchybitch | 0 | 10,282,481,747 | 25% | ||
sanja-cash | 0 | 1,455,546,504 | 39% | ||
vibvir | 0 | 1,509,074,852 | 100% | ||
hope-on-fire | 0 | 526,356,582 | 100% | ||
fivefiveeleven | 0 | 13,307,740,455 | 50% | ||
nitego | 0 | 9,933,888,437 | 100% | ||
themarkymark | 0 | 46,616,602,301 | 25% | ||
gregory.latinier | 0 | 18,134,649,880 | 100% | ||
anikearn | 0 | 510,219,322 | 25% | ||
avesa | 0 | 399,960,113 | 0.25% | ||
agsttne | 0 | 288,123,953 | 50% | ||
purepinay | 0 | 23,876,655,345 | 5% | ||
cryptokeepr | 0 | 11,586,407,058 | 10% | ||
jasonshick | 0 | 10,930,001,300 | 5% | ||
topkpop | 0 | 14,641,394,241 | 10% | ||
ffodie | 0 | 568,540,782 | 50% | ||
teneiced | 0 | 4,384,568,960 | 25% | ||
sumayyahsaidso | 0 | 4,228,848,512 | 25% | ||
hairshares | 0 | 182,171,661,370 | 100% | ||
magnat | 0 | 39,520,502,108 | 50% | ||
simplifylife | 0 | 151,006,178 | 0.25% | ||
noobsin | 0 | 46,896,796,877 | 100% | ||
kriptonoob | 0 | 1,809,462,537 | 2.5% | ||
dilimunanzar | 0 | 2,775,968,795 | 100% | ||
yabapmatt | 0 | 1,213,168,240,120 | 100% | ||
makerhacks | 0 | 9,844,582,290 | 20% | ||
nor1 | 0 | 254,445,828 | 100% | ||
snowpiggy | 0 | 6,549,614,962 | 100% | ||
iamredbar | 0 | 3,132,158,932 | 100% | ||
ngc | 0 | 19,373,248,415 | 2.5% | ||
polscykierowcy | 0 | 1,528,503,199 | 100% | ||
shahab3211 | 0 | 614,288,451 | 100% | ||
dedarknes | 0 | 10,333,654,698 | 100% | ||
zeddjacob | 0 | 1,395,983,039 | 100% | ||
yulem | 0 | 3,162,063,730 | 100% | ||
ninjatuner | 0 | 171,691,447 | 100% | ||
drmincu | 0 | 360,099,007 | 100% | ||
steemusa | 0 | 8,523,298,548 | 13% | ||
deanhass | 0 | 2,605,312,772 | 100% | ||
takeone | 0 | 103,329,642 | 50% | ||
cryptogem | 0 | 16,523,928,234 | 100% | ||
yairdd | 0 | 2,672,773,158 | 100% | ||
dieterhubert | 0 | 395,288,877 | 100% | ||
upmyvote | 0 | 16,261,400,858,216 | 100% | ||
nelkeljdm | 0 | 3,954,588,553 | 5% | ||
amos811 | 0 | 4,951,250,522 | 100% | ||
doverun | 0 | 489,766,768 | 100% | ||
patricklancaster | 0 | 1,405,439,368 | 12.5% | ||
steemernoob | 0 | 592,401,016 | 100% | ||
saqibnazir | 0 | 212,183,161 | 100% | ||
investfourmore | 0 | 15,847,553,691 | 20% | ||
peeyush | 0 | 263,060,144 | 100% | ||
rodoli2010 | 0 | 512,514,580 | 100% | ||
nwjordan | 0 | 8,464,650,457 | 75% | ||
cyber-smiley | 0 | 520,714,441 | 100% | ||
solascriptura | 0 | 595,776,830 | 100% | ||
tuts | 0 | 596,772,597 | 100% | ||
erarnitox | 0 | 304,260,402 | 100% | ||
mar-el15 | 0 | 580,857,221 | 100% | ||
ipromote | 0 | 6,378,905,564,936 | 100% | ||
jvhplays | 0 | 611,557,247 | 100% | ||
llfarms | 0 | 4,534,198,284 | 100% | ||
nightdragon | 0 | 502,662,150 | 100% | ||
samue2013 | 0 | 138,171,266 | 100% | ||
natsch | 0 | 427,735,642 | 100% | ||
wereallmadhere07 | 0 | 315,924,482 | 100% | ||
amaliasalascha | 0 | 577,318,363 | 100% | ||
luli1 | 0 | 605,291,768 | 100% | ||
atalon | 0 | 592,962,212 | 100% | ||
gtmatze | 0 | 1,086,702,651 | 100% | ||
dlondoskitchenov | 0 | 527,852,139 | 100% | ||
zarzish | 0 | 128,932,674 | 100% | ||
tjourneyinge | 0 | 614,045,144 | 100% | ||
jvhteach | 0 | 954,440,596 | 10% | ||
kessielynbote | 0 | 281,378,222 | 100% | ||
doctormartin67 | 0 | 605,687,853 | 100% | ||
dream-o | 0 | 8,694,957,931 | 25% | ||
realseb | 0 | 15,273,788,694 | 100% | ||
blerdrage | 0 | 4,949,207,076 | 100% | ||
khayziljoy | 0 | 55,205,486 | 100% | ||
suntree | 0 | 598,864,223 | 100% | ||
songotein | 0 | 589,688,567 | 100% | ||
linkyourlife | 0 | 3,696,538,811 | 25% | ||
faruk1 | 0 | 168,374,197 | 100% | ||
kelvo | 0 | 436,514,423 | 100% | ||
angelacs | 0 | 5,963,421,909 | 100% | ||
finanzamt | 0 | 599,010,143 | 100% | ||
basyir01 | 0 | 217,654,442 | 100% | ||
j1v | 0 | 2,798,840,068 | 100% | ||
andreasgrubhofer | 0 | 483,164,826 | 100% | ||
lordgod | 0 | 431,523,786,444 | 10% | ||
marceladiomede | 0 | 476,196,361 | 100% | ||
bumbleweed | 0 | 613,214,654 | 100% | ||
kryptogermany | 0 | 479,663,172 | 100% | ||
netzisde | 0 | 552,609,276 | 100% | ||
smer | 0 | 589,633,028 | 100% | ||
yar72 | 0 | 245,128,706 | 62.44% | ||
rokhani | 0 | 613,724,060 | 100% | ||
teslaman | 0 | 5,167,102,280 | 25% | ||
mr-chuckles | 0 | 123,099,563 | 100% | ||
chutima | 0 | 545,371,172 | 100% | ||
hauptmann | 0 | 4,271,322,600 | 100% | ||
blondephysics | 0 | 5,877,167,702 | 25% | ||
rogz06 | 0 | 1,139,565,276 | 50% | ||
arys129 | 0 | 543,978,193 | 100% | ||
mjalice | 0 | 291,087,583 | 100% | ||
china-mobile | 0 | 467,537,564 | 100% | ||
kalipsocz | 0 | 471,646,256 | 100% | ||
steemege | 0 | 592,657,621 | 100% | ||
ayoublhmich | 0 | 425,306,765 | 100% | ||
adminbot | 0 | 316,254,165 | 100% | ||
aire.delmar | 0 | 116,728,837 | 100% | ||
raju1818 | 0 | 578,253,697 | 100% | ||
pingboy | 0 | 495,605,923 | 100% | ||
unmesh | 0 | 613,674,896 | 100% | ||
recurator | 0 | 613,305,688 | 100% | ||
steemerjp | 0 | 146,758,547 | 100% | ||
jacksonsun | 0 | 91,762,044 | 100% | ||
thoughtfulonion | 0 | 611,596,251 | 100% | ||
muzee1 | 0 | 281,988,821 | 100% | ||
bleurgh666 | 0 | 247,570,496 | 100% | ||
mikespike | 0 | 0 | 100% | ||
maciejko | 0 | 544,043,806 | 100% | ||
dare456 | 0 | 565,427,655 | 100% | ||
gavinchy | 0 | 183,245,602 | 100% | ||
adelsz | 0 | 262,843,629 | 100% | ||
vgtus | 0 | 589,861,434 | 100% | ||
hay050199 | 0 | 589,858,515 | 100% | ||
anoibilulu | 0 | 531,786,930 | 100% | ||
fasusi | 0 | 348,410,419 | 100% | ||
renulia | 0 | 583,991,902 | 100% | ||
beautifulplaces | 0 | 220,030,789 | 100% | ||
hannaharendt | 0 | 611,190,767 | 100% | ||
yachtdesigner | 0 | 589,771,555 | 100% | ||
yjpp | 0 | 553,094,293 | 100% |
Good post !!!
author | dedarknes |
---|---|
permlink | re-themarkymark-how-i-replayed-our-full-nodes-in-18-19-hours-instead-of-2-5-days-20180430t172951790z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-30 17:29:54 |
last_update | 2018-04-30 17:29:54 |
depth | 1 |
children | 0 |
last_payout | 2018-05-07 17:29:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 13 |
author_reputation | 3,959,534,724,141 |
root_title | "How I replayed our full nodes in 18-19 hours instead of 2.5 days" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,075,852 |
net_rshares | 0 |
Keep it up boss. Your post is always encouraging. Have learnt alot from it and i hope to see more of it from you again @markymark
author | fasusi |
---|---|
permlink | re-themarkymark-how-i-replayed-our-full-nodes-in-18-19-hours-instead-of-2-5-days-20180430t093147597z |
category | steem |
json_metadata | {"tags":["steem"],"users":["markymark"],"app":"steemit/0.1"} |
created | 2018-04-30 09:29:24 |
last_update | 2018-04-30 09:29:24 |
depth | 1 |
children | 0 |
last_payout | 2018-05-07 09:29:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 129 |
author_reputation | 214,919,920 |
root_title | "How I replayed our full nodes in 18-19 hours instead of 2.5 days" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 52,997,732 |
net_rshares | 0 |
It's a pity that only spammers are commenting under posts like these. I would like to see other witnesses/programmers/developers discussing what you did or atleast congratulte you on your succes or something. The main thing i'd like to see is the community learning from each other. Anyways, well done sir!
author | ferow |
---|---|
permlink | re-themarkymark-how-i-replayed-our-full-nodes-in-18-19-hours-instead-of-2-5-days-20180430t154351589z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-30 15:43:45 |
last_update | 2018-04-30 15:43:45 |
depth | 1 |
children | 6 |
last_payout | 2018-05-07 15:43:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.082 HBD |
curator_payout_value | 0.026 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 306 |
author_reputation | 1,140,907,914,839 |
root_title | "How I replayed our full nodes in 18-19 hours instead of 2.5 days" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,057,655 |
net_rshares | 18,556,406,045 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abh12345 | 0 | 18,556,406,045 | 5% |
The audience for this type of post is tiny, so not super surprised. But those who find it helpful it is extremely valuable.
author | themarkymark |
---|---|
permlink | re-ferow-re-themarkymark-how-i-replayed-our-full-nodes-in-18-19-hours-instead-of-2-5-days-20180430t155507943z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-30 15:54:36 |
last_update | 2018-04-30 15:54:36 |
depth | 2 |
children | 5 |
last_payout | 2018-05-07 15:54:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 124 |
author_reputation | 1,773,898,031,206,220 |
root_title | "How I replayed our full nodes in 18-19 hours instead of 2.5 days" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,059,523 |
net_rshares | 0 |
I'm trying out `--follow-start-feeds=1524355200` for a node replay now, thanks for the tip
author | ausbitbank |
---|---|
permlink | re-themarkymark-re-ferow-re-themarkymark-how-i-replayed-our-full-nodes-in-18-19-hours-instead-of-2-5-days-20180501t001040402z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-01 00:10:45 |
last_update | 2018-05-01 00:10:45 |
depth | 3 |
children | 4 |
last_payout | 2018-05-08 00:10:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.938 HBD |
curator_payout_value | 0.203 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 90 |
author_reputation | 287,009,709,424,827 |
root_title | "How I replayed our full nodes in 18-19 hours instead of 2.5 days" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,129,996 |
net_rshares | 193,641,427,332 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fulltimegeek | 0 | 151,014,468,706 | 1% | ||
themarkymark | 0 | 35,954,046,014 | 20% | ||
googlybot | 0 | 3,325,026,737 | 92% | ||
cuddlekitten | 0 | 3,347,885,875 | 92% |
Hey Marky Mark, any interest in doing a slightly fluffy, slightly educational witness interview? I've done about 20-25 with some of our top witnesses in the past several months and looking for some other witnesses to take part, in an attempt to increase witness transparency
author | jasonshick |
---|---|
permlink | re-themarkymark-how-i-replayed-our-full-nodes-in-18-19-hours-instead-of-2-5-days-20180430t062852636z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-30 06:28:54 |
last_update | 2018-04-30 06:28:54 |
depth | 1 |
children | 1 |
last_payout | 2018-05-07 06:28:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 274 |
author_reputation | 34,285,892,602,808 |
root_title | "How I replayed our full nodes in 18-19 hours instead of 2.5 days" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 52,972,862 |
net_rshares | -44,769,032,404 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abusereports | 0 | -44,769,032,404 | -5% |
Why not.
author | themarkymark |
---|---|
permlink | re-jasonshick-re-themarkymark-how-i-replayed-our-full-nodes-in-18-19-hours-instead-of-2-5-days-20180430t160521876z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-30 16:04:51 |
last_update | 2018-04-30 16:04:51 |
depth | 2 |
children | 0 |
last_payout | 2018-05-07 16:04:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 8 |
author_reputation | 1,773,898,031,206,220 |
root_title | "How I replayed our full nodes in 18-19 hours instead of 2.5 days" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,061,319 |
net_rshares | 0 |
great story.i just loved it.
author | mintu1290 |
---|---|
permlink | re-themarkymark-how-i-replayed-our-full-nodes-in-18-19-hours-instead-of-2-5-days-20180430t063018377z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-30 06:30:21 |
last_update | 2018-04-30 06:30:21 |
depth | 1 |
children | 0 |
last_payout | 2018-05-07 06:30:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 28 |
author_reputation | 1,308,461,467,925 |
root_title | "How I replayed our full nodes in 18-19 hours instead of 2.5 days" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 52,973,086 |
net_rshares | 577,296,688 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mintu1290 | 0 | 577,296,688 | 100% |
Gammer, weldon guy.
author | peks |
---|---|
permlink | re-themarkymark-how-i-replayed-our-full-nodes-in-18-19-hours-instead-of-2-5-days-20180430t065642478z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-30 06:56:51 |
last_update | 2018-04-30 06:56:51 |
depth | 1 |
children | 0 |
last_payout | 2018-05-07 06:56:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 19 |
author_reputation | 26,350,854,317 |
root_title | "How I replayed our full nodes in 18-19 hours instead of 2.5 days" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 52,976,601 |
net_rshares | 0 |
Oh really sucha amazing news well done my friend , great job Your post is always different i follow your blog everytime , your post is so helpful . I always inspire of your post on my steem work . Thank you for sharing @themarkymark Follow my blog @powerupme
author | powerupme |
---|---|
permlink | re-themarkymark-how-i-replayed-our-full-nodes-in-18-19-hours-instead-of-2-5-days-20180430t070844373z |
category | steem |
json_metadata | {"tags":["steem"],"users":["themarkymark","powerupme"],"app":"steemit/0.1"} |
created | 2018-04-30 07:08:54 |
last_update | 2018-04-30 07:08:54 |
depth | 1 |
children | 0 |
last_payout | 2018-05-07 07:08:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 265 |
author_reputation | 1,471,900,459,477 |
root_title | "How I replayed our full nodes in 18-19 hours instead of 2.5 days" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 52,978,309 |
net_rshares | -2,751,402,101 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
j1v | 0 | -2,751,402,101 | -100% |
I suspect theoreticalbts is one and the same person with @theoretical who is one of the main authors of the SMT whitepaper. Technical question (I'm trying to up my game and want to learn how to set up and run a witness): the steem blockchain produces 28800 blocks per day of up to 65 Kb each. That means that theoretically the blockchain could grow to up to 1.78 GB per day which means that by now, after 2 years, the full steem blockchain could (in theory, at maximum space utilization) be occupying 1.2 TB of disk space. Now it is probably a lot smaller than that in reality but I was wondering, is there some kind of archiving solution already in place or it's considered too early to start thinking about that ?
author | sorin.cristescu |
---|---|
permlink | re-themarkymark-how-i-replayed-our-full-nodes-in-18-19-hours-instead-of-2-5-days-20180430t205453430z |
category | steem |
json_metadata | {"tags":["steem"],"users":["theoretical"],"app":"steemit/0.1"} |
created | 2018-04-30 20:54:54 |
last_update | 2018-04-30 20:54:54 |
depth | 1 |
children | 0 |
last_payout | 2018-05-07 20:54:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 718 |
author_reputation | 255,754,000,681,122 |
root_title | "How I replayed our full nodes in 18-19 hours instead of 2.5 days" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,105,683 |
net_rshares | 0 |
<h3>This post, with over $50.00 in bidbot payouts, has received votes from the following:</h3> upmyvote payout in the amount of $113 STU, $248 USD. **For a total calculated bidbot upvote value of $113 STU, $248 USD before curation, with approx. $28 USD curation being earned by the bidbots.** This information is being presented in the interest of transparency on our platform @themarkymark **and is by no means a judgement of your work.**
author | transparencybot |
---|---|
permlink | re-how-i-replayed-our-full-nodes-in-18-19-hours-instead-of-2-5-days--bidbot |
category | steem |
json_metadata | {"tags":["bidbot","transparencybot"],"users":["themarkymark"],"app":"null/null","format":"markdown"} |
created | 2018-04-30 14:41:24 |
last_update | 2018-04-30 14:41:24 |
depth | 1 |
children | 0 |
last_payout | 2018-05-07 14:41:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 448 |
author_reputation | -5,641,716,862,244 |
root_title | "How I replayed our full nodes in 18-19 hours instead of 2.5 days" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,046,605 |
net_rshares | 0 |
great your post
author | zarzish |
---|---|
permlink | re-themarkymark-how-i-replayed-our-full-nodes-in-18-19-hours-instead-of-2-5-days-20180429t162502348z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-30 06:21:33 |
last_update | 2018-04-30 06:21:33 |
depth | 1 |
children | 0 |
last_payout | 2018-05-07 06:21:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 15 |
author_reputation | 58,807,793,467 |
root_title | "How I replayed our full nodes in 18-19 hours instead of 2.5 days" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 52,971,897 |
net_rshares | 0 |