This post will be a go-to reference for myself, and a resource for anyone interested in setting up an api node. It's very technical, so if you don't belong to one of those two groups you can skip it. <center>https://upload.wikimedia.org/wikipedia/commons/thumb/b/b8/Compiling.jpg/640px-Compiling.jpg</center> --------- # Introduction My current setup is close to the default hivemind setup provided in the example jussi config. After talks with @gtg one of the nodes offers a few more apis for performance reasons, as the fat node is very slow. There surely are not-optimal or even misconfigurations, optimization will be an ongoing process. See the end of the post for more info, make sure to read and understand everything before you start. I will update this post with any important changes. --------- # Hardware First, we need hardware. The setup consists of 3 nodes, for which I selected the following specs: - _hivemind_ 32GB RAM 2x240GB SSD RAID0 - _fat_ 64GB RAM 2x480GB SSD RAID0 - _accounthistory_ 64GB RAM 2x512GB NVMe RAID0 (64GB SWAP) All are set up with a clean install of Ubuntu 18.04 ------------------- # Setup ## Common steps Set up each server to log in securely and with a dedicated user. The user on all machines will be called "hive" during this process. Individual needs may differ so I don't go into details here and only provide the steps necessary to proceed. ```sudo apt-get update && sudo apt-get upgrade``` ```sudo apt-get install -y screen git nginx certbot python-certbot-nginx``` ## Step 1: make everything sync ### hivemind node install software ``` cd ~ sudo apt-get install -y python3 python3-pip postgresql postgresql-contrib docker.io git clone https://gitlab.syncad.com/hive/hivemind.git ``` ``` cd hivemind sudo pip3 install -e .[test] ``` setup database ``` sudo su postgres createdb hive ``` Create db user hive and grant access to database ```createuser --interactive``` ```psql``` ```GRANT ALL PRIVILEGES ON DATABASE hive TO hive;``` ```\q``` ```exit``` optimize postgres ```sudo nano /etc/postgresql/10/main/postgresql.conf``` use https://pgtune.leopard.in.ua/ to find the optimal settings for your machine. I used the following: ``` # DB Version: 10 # OS Type: linux # DB Type: web # Total Memory (RAM): 32 GB # Data Storage: ssd max_connections = 200 shared_buffers = 8GB effective_cache_size = 24GB maintenance_work_mem = 2GB checkpoint_completion_target = 0.7 wal_buffers = 16MB default_statistics_target = 100 random_page_cost = 1.1 effective_io_concurrency = 200 work_mem = 20971kB min_wal_size = 1GB max_wal_size = 4GB ``` ```sudo service postgresql restart``` The irredeemables list is a blacklist containing mass spammers mostly. It's recommended to use it if you serve browser based interfaces, because the amount of comments by these accounts creates a lot of traffic and is a burden on browsers. It's defined in ```/home/hive/hivemind/hive/conf.py``` under ```--muted-accounts-url```. You can change it there, or add the environment variable ```MUTED_ACCOUNTS_URL``` in both scripts if you do not want to use the default. I offer an [empty version](https://raw.githubusercontent.com/pharesim/irredeemables/master/full.txt) if you don't want to filter the results. Create sync script ```nano sync.sh``` Insert the following (the STEEMD_URL is temporary until your own fat node has synced, update and restart it in a few days to speed up the hivemind sync): ``` #!/bin/bash export DATABASE_URL=postgresql://hive:pass@localhost:5432/hive export STEEMD_URL='{"default": "https://fat.pharesim.me"}' export HTTP_SERVER_PORT=28091 hive sync ``` ``` chmod +x sync.sh screen -S hivesync ``` ```./sync.sh``` Use ```Ctrl-a d``` to detach screen, ```screen -r hivesync``` to reattach The whole sync process takes about a week. Don't forget changing the STEEMD_URL when your fat node is finished. Unlike the steemd replays, you can interrupt this sync at any time and it picks up where you stopped. The sync is finished when you see single blocks coming in. Keep it running, and set up the server: ``` cp sync.sh hivemind.sh nano hivemind.sh ``` Change ```sync``` in the end for ```server``` ``` screen -S hivemind ``` ```./hivemind.sh``` Use ```Ctrl-a d``` to detach screen, ```screen -r hivemind``` to reattach ### steemd nodes Both the fat and the accounthistory node will run an instance of steemd, these are the steps to prepare them: ``` sudo apt-get install -y autoconf automake cmake g++ git libbz2-dev libsnappy-dev libssl-dev libtool make pkg-config python3-jinja2 libboost-chrono-dev libboost-context-dev libboost-coroutine-dev libboost-date-time-dev libboost-filesystem-dev libboost-iostreams-dev libboost-locale-dev libboost-program-options-dev libboost-serialization-dev libboost-signals-dev libboost-system-dev libboost-test-dev libboost-thread-dev doxygen libncurses5-dev libreadline-dev perl ntp ``` ``` cd git clone https://github.com/openhive-network/hive cd hive git checkout v0.23.0 git submodule update --init --recursive mkdir build cd build ``` The build options differ for the two nodes _fat_ ``` cmake -DCMAKE_BUILD_TYPE=Release -DLOW_MEMORY_NODE=OFF -DCLEAR_VOTES=OFF -DSKIP_BY_TX_ID=OFF -DBUILD_STEEM_TESTNET=OFF -DENABLE_MIRA=ON -DSTEEM_STATIC_BUILD=ON .. ``` _accounthistory_ ``` cmake -DCMAKE_BUILD_TYPE=Release -DLOW_MEMORY_NODE=ON -DCLEAR_VOTES=ON -DSKIP_BY_TX_ID=OFF -DBUILD_STEEM_TESTNET=OFF -DENABLE_MIRA=OFF -DSTEEM_STATIC_BUILD=ON .. ``` Again on both: ``` make -j$(nproc) steemd cd mkdir bin cp /home/hive/hive/build/programs/steemd bin/v0.23.0 mkdir .steemd nano .steemd/config.ini ``` And again, the configs differ for the two nodes _fat_ ``` log-appender = {"appender":"stderr","stream":"std_error"} {"appender":"p2p","file":"logs/p2p/p2p.log"} log-logger = {"name":"default","level":"info","appender":"stderr"} {"name":"p2p","level":"warn","appender":"p2p"} backtrace = yes plugin = webserver p2p json_rpc witness account_by_key reputation market_history plugin = database_api account_by_key_api network_broadcast_api reputation_api plugin = market_history_api condenser_api block_api rc_api history-disable-pruning = 0 account-history-rocksdb-path = "blockchain/account-history-rocksdb-storage" block-data-export-file = NONE block-log-info-print-interval-seconds = 86400 block-log-info-print-irreversible = 1 block-log-info-print-file = ILOG sps-remove-threshold = 200 shared-file-dir = "blockchain" shared-file-size = 360G shared-file-full-threshold = 0 shared-file-scale-rate = 0 follow-max-feed-size = 500 follow-start-feeds = 0 market-history-bucket-size = [15,60,300,3600,86400] market-history-buckets-per-size = 5760 p2p-seed-node = anyx.io:2001 gtg.steem.house:2001 seed.jesta.us:2001 rc-skip-reject-not-enough-rc = 0 rc-compute-historical-rc = 0 statsd-batchsize = 1 tags-start-promoted = 0 tags-skip-startup-update = 0 transaction-status-block-depth = 64000 transaction-status-track-after-block = 0 webserver-http-endpoint = 0.0.0.0:28091 webserver-ws-endpoint = 0.0.0.0:28090 webserver-thread-pool-size = 32 enable-stale-production = 0 required-participation = 33 witness-skip-enforce-bandwidth = 1 ``` Not sure about the shared_file_size here, it's rocksdb? Better safe than sorry... _accounthistory_ ``` log-appender = {"appender":"stderr","stream":"std_error"} {"appender":"p2p","file":"logs/p2p/p2p.log"} log-logger = {"name":"default","level":"info","appender":"stderr"} {"name":"p2p","level":"warn","appender":"p2p"} backtrace = yes plugin = webserver p2p json_rpc witness plugin = rc market_history_account_history_rocksdb transaction_status account_by_key plugin = database_api condenser_api market_history_api account_history_api transaction_status_api account_by_key_api plugin = block_api network_broadcast_api rc_api history-disable-pruning = 1 account-history-rocksdb-path = "blockchain/account-history-rocksdb-storage" block-data-export-file = NONE block-log-info-print-interval-seconds = 86400 block-log-info-print-irreversible = 1 block-log-info-print-file = ILOG sps-remove-threshold = 200 shared-file-dir = "/run/hive" shared-file-size = 120G shared-file-full-threshold = 9500 shared-file-scale-rate = 1000 flush-state-interval = 0 follow-max-feed-size = 500 follow-start-feeds = 0 market-history-bucket-size = [15,60,300,3600,86400] market-history-buckets-per-size = 5760 p2p-seed-node = anyx.io:2001 seed.jesta.us:2001 rc-skip-reject-not-enough-rc = 0 rc-compute-historical-rc = 0 statsd-batchsize = 1 tags-start-promoted = 0 tags-skip-startup-update = 0 transaction-status-block-depth = 64000 transaction-status-track-after-block = 42000000 webserver-http-endpoint = 0.0.0.0:28091 webserver-ws-endpoint = 0.0.0.0:28090 webserver-thread-pool-size = 32 ``` The _fat_ node also needs a database.cfg ```nano .steemd/database.cfg``` These settings are for 32GB of RAM. Adapt global.shared_cache.capacity, global.write_buffer_manager.write_buffer_size and global.object_count accordingly ``` { "global": { "shared_cache": { "capacity": "21474836480" }, "write_buffer_manager": { "write_buffer_size": "4294967296" }, "object_count": 250000, "statistics": false }, "base": { "optimize_level_style_compaction": true, "increase_parallelism": true, "block_based_table_options": { "block_size": 8192, "cache_index_and_filter_blocks": true, "bloom_filter_policy": { "bits_per_key": 10, "use_block_based_builder": false } } } } ``` As well as increased file limits (hive is the username, adapt to your memory again) ```sudo nano /etc/security/limits.conf``` Insert near the end of the file ``` hive soft nofile 262140 hive hard nofile 262140 ``` ```sudo nano /etc/sysctl.conf ``` Insert near the end of the file ``` fs.file-max = 2097152 ``` You need to log in to the server again for these to take effect. The _accounthistory_ requires a change of the size of /run ```mount -o remount ,size=120G /run``` and a directory /run/hive ``` sudo mkdir /run/hive sudo chown hive:hive /run/hive ``` Then continue on both servers. Download block_log.index and block_log ``` rsync -avh --progress --append rsync://files.privex.io/hive/block_log.index .steemd/blockchain/block_log.index rsync -avh --progress --append rsync://files.privex.io/hive/block_log .steemd/blockchain/block_log ``` Go for a walk or have dinner. Start up steemd and replay blockchain ```screen -S hive``` ``` echo 75 | sudo tee /proc/sys/vm/dirty_background_ratio echo 1000 | sudo tee /proc/sys/vm/dirty_expire_centisecs echo 80 | sudo tee /proc/sys/vm/dirty_ratio echo 30000 | sudo tee /proc/sys/vm/dirty_writeback_centisecs ``` ```~/bin/v0.23.0 --replay``` Use ```Ctrl-d a``` to detach from screen, and ```screen -r hive``` to reattach. The sync process takes a bit more than 2 days on the fat node, less on accounthistory. Do not interrupt them, or you will have to start over. If you are syncing a hivemind node, don't forget to switch to the fat node when that's finished. ## Step 2: webserver + routing ### all nodes All requests will be proxied by nginx, so we need this on all machines. We will install SSL certificates, so all communication is encrypted and all nodes can be called individually. ```sudo nano /etc/nginx/sites-enabled/hive``` The config is the same for each node, only change the server_name ``` upstream hivesrvs { # Dirty Hack. Causes nginx to retry node server 127.0.0.1:28091; server 127.0.0.1:28091; server 127.0.0.1:28091; server 127.0.0.1:28091; keepalive 10; } server { server_name hivemind/fat/acchist.you.tld; root /var/www/html/; location ~ ^(/|/ws) { proxy_pass http://hivesrvs; proxy_set_header Connection ""; include snippets/rpc.conf; } ``` Add the rpc.conf to each server ```sudo nano /etc/nginx/snippets/rpc.conf``` Insert ``` access_log off; proxy_set_header X-Real-IP $remote_addr; proxy_set_header Host $host; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_next_upstream error timeout invalid_header http_500 http_502 http_503 http_504; proxy_connect_timeout 10; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; keepalive_timeout 65; keepalive_requests 100000; sendfile on; tcp_nopush on; tcp_nodelay on; proxy_ssl_verify off; ``` Let certbot configure the domains for automatic redirect to https ```sudo certbot --nginx``` ### hivemind node We need an additional file for nginx, for the general entry point ``` sudo cp /etc/nginx/sites-enabled/hive /etc/nginx/sites-enabled/api sudo nano /etc/nginx/sites-enabled/api ``` Change both occurances of ```hivesrvs``` to ```jussisrv```, the ports from ```28091``` to ```9000```, and the server_name to api., or whatever you want your node to be accessible on. #### jussi ``` cd ~ git clone https://gitlab.syncad.com/hive/jussi.git ``` Create build script ```nano build.sh``` and insert ``` #!/bin/bash cd /home/hive/jussi sudo docker build -t="$USER/jussi:$(git rev-parse --abbrev-ref HEAD)" . ``` ```chmod +x build.sh``` Create run script ```nano jussi.sh``` and insert ``` #!/bin/bash cd /home/hive/jussi sudo docker run -itp 9000:8080 --log-opt max-size=50m "$USER/jussi:$(git rev-parse --abbrev-ref HEAD)" ``` ```chmod +x jussi.sh``` ```screen -S jussi``` ``` cd ~/jussi nano DEV_config.json ``` Currently, my config looks like this: ``` { "limits": { "accounts_blacklist": [ "accounttoblock" ] }, "upstreams": [ { "name": "steemd", "translate_to_appbase": true, "urls": [["steemd", "https://fat1.pharesim.me" ]], "ttls": [["steemd", 3]], "timeouts": [["steemd",3]] }, { "name": "appbase", "urls": [ ["appbase", "https://fat1.pharesim.me"], ["appbase.account_history_api", "https://acchist1.pharesim.me"], ["appbase.condenser_api.get_account_history", "https://acchist1.pharesim.me"], ["appbase.condenser_api.get_ops_in_block", "https://acchist1.pharesim.me"], ["appbase.condenser_api.get_transaction", "https://acchist1.pharesim.me"], ["appbase.condenser_api.get_followers", "https://hivemind.pharesim.me"], ["appbase.condenser_api.get_following", "https://hivemind.pharesim.me"], ["appbase.condenser_api.get_follow_count", "https://hivemind.pharesim.me"], ["appbase.condenser_api.get_discussions_by_trending", "https://hivemind.pharesim.me"], ["appbase.condenser_api.get_discussions_by_hot", "https://hivemind.pharesim.me"], ["appbase.condenser_api.get_discussions_by_promoted", "https://hivemind.pharesim.me"], ["appbase.condenser_api.get_discussions_by_created", "https://hivemind.pharesim.me"], ["appbase.condenser_api.get_discussions_by_blog", "https://hivemind.pharesim.me"], ["appbase.condenser_api.get_discussions_by_feed", "https://hivemind.pharesim.me"], ["appbase.condenser_api.get_discussions_by_comments", "https://hivemind.pharesim.me"], ["appbase.condenser_api.get_reblogged_by", "https://hivemind.pharesim.me"], ["appbase.condenser_api.get_replies_by_last_update", "https://hivemind.pharesim.me"], ["appbase.condenser_api.get_trending_tags", "https://hivemind.pharesim.me"], ["appbase.condenser_api.get_discussions_by_author_before_date", "https://hivemind.pharesim.me"], ["appbase.condenser_api.get_post_discussions_by_payout", "https://hivemind.pharesim.me"], ["appbase.condenser_api.get_comment_discussions_by_payout", "https://hivemind.pharesim.me"], ["appbase.condenser_api.get_blog", "http://localhost:28091"], ["appbase.condenser_api.get_blog_entries", "https://hivemind.pharesim.me"], ["appbase.condenser_api.get_account_votes", "https://hivemind.pharesim.me"], ["appbase.condenser_api.get_state", "https://hivemind.pharesim.me"], ["appbase.condenser_api.get_state.params=['witnesses']", "https://acchist1.pharesim.me"], ["appbase.condenser_api.get_state.params=['/witnesses']", "https://acchist1.pharesim.me"], ["appbase.condenser_api.get_state.params=['/~witnesses']", "https://acchist1.pharesim.me"], ["appbase.condenser_api.get_state.params=['~witnesses']", "https://acchist1.pharesim.me"], ["appbase.follow_api", "https://hivemind.pharesim.me"], ["appbase.tags_api", "https://hivemind.pharesim.me"], ["appbase.market_history_api", "https://acchist1.pharesim.me"], ["appbase.transaction_status_api", "https://acchist1.pharesim.me"], ["appbase.account_by_key_api", "https://acchist1.pharesim.me"], ["appbase.block_api", "https://acchist1.pharesim.me"], ["appbase.network_broadcast_api", "https://acchist1.pharesim.me"], ["appbase.rc_api", "https://acchist1.pharesim.me"] ], "ttls": [ ["appbase", 3], ["appbase.login_api",-1], ["appbase.network_broadcast_api", -1], ["appbase.follow_api", 10], ["appbase.market_history_api", 1], ["appbase.condenser_api", 3], ["appbase.condenser_api.get_block", -2], ["appbase.condenser_api.get_block_header", -2], ["appbase.condenser_api.get_content", 1], ["appbase.condenser_api.get_state", 1], ["appbase.condenser_api.get_state.params=['/trending']", 30], ["appbase.condenser_api.get_state.params=['trending']", 30], ["appbase.condenser_api.get_state.params=['/hot']", 30], ["appbase.condenser_api.get_state.params=['/welcome']", 30], ["appbase.condenser_api.get_state.params=['/promoted']", 30], ["appbase.condenser_api.get_state.params=['/created']", 10], ["appbase.condenser_api.get_dynamic_global_properties", 3] ], "timeouts": [ ["appbase", 3], ["appbase.network_broadcast_api",0], ["appbase.chain_api.push_block", 0], ["appbase.chain_api.push_transaction", 0], ["appbase.condenser_api.broadcast_block", 0], ["appbase.condenser_api.broadcast_transaction", 0], ["appbase.condenser_api.broadcast_transaction_synchronous", 0], ["appbase.condenser_api.get_account_history", 20], ["appbase.condenser_api.get_account_votes", 20], ["appbase.condenser_api.get_ops_in_block.params=[2889020,false]", 20], ["appbase.account_history_api.get_account_history", 20], ["appbase.account_history_api.get_ops_in_block.params={\"block_num\":2889020,\"only_virtual\":false}", 20] ] }, { "name": "hive", "urls": [["hive", "http://localhost:28091"]], "ttls": [["hive", -1]], "timeouts": [["hive", 30]] }, { "name": "bridge", "translate_to_appbase": false, "urls": [["bridge","http://localhost:28091"]], "ttls": [["bridge",-1]], "timeouts": [["bridge",30]] } ] } ``` ```cd``` ```./build.sh``` This takes a while, when finished ```./run.sh``` Use ```Ctrl-a d``` to detach screen, ```screen -r jussi``` to reattach If you update your config, run build.sh outside of screen, then attach to screen and restart the run script. (There may be faster ways to update the docker with a new config, but I'm new to this). ### Something about steemd apis As you might have realized, there are some duplicates in the apis _fat_ and _accounthistory_ provide. That's because of what I mentioned above, _fat_ is _slow_. I did not investigate which aren't needed on _fat_ now to still work for hivemind, so I didn't change anything in that default configuration. I also just took the list for apis on _accounthistory_ from @gtg without questioning. There is unnecessary redundancy for sure, instructions may change in the future to improve on this. Your perfect setup may differ completely, depending on which apis you need to serve (most). ## Finishing words That's it. After everything is synced, you should have a working public node ready to serve requests! If this guide has helped you and/or you want to support my work on Hive infrastructure, education, onboarding and retention, please [help me secure my witness spot](https://peakd.com/me/witnesses)! ## Stats Current output of ```df -h``` on the three servers (April 14): _hivemind_ ``` /dev/md2 407G 272G 115G 71% / ``` _fat_ ``` /dev/md2 815G 369G 406G 48% / ``` _accounthistory_ ``` tmpfs 120G 58G 63G 48% /run /dev/md2 874G 531G 299G 65% / ```
author | pharesim |
---|---|
permlink | details-about-the-setup-of-my-public-node |
category | hive-139531 |
json_metadata | {"tags":["hive","witness","tutorial","rpc","howto"],"users":["gtg","localhost"],"image":["https://upload.wikimedia.org/wikipedia/commons/thumb/b/b8/Compiling.jpg/640px-Compiling.jpg"],"links":["/@gtg","https://pgtune.leopard.in.ua/","https://raw.githubusercontent.com/pharesim/irredeemables/master/full.txt","/@gtg","/me/witnesses"],"app":"peakd/2020.09.1","format":"markdown"} |
created | 2020-04-10 20:32:57 |
last_update | 2020-09-10 11:39:57 |
depth | 0 |
children | 28 |
last_payout | 2020-04-17 20:32:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 44.243 HBD |
curator_payout_value | 39.214 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 20,649 |
author_reputation | 239,352,620,843,716 |
root_title | "Details about the setup of my public node" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,790,755 |
net_rshares | 232,388,660,002,545 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
liondani | 0 | 10,654,739,225,138 | 100% | ||
bue | 0 | 840,898,082,396 | 100% | ||
ash | 0 | 646,848,068,748 | 100% | ||
kingscrown | 0 | -7,421,263,302,042 | -99% | ||
teamsteem | 0 | 1,485,954,337 | 100% | ||
acidyo | 0 | 8,357,443,452,831 | 77% | ||
oaldamster | 0 | 39,357,746,708 | 100% | ||
juanmiguelsalas | 0 | 3,131,034,314 | 20% | ||
gtg | 0 | 4,687,915,255,183 | 25% | ||
norbu | 0 | 23,942,858,289 | 10% | ||
kosimoos | 0 | 543,008,627 | 50% | ||
roelandp | 0 | 5,279,676,799,249 | 50% | ||
ezzy | 0 | 3,781,853,900,932 | 50% | ||
rxhector | 0 | 20,603,774,112 | 100% | ||
ausbitbank | 0 | 2,657,430,585,919 | 100% | ||
fulltimegeek | 0 | 583,113,197,782 | 100% | ||
ssjsasha | 0 | 861,910,888,320 | 100% | ||
jeffjagoe | 0 | 1,041,305,740 | 0.3% | ||
inertia | 0 | 831,958,253,794 | 100% | ||
arcange | 0 | 65,411,768,306 | 3% | ||
lichtblick | 0 | 1,914,623,007,538 | 100% | ||
demotruk | 0 | 3,139,766,569,190 | 100% | ||
konti | 0 | 37,655,316,731 | 100% | ||
sharker | 0 | 5,576,050,576 | 24.5% | ||
raphaelle | 0 | 2,293,972,596 | 3% | ||
ace108 | 0 | 132,641,393,479 | 5% | ||
kibela | 0 | 7,644,484,666 | 24.5% | ||
felixxx | 0 | 344,294,642,795 | 100% | ||
timcliff | 0 | 1,027,575,808,511 | 100% | ||
achim86 | 0 | 114,667,374,124 | 50% | ||
alinalazareva | 0 | 760,016,688 | 14% | ||
jphamer1 | 0 | 3,799,519,329,177 | 100% | ||
joele | 0 | 6,197,217,697,255 | 100% | ||
oflyhigh | 0 | 4,387,751,726,625 | 100% | ||
fingolfin | 0 | 120,651,236,688 | 100% | ||
borran | 0 | 231,453,127,849 | 42% | ||
lemouth | 0 | 1,423,219,641,782 | 100% | ||
themanualbot | 0 | 15,828,933,581 | 10% | ||
netaterra | 0 | 326,275,499,843 | 17% | ||
anarcho-andrei | 0 | 22,078,987,577 | 70% | ||
fraenk | 0 | 79,199,828,571 | 100% | ||
lapingvino | 0 | 39,828,246,480 | 100% | ||
cnfund | 0 | 63,813,736,383 | 100% | ||
yuriks2000 | 0 | 1,722,894,317 | 7.5% | ||
steemcleaners | 0 | 6,397,215,072,321 | 100% | ||
disregardfiat | 0 | 146,128,860,053 | 100% | ||
jang | 0 | 201,415,827,623 | 100% | ||
koskl | 0 | 47,109,740,953 | 100% | ||
btshuang | 0 | 257,831,799,732 | 100% | ||
siniceku | 0 | 853,152,789 | 100% | ||
techslut | 0 | 68,025,564,907 | 12.5% | ||
redes | 0 | 1,435,553,056,893 | 25% | ||
judasp | 0 | 961,808,758,909 | 100% | ||
tangmo | 0 | 81,170,979,789 | 100% | ||
oleg326756 | 0 | 40,623,264,869 | 100% | ||
ixindamix | 0 | 61,728,329,148 | 50% | ||
lovemetouchme2 | 0 | 21,634,612,522 | 15% | ||
delso | 0 | 3,613,218,858,656 | 100% | ||
rahul.stan | 0 | 20,615,566,046 | 38.5% | ||
kotturinn | 0 | 67,912,678,061 | 100% | ||
schamangerbert | 0 | 624,530,965,537 | 100% | ||
tarazkp | 0 | 1,922,292,069,556 | 51% | ||
filotasriza3 | 0 | 32,877,947,834 | 50% | ||
sn0n | 0 | 7,577,435,704 | 100% | ||
evildeathcore | 0 | 15,646,897,512 | 100% | ||
ackza | 0 | 134,761,422,217 | 100% | ||
borislavzlatanov | 0 | 128,080,010,928 | 100% | ||
kingsmind | 0 | -22,435,175,313 | -49.5% | ||
lordneroo | 0 | 34,346,173,749 | 100% | ||
dhimmel | 0 | 3,793,733,028,627 | 100% | ||
preparedwombat | 0 | 362,300,879,744 | 100% | ||
freebornsociety | 0 | 1,386,770,930 | 10% | ||
damla | 0 | 56,014,386,206 | 100% | ||
justatouchfey | 0 | 10,796,655,985 | 100% | ||
imperfect-one | 0 | 7,593,748,066 | 100% | ||
bloomberg215 | 0 | 5,006,423,640 | 100% | ||
sepracore | 0 | 2,011,281,803,866 | 100% | ||
bloom | 0 | 391,187,783,232 | 100% | ||
smasssh | 0 | 1,319,849,911,993 | 50% | ||
acromott | 0 | 36,238,516,786 | 100% | ||
mes | 0 | 216,634,276,205 | 100% | ||
batman0916 | 0 | 1,601,359,173 | 7.5% | ||
jraysteem | 0 | 2,691,488,809 | 50% | ||
lenmar | 0 | 356,030,142,406 | 100% | ||
followbtcnews | 0 | 1,286,212,106,400 | 100% | ||
drag33 | 0 | 84,918,816,835 | 100% | ||
mys | 0 | 17,072,856,010 | 5% | ||
ayijufridar | 0 | 121,540,612,521 | 100% | ||
kilianmiguel | 0 | 1,337,848,477 | 8% | ||
fredrikaa | 0 | 2,005,594,194,057 | 100% | ||
yehey | 0 | 1,281,967,883,328 | 100% | ||
giuatt07 | 0 | 266,123,574,797 | 25% | ||
slefesteem | 0 | 1,148,642,486 | 50% | ||
galenkp | 0 | 1,204,059,928,088 | 100% | ||
enjar | 0 | 186,137,768,170 | 50% | ||
maxer27 | 0 | 135,586,440,840 | 35% | ||
wf9877 | 0 | 670,793,386,466 | 100% | ||
hotsauceislethal | 0 | 2,530,509,351 | 1.5% | ||
rawpride | 0 | 12,281,431,072 | 15% | ||
pinoy | 0 | 1,918,776,206 | 100% | ||
netuoso | 0 | 1,348,454,257,123 | 100% | ||
d-pend | 0 | 2,989,327,531,854 | 100% | ||
m31 | 0 | 446,849,815,013 | 100% | ||
erickpinos | 0 | 207,426,533,940 | 100% | ||
makrotheblack | 0 | 8,155,882,064 | 100% | ||
boucaron | 0 | 10,652,731,536 | 100% | ||
dgbtech | 0 | 17,128,154,951 | 100% | ||
jeffrey24864 | 0 | 159,680,414,383 | 100% | ||
gambit.coin | 0 | 1,415,414,622 | 100% | ||
nicniezgrublem | 0 | 20,669,503,107 | 100% | ||
mygod | 0 | 257,886,573,273 | 100% | ||
synrg | 0 | 305,396,961,166 | 100% | ||
sanjeevm | 0 | 497,671,259,842 | 50% | ||
katteasis | 0 | 124,939,080,326 | 100% | ||
teukumuhas | 0 | 656,814,008 | 100% | ||
yoogyart | 0 | 29,598,365,437 | 51% | ||
superhardness | 0 | 6,775,059,397,222 | 100% | ||
vikisecrets | 0 | 345,462,252,541 | 30% | ||
windtalker | 0 | 838,474,795 | 100% | ||
avesa | 0 | 3,003,156,292 | 33% | ||
pojan | 0 | 2,121,392,845 | 100% | ||
spaminator | 0 | 2,446,875,357,695 | 100% | ||
kimzwarch | 0 | 8,587,391,352 | 4% | ||
ponpase | 0 | 13,660,061,088 | 100% | ||
crokkon | 0 | 38,859,885,080 | 100% | ||
blokz | 0 | 2,946,799,470 | 100% | ||
chinchilla | 0 | 276,965,232,222 | 100% | ||
joshman | 0 | 878,987,346,551 | 20% | ||
jamesbarraclough | 0 | 662,821,592 | 100% | ||
cotarelo | 0 | 167,439,290,246 | 100% | ||
deathwing | 0 | 30,167,874,989 | 100% | ||
espoem | 0 | 270,317,115,187 | 100% | ||
bipolar | 0 | 2,519,192,052 | 33% | ||
filipino | 0 | 3,115,587,353 | 100% | ||
yabapmatt | 0 | 4,118,909,045,139 | 100% | ||
mcfarhat | 0 | 48,434,064,594 | 100% | ||
mendoza | 0 | 7,408,419,575 | 100% | ||
krevasilis | 0 | 198,949,840,471 | 100% | ||
thatkidsblack | 0 | 172,182,901,230 | 100% | ||
florian-glechner | 0 | 232,983,746,611 | 100% | ||
petrolinivideo | 0 | 5,904,178,405 | 50% | ||
johnhdn | 0 | 0 | 100% | ||
arabisouri | 0 | 72,915,875,400 | 100% | ||
mrsyria | 0 | 575,714,339 | 100% | ||
bluntsmasha | 0 | 986,759,509 | 12.75% | ||
omstavan | 0 | 6,126,239,367 | 100% | ||
steinhammer | 0 | 666,855,647 | 50% | ||
bangjuh | 0 | 2,214,998,925 | 100% | ||
sankysanket18 | 0 | 108,883,026,101 | 100% | ||
dashroom | 0 | 744,045,050 | 12.75% | ||
zakia | 0 | 39,754,877,247 | 100% | ||
not-a-bird | 0 | 627,396,865 | 3.18% | ||
sarakey | 0 | 5,994,387,708 | 100% | ||
murad06 | 0 | 971,462,922 | 100% | ||
mytechtrail | 0 | 42,384,135,604 | 20% | ||
peeterxnjoroge | 0 | 1,973,414,944 | 100% | ||
itchyfeetdonica | 0 | 172,840,449,380 | 50% | ||
elderson | 0 | 741,310,502 | 7.5% | ||
fixedbydoc | 0 | 1,818,722,212 | 3% | ||
esaia.mystic | 0 | 4,077,755,087 | 60% | ||
nathen007 | 0 | 19,828,177,873 | 100% | ||
geekpowered | 0 | 75,290,273,802 | 100% | ||
markaustin | 0 | 791,737,454 | 5% | ||
andisantos | 0 | 597,999,238 | 50% | ||
treble | 0 | 8,156,614,222 | 100% | ||
fourfourfun | 0 | 6,652,925,439 | 25% | ||
joankii | 0 | 1,737,359,329 | 100% | ||
paradigmprospect | 0 | 806,244,587 | 0.75% | ||
tinoschloegl | 0 | 2,064,937,888 | 100% | ||
oliverschmid | 0 | 563,176,282,893 | 50% | ||
jgvinstl | 0 | 19,156,121,070 | 100% | ||
bluenarcolepsy | 0 | 3,110,843,215 | 100% | ||
edwardstobia | 0 | 26,846,894,689 | 100% | ||
wehmoen | 0 | 1,142,873,853,337 | 100% | ||
zapplwoman | 0 | 24,163,817,501 | 100% | ||
santarius | 0 | 1,658,410,030 | 100% | ||
acronyms | 0 | 1,495,091,854 | 100% | ||
leslierevales | 0 | 1,952,027,913 | 50% | ||
afiqsejuk | 0 | 600,970,219,190 | 100% | ||
patricklancaster | 0 | 12,012,982,620 | 70% | ||
gokhan83kurt | 0 | 3,594,409,733 | 100% | ||
ruti | 0 | 44,051,962 | 100% | ||
dynamicrypto | 0 | 2,260,237,327 | 1% | ||
shares | 0 | 51,122,049,815 | 100% | ||
shemzy | 0 | 3,266,284,881 | 100% | ||
betbet | 0 | 852,280,093 | 100% | ||
leesujin | 0 | 2,342,610,124 | 100% | ||
holger80 | 0 | 1,703,249,646,042 | 50% | ||
lemony-cricket | 0 | 840,177,181,451 | 100% | ||
surika | 0 | 743,890,321 | 100% | ||
natha93 | 0 | 2,505,366,249 | 7.5% | ||
udezee | 0 | 44,964,971,630 | 100% | ||
anderssinho | 0 | 8,338,298,002 | 100% | ||
beggars | 0 | 59,304,424,708 | 100% | ||
tomhall | 0 | 1,514,467,292,270 | 100% | ||
mgzayyar | 0 | 40,335,530,974 | 100% | ||
condeas | 0 | 1,230,865,601,779 | 100% | ||
sashas | 0 | 3,301,803,854 | 100% | ||
cheema1 | 0 | 37,647,876,389 | 77% | ||
asgarth | 0 | 854,820,631,393 | 50% | ||
flugschwein | 0 | -31,988,817,196 | -100% | ||
cst90 | 0 | 33,171,960,680 | 100% | ||
whack.science | 0 | 148,386,011,238 | 35% | ||
melvin7 | 0 | 37,721,529,782 | 100% | ||
technologix | 0 | 4,206,065,405 | 100% | ||
almi | 0 | 32,835,763,945 | 75% | ||
ericha | 0 | 9,878,977,373 | 100% | ||
thomasthewolf | 0 | 26,697,845,421 | 40% | ||
afrinsultana | 0 | 7,155,047,548 | 20% | ||
olimiesma | 0 | 43,050,608,713 | 100% | ||
bonzopoe | 0 | 10,201,856,222 | 50% | ||
azircon | 0 | 1,846,347,372,762 | 20% | ||
zemiatin | 0 | 27,712,268,211 | 100% | ||
mairosoft | 0 | 643,293,431 | 100% | ||
shakilkhan | 0 | 17,873,173,609 | 100% | ||
sapphic | 0 | 1,453,142,217 | 7.5% | ||
josevallera | 0 | 1,667,156,877 | 20% | ||
abrockman | 0 | 835,469,430,049 | 100% | ||
cryptoinvestsvk | 0 | 232,240,662,779 | 100% | ||
ronaldoavelino | 0 | 430,649,002,067 | 30% | ||
louis88 | 0 | 1,167,413,042,483 | 100% | ||
nurainiwahab | 0 | 392,083,356 | 100% | ||
foxon | 0 | 352,188,125,651 | 100% | ||
gadrian | 0 | 298,936,905,240 | 100% | ||
lordbutterfly | 0 | 335,921,181,803 | 100% | ||
allover | 0 | 877,597,730 | 100% | ||
branding | 0 | 1,345,751,688 | 100% | ||
saboin | 0 | 31,136,538,516 | 4% | ||
broadcast | 0 | 9,075,796,473 | 100% | ||
meanbees | 0 | 25,900,439,266 | 7.5% | ||
andreasgrubhofer | 0 | 120,327,270,833 | 95% | ||
morellys2004 | 0 | 60,338,084,208 | 100% | ||
fucktime | 0 | 8,739,800,103 | 100% | ||
promobot | 0 | 915,513,880,209 | 100% | ||
glodniwiedzy | 0 | 27,181,430,224 | 100% | ||
lemcriq | 0 | 1,300,142,403 | 100% | ||
veteranforcrypto | 0 | 11,825,287,694 | 15% | ||
thebot | 0 | 754,962,953,968 | 100% | ||
automation | 0 | 1,507,801,197 | 50% | ||
celinavisaez | 0 | 6,388,220,368 | 25% | ||
hatoto | 0 | 215,831,163,478 | 100% | ||
ederaleng | 0 | 9,650,912,177 | 100% | ||
kadoshmenorah | 0 | 14,508,764,032 | 60% | ||
archisteem | 0 | 3,299,496,063 | 7.5% | ||
motherofalegend | 0 | 2,010,004,541 | 7.5% | ||
insaneworks | 0 | 35,653,728,892 | 50% | ||
elmundodexao | 0 | 8,819,733,214 | 100% | ||
cryptojiang | 0 | 717,569,303 | 100% | ||
agathusia | 0 | 852,322,197 | 100% | ||
drsensor | 0 | 2,179,426,737 | 80% | ||
gnomed0 | 0 | 3,083,505,568 | 100% | ||
ambiguity | 0 | 775,775,407 | 3.75% | ||
pagliozzo | 0 | 20,094,029,335 | 20% | ||
gerdtrudroepke | 0 | 30,231,142,651 | 50% | ||
goumao | 0 | 82,787,558,196 | 100% | ||
deepdives | 0 | 349,620,843,810 | 100% | ||
artmedina | 0 | 3,320,346,558 | 60% | ||
julian2013 | 0 | 6,266,780,373 | 2.25% | ||
doldrums | 0 | 3,974,192,808 | 5% | ||
stever82 | 0 | 15,801,078,246 | 7.5% | ||
spoke | 0 | 178,296,805,042 | 100% | ||
fullnodeupdate | 0 | 6,790,285,314 | 50% | ||
engrave | 0 | 1,219,914,821,499 | 100% | ||
bengiles | 0 | 12,654,980,790 | 3.75% | ||
tipsybosphorus | 0 | 634,259,822,895 | 100% | ||
chike4545 | 0 | 723,681,553 | 100% | ||
canna-curate | 0 | 73,553,143,742 | 15% | ||
canna-collective | 0 | 15,074,889,595 | 4.5% | ||
mister-meeseeks | 0 | 21,311,031,948 | 38.5% | ||
jonassi | 0 | 315,436,992 | 100% | ||
a-non-e-moose | 0 | 2,546,857,443 | 100% | ||
qwoyn | 0 | 2,441,312,431 | 7.5% | ||
thrasher666 | 0 | 1,675,510,913 | 60% | ||
milky-concrete | 0 | 334,578,314,681 | 100% | ||
linuxbot | 0 | 875,307,231 | 100% | ||
actnearn | 0 | 3,009,366,740,453 | 100% | ||
bolajija | 0 | 12,216,965 | 100% | ||
mango-juice | 0 | 1,075,804,078 | 3% | ||
theycallmedan | 0 | 38,970,630,726,363 | 44% | ||
bgornicki | 0 | 1,098,665,213 | 100% | ||
marki99 | 0 | 373,405,574,627 | 100% | ||
crypto-pixie | 0 | 65,132,146,719 | 100% | ||
crytiblock | 0 | 68,173,433 | 1% | ||
yuriy4 | 0 | 8,367,820,554 | 100% | ||
equipodelta | 0 | 90,875,593,540 | 100% | ||
bluerobo | 0 | 67,793,126,668 | 100% | ||
swiftbot | 0 | 8,623,286,683 | 69% | ||
xxxxxxxxxx | 0 | 18,160,614,879,803 | 100% | ||
enthef | 0 | 13,597,040,030 | 100% | ||
kork75 | 0 | 13,140,198,817 | 100% | ||
drazeus | 0 | 5,135,325,131 | 100% | ||
anonsteve | 0 | 5,179,412,436 | 10% | ||
pesos | 0 | 3,575,571,507 | 100% | ||
idiosyncratic1 | 0 | 11,393,786,859 | 100% | ||
jamesbattler | 0 | 113,969,007,556 | 100% | ||
robinsonr810 | 0 | 8,804,129,669 | 100% | ||
brujas | 0 | 1,092,012,458 | 100% | ||
darrenfj | 0 | 23,026,523,728 | 25% | ||
hanke | 0 | 2,387,333,764 | 100% | ||
bluemaskman | 0 | 1,487,530,477 | 7.5% | ||
thelogicaldude | 0 | 6,515,005,675 | 7.5% | ||
denizcakmak | 0 | 562,853,494 | 50% | ||
hungryharish | 0 | 8,658,022,934 | 100% | ||
historiasamorlez | 0 | 9,769,073,472 | 48% | ||
lionsaturbix | 0 | 1,961,982,549 | 60% | ||
androshchuk | 0 | 2,210,446,135 | 100% | ||
lefty619 | 0 | 41,121,934,575 | 100% | ||
maxsieg | 0 | 2,335,057,407 | 100% | ||
engrsayful | 0 | -22,565,214,771 | -49.5% | ||
artier14 | 0 | 36,506,566 | 100% | ||
nextcolony | 0 | 1,443,980,210,487 | 50% | ||
gulf41 | 0 | 4,561,158,010 | 100% | ||
canercanbolat | 0 | 280,798,938 | 100% | ||
likwid | 0 | 33,202,110,820,765 | 100% | ||
oxoskva | 0 | 961,386,381 | 100% | ||
sidinca | 0 | 1,392,420,834 | 60% | ||
weedcash | 0 | 2,097,389,469 | 4.95% | ||
diazrock | 0 | 2,360,431,666 | 100% | ||
uncafeyalgomas | 0 | 2,629,771,867 | 60% | ||
imbartley | 0 | 1,500,331,639 | 50% | ||
thepen | 0 | 713,544,842 | 100% | ||
sanaee | 0 | 8,341,322,855 | 100% | ||
grannabis | 0 | 603,701,468 | 23% | ||
lrekt01 | 0 | 2,497,973,519 | 100% | ||
angelesdesteemit | 0 | 44,876,951,742 | 60% | ||
everythingsmgirl | 0 | 1,360,982,209 | 50% | ||
condeas.pal | 0 | 834,475,349 | 90% | ||
nathangraham | 0 | 896,450,602 | 100% | ||
tys-project | 0 | 1,801,466,560 | 100% | ||
dr-autoflower | 0 | 3,388,751,584 | 7.5% | ||
koloboks | 0 | 6,259,346,441 | 100% | ||
angeles-trail | 0 | 580,992,546 | 60% | ||
vipservice | 0 | 31,006,719,055 | 3% | ||
petscorner | 0 | 943,248,802 | 100% | ||
joshmania | 0 | 17,998,871,726 | 13.8% | ||
atheistrepublic | 0 | 3,812,634,712,472 | 100% | ||
lamorada | 0 | 557,678,706 | 100% | ||
galenkp.aus | 0 | 889,790,921 | 100% | ||
ang.pal | 0 | 682,931,287 | 60% | ||
steempower-001 | 0 | 1,057,362,269 | 100% | ||
tongchat27 | 0 | 1,411,355,595,815 | 100% | ||
agls-21 | 0 | 543,970,639 | 60% | ||
simply2koool | 0 | 10,512,923,200 | 25% | ||
stevespeaks | 0 | 6,453,131,315 | 100% | ||
dollarbills | 0 | 103,559,144,166 | 100% | ||
mubashirjalal | 0 | 0 | 100% | ||
bilpcoinbpc | 0 | 718,794,391 | 38.5% | ||
imobiles | 0 | 0 | 100% | ||
diamond-head | 0 | 3,900,759,430 | 100% | ||
kreur | 0 | 19,700,520,709 | 100% | ||
karpnado | 0 | 67,318,341,761 | 100% | ||
thehockeyfan-at | 0 | 15,721,484,657 | 100% | ||
stuntman.mike | 0 | 47,539,745,233 | 100% | ||
fengchao | 0 | 0 | 3% | ||
peakd | 0 | 558,914,118,157 | 100% | ||
blue-witness | 0 | 810,264,305 | 100% | ||
walarhein | 0 | 2,263,089,850 | 54% | ||
cheatohead | 0 | 0 | 100% | ||
robertsv | 0 | 1,138,285,520 | 100% | ||
vexxuel | 0 | 0 | 100% | ||
vermamanish | 0 | 0 | 100% | ||
timhorton | 0 | 502,281,954 | 100% |
I rEALLy want a dogecoin BTC eth tip bot and @discordtip COULD add Hive posts, it DOES have hive in discord, but imagine COMMENT bot that could TIP u, posts and comments, and it SHOWS ON THE POST HOW MUCH u have MADE in TIPS which formatted can just be like a special consensus memo... we all pick a special memo format for sending BTCP to someone on hive-engine and we can chill
author | ackza |
---|---|
permlink | q8nodg |
category | hive-139531 |
json_metadata | {"users":["discordtip"],"app":"hiveblog/0.1"} |
created | 2020-04-12 03:29:39 |
last_update | 2020-04-12 03:29:39 |
depth | 1 |
children | 0 |
last_payout | 2020-04-19 03:29:39 |
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 | 380 |
author_reputation | 287,600,155,981,972 |
root_title | "Details about the setup of my public node" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,806,691 |
net_rshares | 0 |
Hey @pharesim, thank you for setting up a node for HIVE. I do have a few questions on the hardware side though. 1 - Why did you go with RAID0 when you have NVMe? It shouldn't really give *groundbreaking* boost to the RW. 2 - Why 3 different servers/nodes rather than going with just one big server/node?
author | deathwing |
---|---|
permlink | re-pharesim-q8lb2a |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.03.14"} |
created | 2020-04-10 20:47:00 |
last_update | 2020-04-10 20:47:00 |
depth | 1 |
children | 2 |
last_payout | 2020-04-17 20:47:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.012 HBD |
curator_payout_value | 0.012 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 305 |
author_reputation | 269,077,595,754,009 |
root_title | "Details about the setup of my public node" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,790,917 |
net_rshares | 126,989,683,636 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ackza | 0 | 126,989,683,636 | 100% |
1) For storage space ;) 2) How you set that up in detail really depends on what you want. Postgres and rocksdb are heavy on disk i/o, the accounthistory node will soon use the disk for swapping. Other setups work too, in fact this guide by @privex with a completely different one was one of my resources for setting it up: https://hackmd.io/@KoCktFVzTnePd9BdXfC7og/HJxKBAhyv8
author | pharesim |
---|---|
permlink | re-deathwing-q8lble |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.03.14"} |
created | 2020-04-10 20:58:30 |
last_update | 2020-04-10 20:58:30 |
depth | 2 |
children | 1 |
last_payout | 2020-04-17 20:58:30 |
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 | 375 |
author_reputation | 239,352,620,843,716 |
root_title | "Details about the setup of my public node" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,791,060 |
net_rshares | 0 |
I love hearing about old school steemians now on hive! so refreshing! I remember pharesim from steeminvite which was just a great time during steem's glory days. we can recapture them again with enough youtube videos @jerrybanfield style focused on hive and bee memes! WOOO I read that SO fast! I resteemed and voted because I saw PHARESIM! Anything PHARESIM posst I will Support Blindly untill someone stops me! WOOOOOo I love having a vague idea of whose valuable based on a superficial view of a blockchain reddit a few years ago WOOOOO Im so EXCITED for the good old days!!! 
author | ackza |
---|---|
permlink | q8nod0 |
category | hive-139531 |
json_metadata | {"image":["https://images.hive.blog/DQmPfY5LzqEhJkgGejLhFHB3JWwonjGnGpW1hhiDPA1DYQA/HiveFrogPharsim1.png"],"app":"hiveblog/0.1","users":["jerrybanfield"]} |
created | 2020-04-12 03:29:24 |
last_update | 2020-04-12 03:34:06 |
depth | 3 |
children | 0 |
last_payout | 2020-04-19 03: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 | 703 |
author_reputation | 287,600,155,981,972 |
root_title | "Details about the setup of my public node" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,806,690 |
net_rshares | 5,333,957,791 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
anli | 0 | 5,333,957,791 | 100% |
Great effort. Thanks for documenting your process. Minor addendum: STEEMD_URL syntax has changed, is now: ``` export STEEMD_URL='{"default": "http://api.example.com:8091"}'
author | donchate |
---|---|
permlink | re-pharesim-q9rogy |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.04.5"} |
created | 2020-05-03 17:55:57 |
last_update | 2020-05-03 17:55:57 |
depth | 1 |
children | 1 |
last_payout | 2020-05-10 17:55:57 |
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 | 173 |
author_reputation | 956,784,034,700 |
root_title | "Details about the setup of my public node" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,164,043 |
net_rshares | 0 |
Thanks for the notice, updated
author | pharesim |
---|---|
permlink | re-donchate-q9t84o |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.04.5"} |
created | 2020-05-04 13:58:03 |
last_update | 2020-05-04 13:58:03 |
depth | 2 |
children | 0 |
last_payout | 2020-05-11 13:58:03 |
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 | 30 |
author_reputation | 239,352,620,843,716 |
root_title | "Details about the setup of my public node" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,181,097 |
net_rshares | 0 |
Downvote solely for disagreement on rewards, not because I dislike your post. I actually really appreciate that you are running a full node, and that you are documenting how you did it etc., I just don't believe that any Hive post in the current reward "environment" deserves >80$ Payout.
author | flugschwein |
---|---|
permlink | re-pharesim-q8oyp9 |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.03.14"} |
created | 2020-04-12 20:10:24 |
last_update | 2020-04-12 20:10:24 |
depth | 1 |
children | 0 |
last_payout | 2020-04-19 20:10: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 | 288 |
author_reputation | 11,950,112,708,339 |
root_title | "Details about the setup of my public node" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,816,011 |
net_rshares | 0 |
I'm leaving this comment as a bookmark for myself. God bless all the nerds that are running API NODES!!! The amount of RAM that it requires is astronomical. For me, the only difficult part is acquiring the hardware+bandwith, setting it up is the easy part ...
author | fulltimegeek |
---|---|
permlink | re-pharesim-q8ot43 |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.03.14"} |
created | 2020-04-12 18:09:42 |
last_update | 2020-04-12 18:09:42 |
depth | 1 |
children | 0 |
last_payout | 2020-04-19 18:09:42 |
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 | 261 |
author_reputation | 82,542,358,852,913 |
root_title | "Details about the setup of my public node" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,814,584 |
net_rshares | 0 |
Again, thanks for your service on all this!
author | hivedelegation |
---|---|
permlink | re-pharesim-q8ngag |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.03.14"} |
created | 2020-04-12 00:35:09 |
last_update | 2020-04-12 00:35:09 |
depth | 1 |
children | 0 |
last_payout | 2020-04-19 00:35:09 |
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 | 43 |
author_reputation | 22,685,284,005 |
root_title | "Details about the setup of my public node" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,805,456 |
net_rshares | 0 |
Thank you for all your efforts 😌 All the things you're doing for HIVE are sincerely appreciated by the community members.
author | idiosyncratic1 | ||||||
---|---|---|---|---|---|---|---|
permlink | re-pharesim-2020411t14525438z | ||||||
category | hive-139531 | ||||||
json_metadata | {"tags":["hive","witness","tutorial","rpc","howto"],"app":"esteem/2.2.5-surfer","format":"markdown+html","community":"esteem.app"} | ||||||
created | 2020-04-10 22:45:27 | ||||||
last_update | 2020-04-10 22:45:27 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2020-04-17 22:45:27 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.011 HBD | ||||||
curator_payout_value | 0.012 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 121 | ||||||
author_reputation | 497,306,620,132,905 | ||||||
root_title | "Details about the setup of my public node" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 96,791,942 | ||||||
net_rshares | 124,450,960,606 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ackza | 0 | 124,450,960,606 | 100% |
author | pharesim |
---|---|
permlink | re-pharesim-q8mipl |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.03.14"} |
created | 2020-04-11 12:29:48 |
last_update | 2020-04-11 12:29:48 |
depth | 1 |
children | 5 |
last_payout | 2020-04-18 12:29:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.012 HBD |
curator_payout_value | 0.012 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 44 |
author_reputation | 239,352,620,843,716 |
root_title | "Details about the setup of my public node" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,798,206 |
net_rshares | 127,188,579,999 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ackza | 0 | 121,961,976,716 | 100% | ||
anli | 0 | 5,226,603,283 | 100% |
condenser_api.get_account_history needs a higher timeout in jussi, added 20s
author | pharesim |
---|---|
permlink | re-pharesim-q8miqn |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.03.14"} |
created | 2020-04-11 12:30:27 |
last_update | 2020-04-11 12:30:27 |
depth | 2 |
children | 0 |
last_payout | 2020-04-18 12:30:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.011 HBD |
curator_payout_value | 0.011 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 76 |
author_reputation | 239,352,620,843,716 |
root_title | "Details about the setup of my public node" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,798,214 |
net_rshares | 119,524,843,146 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ackza | 0 | 119,524,843,146 | 100% |
- added get_reblogged_by to jussi, is served by hivemind - second nginx config file on _hivemind_ (api+hivemind) - completed setup of hivemind - updated stats
author | pharesim |
---|---|
permlink | re-pharesim-q8s0i7 |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.03.14"} |
created | 2020-04-14 11:42:12 |
last_update | 2020-04-14 11:53:09 |
depth | 2 |
children | 0 |
last_payout | 2020-04-21 11:42:12 |
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 | 158 |
author_reputation | 239,352,620,843,716 |
root_title | "Details about the setup of my public node" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,836,014 |
net_rshares | 0 |
- condenser_api.get_transaction routed to acchist - raised timeout for account_history_api.get_account_history
author | pharesim |
---|---|
permlink | re-pharesim-q9luoq |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.04.5"} |
created | 2020-04-30 14:24:27 |
last_update | 2020-04-30 14:28:51 |
depth | 2 |
children | 0 |
last_payout | 2020-05-07 14:24:27 |
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 | 111 |
author_reputation | 239,352,620,843,716 |
root_title | "Details about the setup of my public node" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,097,250 |
net_rshares | 0 |
Updated STEEMD_URL to new syntax
author | pharesim |
---|---|
permlink | re-pharesim-q9t84a |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.04.5"} |
created | 2020-05-04 13:57:51 |
last_update | 2020-05-04 13:57:51 |
depth | 2 |
children | 0 |
last_payout | 2020-05-11 13:57: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 | 32 |
author_reputation | 239,352,620,843,716 |
root_title | "Details about the setup of my public node" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 97,181,093 |
net_rshares | 0 |
Added max log size to jussi's docker run command to stop the disk from filling up
author | pharesim |
---|---|
permlink | re-pharesim-qgfxtp |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.09.1"} |
created | 2020-09-10 11:41:51 |
last_update | 2020-09-10 11:41:51 |
depth | 2 |
children | 0 |
last_payout | 2020-09-17 11:41: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 | 81 |
author_reputation | 239,352,620,843,716 |
root_title | "Details about the setup of my public node" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 99,552,135 |
net_rshares | 0 |
I probably cannot adequately express my appreciation for folks undertaking to improve the decentralization of Hive, as you are. I am not a dev, but have some questions regarding how your build affects censorship and resistance to it on Hive. >"bloom_filter_policy" Is this a reference to @bloom? I note you are incorporating @themarkymark's blacklist. Does this include #irredeemables github list? I did not see a specific reference to that list, so inquire. I have strongly advocated for far greater public awareness and involvement in that absolute censorship of affected accounts, and it is my hope that full nodes that do not simply mirror that API censorship mechanism arise. I would appreciate any comment you might feel appropriate regarding that apparently covertly exercised censorship mechanism, and specifically regarding it's present application to @joe.public, who seems to have been placed on that list and completely censored on all front ends on Hive using extant full nodes, for no other reason than annoying Bernie and Marty. I do not advocate being a troll. However, I am confident that the definition of a troll is highly subjective, and allowing such total censorship to be applied based on personal opinion is a grave threat to Hive's ability to secure free speech. I would rather deal with trolls and flags than potential censorship because powerful accounts don't like them, or maybe any of us. Trolls are annoying. Censorship is existential. Steem today reveals what that slippery slope ensures Hive will become if public information and involvement in API mediated censorship is not established presently. Thanks very much!
author | valued-customer |
---|---|
permlink | re-pharesim-q8lfu5 |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.03.14"} |
created | 2020-04-10 22:30:12 |
last_update | 2020-04-10 22:30:12 |
depth | 1 |
children | 11 |
last_payout | 2020-04-17 22:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.012 HBD |
curator_payout_value | 0.012 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,664 |
author_reputation | 353,226,184,141,697 |
root_title | "Details about the setup of my public node" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,791,828 |
net_rshares | 132,222,562,629 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ackza | 0 | 132,222,562,629 | 100% |
> I would appreciate any comment you might feel appropriate regarding that apparently covertly exercised censorship mechanism, and specifically regarding it's present application to @joe.public, who seems to have been placed on that list and completely censored on all front ends on Hive using extant full nodes Not true. You must be mixing Hive's blacklists and Steemit's censorship. To see the difference, just compare: https://hive.blog/@joe.public https://steemit.com/@gtg
author | gtg |
---|---|
permlink | q8lhb2 |
category | hive-139531 |
json_metadata | {"users":["joe.public"],"links":["https://hive.blog/@joe.public","https://steemit.com/@gtg"],"app":"hiveblog/0.1"} |
created | 2020-04-10 23:01:51 |
last_update | 2020-04-10 23:01:51 |
depth | 2 |
children | 7 |
last_payout | 2020-04-17 23:01:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.012 HBD |
curator_payout_value | 0.012 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 477 |
author_reputation | 461,775,164,998,463 |
root_title | "Details about the setup of my public node" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,792,073 |
net_rshares | 129,580,217,340 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ackza | 0 | 129,580,217,340 | 100% |
You seem to be completely missing the point he is making. No surprises there I guess
author | joe.public |
---|---|
permlink | q8lvms |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2020-04-11 04:11:18 |
last_update | 2020-04-11 04:11:18 |
depth | 3 |
children | 0 |
last_payout | 2020-04-18 04:11:18 |
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 | 85 |
author_reputation | -6,029,891,516,751 |
root_title | "Details about the setup of my public node" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,794,378 |
net_rshares | 0 |
While Stinc under Yuchen seems to have gone after back catalogs, I received a comment from @joe.public today, which is now invisible, and my reply is also invisible. This is censorship at the API level, exactly as it is being undertaken by Stinc and the CCP on Steem, just on Hive it is only applied to active communications, and not catalogs. >"The users in the irredeemables list will have their comments and posts filtered out and their flags will not be considered in the logic that determines if comments or posts are hidden in most front end applications including Condenser (the software that powers steemit.com)." The latest update to the #irredeemables list was <a href="https://github.com/steemit/irredeemables">last month</a>, just before Hive forked off Steem. I have received no indication Hive treated this list any differently than Steem did, and absent intentional changes to how Hive works, this exact list should have the exact same affect on Hive it does on Steem. <a href="https://github.com/steemit/irredeemables/blob/master/full.txt">here</a> you can see the full list as of that time, administered by @themarkymark and friends, and @joe.public is listed as #622. No reason given for his being on that list is compelling enough to mandate his total censorship on Hive. He annoyed @themarkymark and Bernie. That's all it takes to generate a complete censorship of Hive users. That's damn little difference from what Sun Yuchen is doing to Steem. Hive needs censorship resistance, not a band of merry censors keeping the narrative safe for consensus witnesses and ninjamine whales. I do appreciate your comment. I am aware of the feathers I have ruffled, and expect your adamance regarding independent thought is particularly revealed by your comment here. I note you're an expert coder, and that nothing I have said in this comment is new information to you. So, why do you note the minor difference in target of the same exact mechanism that is actively censoring folks on both Steem, wielded by Sun Yuchen today, and @themarkymark and his band of merry silencers of dissent on Hive today? Seems a bit misleading. Edit: I should say 'the exact same method' rather than 'mechanism, as you are not on the #irredeemables list, which shows that Yuchen is using a different list via the API method to censor folks.
author | valued-customer |
---|---|
permlink | re-gtg-q8lr8o |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.03.14"} |
created | 2020-04-11 02:36:30 |
last_update | 2020-04-11 02:54:03 |
depth | 3 |
children | 5 |
last_payout | 2020-04-18 02:36:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.012 HBD |
curator_payout_value | 0.011 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 2,351 |
author_reputation | 353,226,184,141,697 |
root_title | "Details about the setup of my public node" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,793,673 |
net_rshares | 122,912,228,007 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ackza | 0 | 117,136,452,247 | 100% | ||
anli | 0 | 5,775,775,760 | 100% |
> Is this a reference to @bloom? No > I note you are incorporating @themarkymark's blacklist The irredeemables were taken from steemit without changes for now. As it was managed by them (with the help of marky), that wasn't something I could influence so I never really cared. I do now! This list definitely has to be discussed and a process established to not let a single person just add someone who annoys them. Thanks for pointing it out, I will check more opinions.
author | pharesim |
---|---|
permlink | re-valued-customer-q8m9nf |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.03.14"} |
created | 2020-04-11 09:14:15 |
last_update | 2020-04-11 09:14:15 |
depth | 2 |
children | 2 |
last_payout | 2020-04-18 09:14:15 |
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 | 473 |
author_reputation | 239,352,620,843,716 |
root_title | "Details about the setup of my public node" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,796,604 |
net_rshares | 38,353,367,315 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
valued-customer | 0 | 32,913,706,885 | 50% | ||
anli | 0 | 5,439,660,430 | 100% |
Please keep me in the loop as you manage the censorship issue. I have advocated for requiring a vote on HPS proposals to include an account on #irredeemables, due to it's severe and total censorship of affected accounts. I feel strongly that the same mechanism considered sufficient to elect witnesses should be the mechanism to essentially forever silence people. Advocates of censoring the account can present evidence in support of the inclusion, the accused can present their own, and voters decide. I also recommend periodic appeals be allowed of the censored account via the same HPS method. If they receive enough votes, they should be allowed to get off the list. We need a robust mechanism to undertake such a terminal threat to users of Hive as API total and complete censorship of all ability to communicate with other folks here, and I can't think of one better atm. Thanks!
author | valued-customer |
---|---|
permlink | re-pharesim-q8mcun |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.03.14"} |
created | 2020-04-11 10:23:18 |
last_update | 2020-04-11 10:48:27 |
depth | 3 |
children | 1 |
last_payout | 2020-04-18 10:23:18 |
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 | 893 |
author_reputation | 353,226,184,141,697 |
root_title | "Details about the setup of my public node" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 96,797,144 |
net_rshares | 0 |