create account

A preview of Hivemind Improvements by blocktrades

View this thread on: hive.blogpeakd.comecency.com
· @blocktrades · (edited)
$96.58
A preview of Hivemind Improvements
One area of Hive code where BlockTrades has spent a lot of time recently is optimization of hivemind. Hivemind servers supply most of the data used by web sites such as hive.blog and peakd.com. So optimizing the performance of Hivemind helps speed up almost all frontends for Hive, and also allows the network to operate reliably as we get more users.

# Data flow in the Hive network

![Hive construct.png](https://images.hive.blog/DQmSnJyiUhVw6vf927ngeeHKXY6jSpWMuWUUwZthhwjCrMg/Hive%20construct.png)

In the diagram above, hived creates the Hive blockchain from user transaction data, and it does directly serve up some data, but the majority of data it produces is sent to a hivemind server. 


# Why was Hivemind created?

User interfaces (e.g. websites and wallets) get most of their data from hivemind instead of hived. Hivemind is designed to make it easy to access blockchain data in many different ways. 

Originally, user interfaces got all their blockchain data directly from hived nodes. But this caused several problems: 1) many programmers were not skilled in the software language (C++) that hived is written in, making it more difficult to add new features to the Hive network,  2) changes to that code could result in bugs that broke the blockchain servers themselves, and 3) having the hive network nodes serve up this data directly to many users put unnecessary loading on the most critical software component in the network.

Hivemind was created to solve the aforementioned problems. Hivemind is written using technologies that are familiar to many programmers (Python and SQL). If a hivemind server fails due to a bug (this has happened three times already in the past few months), the blockchain continues to run smoothly. And finally, Hivemind servers run in a separate process (and sometimes completely separate servers) from hived, tremendously reducing the data access load on hived.

# Making Hivemind better

Below is a short summary of the work we’ve been doing to improve Hivemind in the past couple of months:

## Making Hivemind faster

Hive-based web sites make calls to Hivemind to get lists of posts, lists of voters, etc. If one of these calls takes several seconds to complete, the user will have to sit there waiting for the data to be delivered to them. On hive.blog, for example, this delay manifests as as a “spinning wheel” to let the user know that the data is coming, but hasn’t arrived yet. 

Every web user is familiar with delays of this type, but they really make web sites less fun to use, and if the delays get too long, users will get frustrated and leave a site.

To reduce these annoying slowdowns, one of the main things we did in this round of hivemind improvements was make hivemind much faster. For example, during benchmark measurements of production installations of hivemind at api.hive.blog, some API calls could take as long as 6-30 seconds to complete (that wheel could spin for a long time occasionally). At this point, with our new optimizations running on that same server, the slowest hivemind call in our benchmark measurements completes within less than 0.1 seconds on average. We optimized the overall average API call execution time by a factor of 10 or more. For some of the most time consuming calls that we spent extra time optimizing, we increased the speed by a factor of 20 or more. 

We’ll be publishing the full benchmarks in a separate post as they may be useful to frontends developers interested in details on the updated performance of individual API calls.

## Improvements to Hivemind API

We’ve modified Hivemind API call functionality to allow the creation of [decentralized blacklists](https://hive.blog/hive-102930/@blocktrades/hive-improvement-proposal-decentralize-blacklists-on-hive ). I’ll be posting technical changes associated with the new API call in the next few days to allow existing web sites to take advantage of this new feature.

## Migrated more functionality from Hived to Hivemind

We were able to move a lot of the comment data that was previously stored as state information (stored in memory) from hived to hivemind. This dramatically reduced the RAM memory requirements needed to operate a full Hive API node and it also speeded up the response time of API calls for this data.

Most recently, we made a similar change to move inactive voting data from hived to hivemind, once again dramatically reducing RAM requirements for hived. 

Note that in both of the above cases, there was no corresponding increase in RAM used by hivemind from this re-partitioning of functionality, because hivemind stores its information on disk in a database.

As a result of the reduced memory requirements, an entire high-performance full API node can now be run on a single 64GB server, cutting costs by 50% or more (cloud service providers charge a significant premium for servers with large memory requirements, and while it was possible to split a full API node across two servers with less memory, this increased server maintenance costs). 

Also, because of the speedups in hivemind’s API performance, that same lower cost server can now serve over 10 times the traffic that a single hivemind could previously be support. So in practice, between the reduced memory requirement and increased ability to serve API traffic, the overall cost of running Hive servers has been reduced by a factor of 20 or more. 

To highlight the importance of this change, my recollection is that Steemit Inc was at one point spending over $90K per month to pay for leased servers on AWS (Amazon’s cloud platform).

## Faster hivemind sync times
When someones wants to setup a new hivemind API node, they have to first fill it with data from the blockchain. This process is known as syncing, because you are synchronizing the data in the hivemind database to match that of historical data already stored in the blockchain blocks. 

Previously, syncing a hivemind database was a multi-day process and this time only increased when we migrated more data from hived to hivemind, so we've also been working on increasing the speed at which hivemind syncs. We don't have final numbers yet, but we've already speeded up syncing by at least a factor of 3 (despite the increased amount of data being synced).

## Making Hivemind easier to improve

### Added database migration software

Hivemind stores its data in a SQL database. As we improve hivemind, it’s often necessary to change the way data is organized into tables in its database (the database “schema”). By tracking changes in the way this data is stored, we can sometimes upgrade existing installations of hivemind without requiring the database tables to be reorganized and refilled with data from scratch. 

We added support for [Alembic](https://www.pythoncentral.io/migrate-sqlalchemy-databases-alembic/) as a means of tracking and automatically making changes to a hivemind installation’s database when hivemind is upgraded. Alembic also supports rollbacks, allowing a database to be downgraded to a previous version, if a new version of Hivemind has problems that require reverting to a previous version of the Hivemind software.

### Refactored Hivemind code base

A lot of source code in Hivemind was repeated in several places, with only small changes in each place, so we spent some time doing code refactoring. Code refactoring is the process of identifying common repeated blocks of code and consolidating that code to a single place. Code refactoring makes it easier to make future improvements to the code, because when code is repeated in many places, it’s easy to forget to make a change in each place (which results in software bugs).

# Looking ahead

Now that we’ve moved more data over to hivemind, it becomes easier to add new API methods to look at that data in different ways. And since those API methods are written using Python and SQL, and the changes are isolated from the core blockchain code and can't impact the financial security of the network, it really expands the pool of available developers who can safely create custom API methods for Hive.

This ease of creation for new API methods, combined with the ability to create “custom_json” transactions, creates a  world of possibilities for Hive-based applications (as an example, the splinterlands game play is implemented using custom_json transactions).  And the increased performance of hivemind means it will be easier than ever to create apps that scale to large numbers of users. I plan to write a followup post soon that explores some of these possibilities more in depth, as I think this capability will play a central role in the future of Hive.
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 777 others
👎  , ,
properties (23)
authorblocktrades
permlinka-preview-of-hivemind-improvements
categoryhive-139531
json_metadata{"app":"hiveblog/0.1","format":"markdown","image":["https://images.hive.blog/DQmSnJyiUhVw6vf927ngeeHKXY6jSpWMuWUUwZthhwjCrMg/Hive%20construct.png"],"links":["https://hive.blog/hive-102930/@blocktrades/hive-improvement-proposal-decentralize-blacklists-on-hive","https://www.pythoncentral.io/migrate-sqlalchemy-databases-alembic/"],"tags":["hive","blocktrades","hivemind","development"]}
created2020-06-30 23:22:00
last_update2020-06-30 23:46:24
depth0
children45
last_payout2020-07-07 23:22:00
cashout_time1969-12-31 23:59:59
total_payout_value60.986 HBD
curator_payout_value35.591 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length8,673
author_reputation1,294,216,366,091,739
root_title"A preview of Hivemind Improvements"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,269,301
net_rshares295,030,357,678,908
author_curate_reward""
vote details (844)
@amico ·
A huge hug  🤗 and a little bit of !BEER 🍻 from @amico! 
___
Un caro abbraccio 🤗 e un po' di BEER 🍻 da @amico!
properties (22)
authoramico
permlinkre-a-preview-of-hivemind-improvements-20200630t232415z
categoryhive-139531
json_metadata"{"app": "rewarding/0.1.0"}"
created2020-06-30 23:24:18
last_update2020-06-30 23:24:18
depth1
children0
last_payout2020-07-07 23:24:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length111
author_reputation51,076,240,298,517
root_title"A preview of Hivemind Improvements"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,269,324
net_rshares0
@arynews199 ·
Thats great
👍  
👎  
properties (23)
authorarynews199
permlinkre-blocktrades-202072t202230187z
categoryhive-139531
json_metadata{"tags":["hive","blocktrades","hivemind","development"],"app":"esteem/2.2.5-mobile","format":"markdown+html","community":"hive-125125"}
created2020-07-02 15:22:33
last_update2020-07-02 15:22:33
depth1
children0
last_payout2020-07-09 15:22:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11
author_reputation-5,273,574,806
root_title"A preview of Hivemind Improvements"
beneficiaries
0.
accountesteemapp
weight300
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,301,653
net_rshares-12,382,828,058
author_curate_reward""
vote details (2)
@beerlover ·
<div class='pull-right'>https://files.peakd.com/file/peakd-hive/beerlover/yiuU6bdf-beerlover20gives20BEER.gif<p><sup><a href='https://hive-engine.com/?p=market&t=BEER'>View or trade </a> <code>BEER</code>.</sup></p></div><center><br> <p> Hey @blocktrades, here is a little bit of <code>BEER</code> from @amico for you. Enjoy it!</p> <p>Learn how to <a href='https://peakd.com/beer/@beerlover/what-is-proof-of-stake-with-beer'>earn <b>FREE BEER</b> each day </a> by staking your <code>BEER</code>.</p> </center><div></div>
properties (22)
authorbeerlover
permlinkre-a-preview-of-hivemind-improvements-20200630t232428z
categoryhive-139531
json_metadata"{"app": "beem/0.23.11"}"
created2020-06-30 23:24:30
last_update2020-06-30 23:24:30
depth1
children0
last_payout2020-07-07 23:24:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length521
author_reputation25,832,126,258,714
root_title"A preview of Hivemind Improvements"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,269,329
net_rshares0
@bhoa ·
this is nice... a lot of complex things on this pot but I still need to read it because i need to be aware of changes on the hive network. the optimization sounds nive already. i must say you guys are doing a great job in improving this platform. Is there anything that can be done to help newbies navigate the site easily or faster. something like a tutorial as soon as you enter the websites as a newbie. I have been on boarding new users and this has been a major complain  for them
properties (22)
authorbhoa
permlinkqcvc7r
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2020-07-03 01:02:18
last_update2020-07-03 01:02:18
depth1
children0
last_payout2020-07-10 01:02:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length485
author_reputation60,701,104,434,307
root_title"A preview of Hivemind Improvements"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,309,116
net_rshares0
@cloris ·
Hi @blocktrades, it's nice to know that Hive is growing in capable and efficient hands.

Hola @blocktrades, es agradable saber que Hive está creciendo en manos capaces y eficientes.
properties (22)
authorcloris
permlinkqcsy9y
categoryhive-139531
json_metadata{"users":["blocktrades"],"app":"hiveblog/0.1"}
created2020-07-01 17:21:21
last_update2020-07-01 17:21:21
depth1
children0
last_payout2020-07-08 17:21:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length181
author_reputation2,039,725,080,527
root_title"A preview of Hivemind Improvements"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,284,171
net_rshares0
@cmplxty ·
$1.81
A lot to unpack with this update but some fantastic stuff in it, thanks for sharing! 

Regarding your section about moving comments from hived to hive mind, does that theoretically mean someone could make an easier process to find comments? I’ve been trying to figure out how to get my really old comments in an easy way. Presently I have to go to a site like PeakD and go to my comments and just scroll endlessly. My browser ends up crashing and I didn’t find what I needed. It would seem that with it now being in Python instead of C++ programmers could find out a way to put them in pages kind of like emails that are 50 per page. Having 50 pages to look through is easier than trying to endlessly scroll, especially the more people like me comment every day. 

Might be a tangent here but that’s a personal interest of mine, some people got me into some awesome stuff early on in my hive/Steem journey and I haven’t the slightest clue who they are. Finding them via my comments made years ago has been something I’ve been trying to do but am not having good success lol

Anyways, thanks again for the update and continued work! Appreciate it!
👍  , , , , ,
properties (23)
authorcmplxty
permlinkre-blocktrades-2020630t19503880z
categoryhive-139531
json_metadata{"tags":["hive","blocktrades","hivemind","development"],"app":"esteem/2.2.5-mobile","format":"markdown+html","community":"hive-125125"}
created2020-06-30 23:50:03
last_update2020-06-30 23:50:03
depth1
children3
last_payout2020-07-07 23:50:03
cashout_time1969-12-31 23:59:59
total_payout_value0.890 HBD
curator_payout_value0.918 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,146
author_reputation787,402,785,957,085
root_title"A preview of Hivemind Improvements"
beneficiaries
0.
accountesteemapp
weight300
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,269,714
net_rshares6,122,035,417,423
author_curate_reward""
vote details (6)
@blocktrades ·
$0.02
That's not at all a tangent, that's exactly the kind of thing that you could easily do with a custom Hivemind API call!
👍  
properties (23)
authorblocktrades
permlinkqcrlq1
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2020-07-01 00:37:15
last_update2020-07-01 00:37:15
depth2
children0
last_payout2020-07-08 00:37:15
cashout_time1969-12-31 23:59:59
total_payout_value0.010 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length119
author_reputation1,294,216,366,091,739
root_title"A preview of Hivemind Improvements"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,270,329
net_rshares108,834,363,073
author_curate_reward""
vote details (1)
@good-karma ·
$0.04
[Search engine](/hive/@good-karma/open-search-engine-development-and-maintenance) also works for this purpose, we just need to improve search page in hive.blog that gives some tips on how to use search or improve usability. For example, try changing `*` into any word you want and you will get all your relevant comments
`https://hive.blog/search?q=*%20author:cmplxty%20type:comment`
👍  
👎  
properties (23)
authorgood-karma
permlinkre-cmplxty-202071t101832630z
categoryhive-139531
json_metadata{"tags":["hive","blocktrades","hivemind","development"],"app":"esteem/2.2.7-surfer","format":"markdown+html","community":"esteem.app"}
created2020-07-01 07:18:33
last_update2020-07-01 07:18:33
depth2
children1
last_payout2020-07-08 07:18:33
cashout_time1969-12-31 23:59:59
total_payout_value0.020 HBD
curator_payout_value0.020 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length383
author_reputation656,223,454,697,932
root_title"A preview of Hivemind Improvements"
beneficiaries
0.
accountesteemapp
weight300
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,275,883
net_rshares194,951,097,808
author_curate_reward""
vote details (2)
@cmplxty ·
$0.02
Thanks for this tip! I will definitely give it a try. I’ve got one thing I think will help with that, that I’ve been looking for so that may very well work in that scenario!
👍  
properties (23)
authorcmplxty
permlinkre-good-karma-202071t53457710z
categoryhive-139531
json_metadata{"tags":["esteem"],"app":"esteem/2.2.5-mobile","format":"markdown+html","community":"hive-125125"}
created2020-07-01 09:34:57
last_update2020-07-01 09:34:57
depth3
children0
last_payout2020-07-08 09:34:57
cashout_time1969-12-31 23:59:59
total_payout_value0.010 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length173
author_reputation787,402,785,957,085
root_title"A preview of Hivemind Improvements"
beneficiaries
0.
accountesteemapp
weight300
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,277,755
net_rshares111,054,131,024
author_curate_reward""
vote details (1)
@daysiselena ·
Good work, continue to progress this community. My regards
properties (22)
authordaysiselena
permlinkqcu7bf
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2020-07-02 10:18:54
last_update2020-07-02 10:18:54
depth1
children0
last_payout2020-07-09 10:18:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length58
author_reputation694,714,463,626,450
root_title"A preview of Hivemind Improvements"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,297,201
net_rshares0
@deep0773 ·
Is this new structure???
properties (22)
authordeep0773
permlinkqcucax
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2020-07-02 12:06:39
last_update2020-07-02 12:06:39
depth1
children0
last_payout2020-07-09 12:06:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length24
author_reputation13,008,956,356
root_title"A preview of Hivemind Improvements"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,298,657
net_rshares0
@eliasseth ·
Una super información que hay que resaltar. En cosntante contacto con este tipo de info en pro de ir aprendiendo más y más sobre esta blockchain.
properties (22)
authoreliasseth
permlinkqcsw0y
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2020-07-01 16:49:12
last_update2020-07-01 16:49:12
depth1
children0
last_payout2020-07-08 16:49:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length145
author_reputation15,224,879,978,463
root_title"A preview of Hivemind Improvements"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,283,708
net_rshares0
@elmundodexao ·
<center><sup><h2>Hola @blocktrades… He elegido tu post para mi iniciativa diaria de reblogear. Este es mi aporte para Hive…
Sigamos trabajando y aportando ideas para crecer en Hive!...
![alegria.jpg](https://images.hive.blog/DQmTpiD9JGb5W2gbBmxeCo1hy4tHcGASgo64MW1NZyV1Wxj/alegria.jpg)
Hello @blocktrades... I have chosen your post for my daily reblogging initiative. This is my contribution to Hive...
Let's keep working and giving ideas to grow in Hive!</h2></sup></center>
properties (22)
authorelmundodexao
permlinkqcrnzc
categoryhive-139531
json_metadata{"users":["blocktrades"],"image":["https://images.hive.blog/DQmTpiD9JGb5W2gbBmxeCo1hy4tHcGASgo64MW1NZyV1Wxj/alegria.jpg"],"app":"hiveblog/0.1"}
created2020-07-01 00:41:24
last_update2020-07-01 00:41:24
depth1
children0
last_payout2020-07-08 00:41:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length475
author_reputation52,508,564,661,796
root_title"A preview of Hivemind Improvements"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,270,374
net_rshares0
@fahad3728 ·
Informative
properties (22)
authorfahad3728
permlinkre-blocktrades-202079t224433328z
categoryhive-139531
json_metadata{"tags":["hive","blocktrades","hivemind","development"],"app":"esteem/2.2.5-mobile","format":"markdown+html","community":"hive-125125"}
created2020-07-09 17:44:36
last_update2020-07-09 17:44:36
depth1
children0
last_payout2020-07-16 17:44:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11
author_reputation3,670,951,603,473
root_title"A preview of Hivemind Improvements"
beneficiaries
0.
accountesteemapp
weight300
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,428,916
net_rshares0
@firepower ·
This is really cool! Thank you for this update and all the hard work put into HIVE from you and your team.
👍  
properties (23)
authorfirepower
permlinkqcvfom
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2020-07-03 02:17:12
last_update2020-07-03 02:17:12
depth1
children0
last_payout2020-07-10 02:17:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length106
author_reputation1,145,868,474,852,473
root_title"A preview of Hivemind Improvements"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,310,011
net_rshares0
author_curate_reward""
vote details (1)
@fixie ·
Hello, I wanted to exchange some hives for another cryptocurrency and the failed transaction was made and it comes out in my wallet that I transferred to you. Could you help me? I did all the steps well I don't know why that happened when I did it well before
properties (22)
authorfixie
permlinkqcsonr
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2020-07-01 14:38:18
last_update2020-07-01 14:38:18
depth1
children0
last_payout2020-07-08 14:38:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length259
author_reputation528,694,943,747,863
root_title"A preview of Hivemind Improvements"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,281,442
net_rshares0
@geekgirl ·
Brilliant! Reminds me of how Apple operates with a lot of focus on speed and efficiency. Thank You!
👍  
properties (23)
authorgeekgirl
permlinkre-blocktrades-qcry48
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2020.06.2"}
created2020-07-01 05:04:57
last_update2020-07-01 05:04:57
depth1
children0
last_payout2020-07-08 05:04:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length99
author_reputation1,590,033,227,462,832
root_title"A preview of Hivemind Improvements"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,273,949
net_rshares2,103,264,404
author_curate_reward""
vote details (1)
@good-karma ·
$0.59
Great work! 
Question, syncing from scratch would still pull data from blockchain (hived) right?
Looking forward for more technical notes and source code changes...
👍  , ,
👎  
properties (23)
authorgood-karma
permlinkre-blocktrades-202071t102255861z
categoryhive-139531
json_metadata{"tags":["hive","blocktrades","hivemind","development"],"app":"esteem/2.2.7-surfer","format":"markdown+html","community":"esteem.app"}
created2020-07-01 07:22:57
last_update2020-07-01 07:22:57
depth1
children3
last_payout2020-07-08 07:22:57
cashout_time1969-12-31 23:59:59
total_payout_value0.290 HBD
curator_payout_value0.300 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length164
author_reputation656,223,454,697,932
root_title"A preview of Hivemind Improvements"
beneficiaries
0.
accountesteemapp
weight300
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,275,930
net_rshares2,319,670,685,692
author_curate_reward""
vote details (4)
@blocktrades · (edited)
$0.66
Yes, it still pulls data from hived, but it is able to pull the data much faster now, and the insert and updating of the database was also made much faster. A bunch of different techniques were used to achieve this speedup: we added an API function to hived that allows for getting a filtered set of virtual operations, we spawn multiple threads in hivemind to fetch the data, we temporarily drop some indexes and re-add them after sync is finished, etc.
👍  
👎  , ,
properties (23)
authorblocktrades
permlinkqcsspv
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2020-07-01 16:05:57
last_update2020-07-01 16:06:12
depth2
children0
last_payout2020-07-08 16:05:57
cashout_time1969-12-31 23:59:59
total_payout_value0.330 HBD
curator_payout_value0.331 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length454
author_reputation1,294,216,366,091,739
root_title"A preview of Hivemind Improvements"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,282,887
net_rshares2,489,898,794,320
author_curate_reward""
vote details (4)
@blocktrades ·
Most of the sync speedups were done in this branch of hivemind: https://gitlab.syncad.com/hive/hivemind/-/commits/dk-issue-3-concurrent-block-query
properties (22)
authorblocktrades
permlinkqcsssr
categoryhive-139531
json_metadata{"links":["https://gitlab.syncad.com/hive/hivemind/-/commits/dk-issue-3-concurrent-block-query"],"app":"hiveblog/0.1"}
created2020-07-01 16:07:39
last_update2020-07-01 16:07:39
depth2
children0
last_payout2020-07-08 16:07:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length147
author_reputation1,294,216,366,091,739
root_title"A preview of Hivemind Improvements"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,282,907
net_rshares0
@blocktrades ·
A lot of the API-related speedups were done in this branch of hivemind: https://gitlab.syncad.com/hive/hivemind/-/commits/query-speedup
properties (22)
authorblocktrades
permlinkqcssy8
categoryhive-139531
json_metadata{"links":["https://gitlab.syncad.com/hive/hivemind/-/commits/query-speedup"],"app":"hiveblog/0.1"}
created2020-07-01 16:11:00
last_update2020-07-01 16:11:00
depth2
children0
last_payout2020-07-08 16:11:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length135
author_reputation1,294,216,366,091,739
root_title"A preview of Hivemind Improvements"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,282,965
net_rshares0
@henry453 ·
[ STAY AT HOME & WORK AT HOME ] Start making money this time... Spend more time with your family&relative by doing jobs that only require for you to have a computer and an internet access and you can have that at your home. Start bringing up to $65oo to $7ooo a month. I've started this job and earn handsome income and now i am exchange it with you, so you can do it too. You can check it out here.................http://www.jobnews3.com
👎  , , , ,
properties (23)
authorhenry453
permlinkqcripc
categoryhive-139531
json_metadata{"links":["http://www.jobnews3.com"],"app":"hiveblog/0.1"}
created2020-06-30 23:30:45
last_update2020-06-30 23:30:45
depth1
children0
last_payout2020-07-07 23:30:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length438
author_reputation-576,078,321,574
root_title"A preview of Hivemind Improvements"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,269,398
net_rshares-17,844,530,817,488
author_curate_reward""
vote details (5)
@hivebuzz ·
Congratulations @blocktrades! You have completed the following achievement on the Hive blockchain and have been rewarded with new badge(s) :

<table><tr><td><img src="https://images.hive.blog/60x60/http://hivebuzz.me/badges/toppayoutday.png"></td><td>Your post got the highest payout of the day</td></tr>
</table>

<sub>_You can view [your badges on your board](https://hivebuzz.me/@blocktrades) And compare to others on the [Ranking](https://hivebuzz.me/ranking)_</sub>
<sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub>


To support your work, I also upvoted your post!


###### Support the HiveBuzz project. [Vote](https://hivesigner.com/sign/update_proposal_votes?proposal_ids=%5B%22109%22%5D&approve=true) for [our proposal](https://peakd.com/me/proposals/109)!
properties (22)
authorhivebuzz
permlinkhivebuzz-notify-blocktrades-20200630t234411000z
categoryhive-139531
json_metadata{"image":["http://hivebuzz.me/notify.t6.png"]}
created2020-06-30 23:44:09
last_update2020-06-30 23:44:09
depth1
children0
last_payout2020-07-07 23:44:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length819
author_reputation370,425,660,057,875
root_title"A preview of Hivemind Improvements"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,269,607
net_rshares0
@jenkinrocket ·
So is this blog the one we come to for updates or changes on Hive.blog and the blockchain? I'm still wondering with there is an analogue to @steemitblog and @steemitdev on the platform that I'm unaware of....
properties (22)
authorjenkinrocket
permlinkqct010
categoryhive-139531
json_metadata{"users":["steemitblog","steemitdev"],"app":"hiveblog/0.1"}
created2020-07-01 18:43:45
last_update2020-07-01 18:43:45
depth1
children2
last_payout2020-07-08 18:43:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length208
author_reputation26,749,165,203,694
root_title"A preview of Hivemind Improvements"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,285,229
net_rshares0
@blocktrades · (edited)
The official blog for the blockchain is @hiveio, but like many of the devs, I also occasionally make updates on the specific work that we (the blocktrades team) are doing.
👍  
properties (23)
authorblocktrades
permlinkqctdqi
categoryhive-139531
json_metadata{"users":["hiveio"],"app":"hiveblog/0.1"}
created2020-07-01 23:39:54
last_update2020-07-01 23:43:39
depth2
children1
last_payout2020-07-08 23:39:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length171
author_reputation1,294,216,366,091,739
root_title"A preview of Hivemind Improvements"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,289,348
net_rshares65,374,017,887
author_curate_reward""
vote details (1)
@jenkinrocket ·
Thanks for the quick response!
properties (22)
authorjenkinrocket
permlinkqcte5r
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2020-07-01 23:49:00
last_update2020-07-01 23:49:00
depth3
children0
last_payout2020-07-08 23:49:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length30
author_reputation26,749,165,203,694
root_title"A preview of Hivemind Improvements"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,289,460
net_rshares0
@lucianav ·
$0.06
Your publications on the new improvements throughout Hive have become my favorites to read!

You have done an incredible job programming all these new improvements. I found it very interesting to know that you are using Python and SQL on Hivemid, I will consider learning Python to keep myself updated and maybe drop some C.

Greetings! @blocktrades
👍  ,
properties (23)
authorlucianav
permlinkqcrvtj
categoryhive-139531
json_metadata{"users":["blocktrades"],"app":"hiveblog/0.1"}
created2020-07-01 04:15:24
last_update2020-07-01 04:15:24
depth1
children0
last_payout2020-07-08 04:15:24
cashout_time1969-12-31 23:59:59
total_payout_value0.030 HBD
curator_payout_value0.031 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length349
author_reputation1,264,069,395,597,868
root_title"A preview of Hivemind Improvements"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,273,369
net_rshares291,441,122,443
author_curate_reward""
vote details (2)
@marki99 ·
😃😃😃😃😃😃
properties (22)
authormarki99
permlinkre-blocktrades-qcsh1w
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2020.06.3"}
created2020-07-01 11:54:00
last_update2020-07-01 11:54:00
depth1
children0
last_payout2020-07-08 11:54:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6
author_reputation11,400,723,818,181
root_title"A preview of Hivemind Improvements"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,279,612
net_rshares0
@mouh24dz ·
God
properties (22)
authormouh24dz
permlinkre-blocktrades-202071t23248699z
categoryhive-139531
json_metadata{"tags":["hive","blocktrades","hivemind","development"],"app":"esteem/2.2.5-mobile","format":"markdown+html","community":"hive-125125"}
created2020-07-01 01:32:51
last_update2020-07-01 01:32:51
depth1
children0
last_payout2020-07-08 01:32:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length3
author_reputation1,281,678
root_title"A preview of Hivemind Improvements"
beneficiaries
0.
accountesteemapp
weight300
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,270,915
net_rshares0
@mrnightmare89 ·
Very nice, this will make the interface will run smoothly.
properties (22)
authormrnightmare89
permlinkqctdzi
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2020-07-01 23:45:21
last_update2020-07-01 23:45:21
depth1
children0
last_payout2020-07-08 23:45:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length58
author_reputation263,354,568,367,810
root_title"A preview of Hivemind Improvements"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,289,407
net_rshares0
@peakd ·
We certainly appreciate the type of work you're doing!
properties (22)
authorpeakd
permlinkre-blocktrades-qcsl77
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2020.06.3"}
created2020-07-01 13:23:33
last_update2020-07-01 13:23:33
depth1
children0
last_payout2020-07-08 13:23:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length54
author_reputation318,650,540,403,799
root_title"A preview of Hivemind Improvements"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,280,485
net_rshares0
@portugalcoin ·
Thank you very much for your work! 🙏
Hug from Portugal
properties (22)
authorportugalcoin
permlinkre-blocktrades-qcsblc
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2020.06.3"}
created2020-07-01 09:56:00
last_update2020-07-01 09:56:00
depth1
children0
last_payout2020-07-08 09:56:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length54
author_reputation603,431,444,455,253
root_title"A preview of Hivemind Improvements"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,278,033
net_rshares0
@sanjeevm ·
$0.18
> create apps that scale to large numbers of users

That's the biggest challenge. 
👍  
properties (23)
authorsanjeevm
permlinkre-blocktrades-qcs1l2
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2020.06.2"}
created2020-07-01 06:19:51
last_update2020-07-01 06:19:51
depth1
children0
last_payout2020-07-08 06:19:51
cashout_time1969-12-31 23:59:59
total_payout_value0.088 HBD
curator_payout_value0.087 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length82
author_reputation723,489,920,133,581
root_title"A preview of Hivemind Improvements"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,275,125
net_rshares766,932,130,843
author_curate_reward""
vote details (1)
@shmoogleosukami ·
That's some serious gains right there!
properties (22)
authorshmoogleosukami
permlinkre-blocktrades-qcsepo
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2020.06.3"}
created2020-07-01 11:03:24
last_update2020-07-01 11:03:24
depth1
children0
last_payout2020-07-08 11:03:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length38
author_reputation228,242,899,913,302
root_title"A preview of Hivemind Improvements"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,278,979
net_rshares0
@soyrosa ·
Thanks, love reading behind-the-scene updates! Keep up the good work. 
properties (22)
authorsoyrosa
permlinkre-blocktrades-qcst9p
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2020.06.3"}
created2020-07-01 16:17:51
last_update2020-07-01 16:17:51
depth1
children0
last_payout2020-07-08 16:17:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length70
author_reputation335,707,483,911,582
root_title"A preview of Hivemind Improvements"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,283,093
net_rshares0
@steevc ·
$0.03
Good stuff. Optimising code for speed and memory efficiency is not easy, so those improvements are very impressive. We need the Hive sites to be responsive as people are used to that these days. Some of us remember waiting ages for images to download over a modem, but now fast connections are standard and some may give up if a site takes more than a few seconds to refresh.

Keep up the good work.
👍  
properties (23)
authorsteevc
permlinkre-blocktrades-qcs7m2
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2020.06.3"}
created2020-07-01 08:30:03
last_update2020-07-01 08:30:03
depth1
children2
last_payout2020-07-08 08:30:03
cashout_time1969-12-31 23:59:59
total_payout_value0.016 HBD
curator_payout_value0.016 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length399
author_reputation1,395,588,168,045,085
root_title"A preview of Hivemind Improvements"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,276,899
net_rshares149,901,148,668
author_curate_reward""
vote details (1)
@cmplxty ·
$0.03
I remember the awful noises of my dial up modem connecting to the internet lol then my mom picking up the phone and screwing it all up! Do you remember Walmart having an internet software? Lol that’s what we were using since it was free. 
👍  
properties (23)
authorcmplxty
permlinkre-steevc-202071t54420134z
categoryhive-139531
json_metadata{"tags":["esteem"],"app":"esteem/2.2.5-mobile","format":"markdown+html","community":"hive-125125"}
created2020-07-01 09:44:21
last_update2020-07-01 09:44:21
depth2
children1
last_payout2020-07-08 09:44:21
cashout_time1969-12-31 23:59:59
total_payout_value0.012 HBD
curator_payout_value0.013 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length238
author_reputation787,402,785,957,085
root_title"A preview of Hivemind Improvements"
beneficiaries
0.
accountesteemapp
weight300
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,277,899
net_rshares126,126,674,964
author_curate_reward""
vote details (1)
@steevc ·
Back then you could tell the browser not to download images to start with and then watch them appear line by line. Fun days. I used Compuserve for a while and various other UK services. One called Freeserve was popular as you just paid for the phone calls. I ended up getting a second just for the computer, which was an Amiga back then.
properties (22)
authorsteevc
permlinkre-cmplxty-qcsfxy
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2020.06.3"}
created2020-07-01 11:29:57
last_update2020-07-01 11:29:57
depth3
children0
last_payout2020-07-08 11:29:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length337
author_reputation1,395,588,168,045,085
root_title"A preview of Hivemind Improvements"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,279,333
net_rshares0
@sunil1885 ·
Woww
properties (22)
authorsunil1885
permlinkre-blocktrades-202072t2017313z
categoryhive-139531
json_metadata{"tags":["hive","blocktrades","hivemind","development"],"app":"esteem/2.2.5-mobile","format":"markdown+html","community":"hive-125125"}
created2020-07-02 14:47:06
last_update2020-07-02 14:47:06
depth1
children0
last_payout2020-07-09 14:47:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation2,029,784,905
root_title"A preview of Hivemind Improvements"
beneficiaries
0.
accountesteemapp
weight300
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,300,944
net_rshares0
@themarkymark ·
This is really amazing progress. Very exciting stuff.  
👍  
👎  , ,
properties (23)
authorthemarkymark
permlinkre-blocktrades-qcs4px
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2020.06.2"}
created2020-07-01 07:27:33
last_update2020-07-01 07:27:33
depth1
children0
last_payout2020-07-08 07:27:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length55
author_reputation1,780,080,004,399,932
root_title"A preview of Hivemind Improvements"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,276,005
net_rshares-11,498,975,530
author_curate_reward""
vote details (4)
@theresa16 ·
$0.02
I don't know much about that language but it's good to always be informed, the blockchains I met through you did an excellent job. Good luck on your new project
👍  
properties (23)
authortheresa16
permlinkqcrpv6
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2020-07-01 02:07:57
last_update2020-07-01 02:07:57
depth1
children0
last_payout2020-07-08 02:07:57
cashout_time1969-12-31 23:59:59
total_payout_value0.010 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length160
author_reputation798,855,836,563,768
root_title"A preview of Hivemind Improvements"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,271,423
net_rshares102,450,677,873
author_curate_reward""
vote details (1)
@tngflx ·
$0.02
Freaking bravo blocktrades. I like that creation of new api methods, this will suits the need of all kind of apps! Hope you're keeping up the great work! Steemit will never show this much transparency in what they do. At least you're sharing with us the progress :)
👍  
properties (23)
authortngflx
permlinkre-blocktrades-qcrl96
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2020.06.2"}
created2020-07-01 00:27:06
last_update2020-07-01 00:27:06
depth1
children0
last_payout2020-07-08 00:27:06
cashout_time1969-12-31 23:59:59
total_payout_value0.010 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length265
author_reputation17,396,455,988,713
root_title"A preview of Hivemind Improvements"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,270,211
net_rshares106,667,477,602
author_curate_reward""
vote details (1)
@vikisecrets ·
$0.18
Great work, speedups of 10x are really awesome and this will both help taking the cost down and also scaling up Hive for even more users :)
👍  ,
👎  
properties (23)
authorvikisecrets
permlinkre-blocktrades-qcsgya
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2020.06.2"}
created2020-07-01 11:51:42
last_update2020-07-01 11:51:42
depth1
children0
last_payout2020-07-08 11:51:42
cashout_time1969-12-31 23:59:59
total_payout_value0.092 HBD
curator_payout_value0.092 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length139
author_reputation1,220,726,190,237,890
root_title"A preview of Hivemind Improvements"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,279,598
net_rshares790,924,717,093
author_curate_reward""
vote details (3)
@wendyth16 ·
$0.02
Many success
👍  
properties (23)
authorwendyth16
permlinkre-blocktrades-2020630t2035860z
categoryhive-139531
json_metadata{"tags":["hive","blocktrades","hivemind","development"],"app":"esteem/2.2.5-mobile","format":"markdown+html","community":"hive-125125"}
created2020-07-01 00:04:27
last_update2020-07-01 00:04:27
depth1
children0
last_payout2020-07-08 00:04:27
cashout_time1969-12-31 23:59:59
total_payout_value0.010 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length12
author_reputation892,609,374,370,088
root_title"A preview of Hivemind Improvements"
beneficiaries
0.
accountesteemapp
weight300
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,269,919
net_rshares104,535,442,719
author_curate_reward""
vote details (1)
@yosra.yusefi ·
I want to use the https://hive.hivesigner.com/ API and analyze the operations performed in HIVE through this API. I want to get the information about the operations performed in HIVE from 2016 to 2018, but the request I send to the API is very time consuming. Can anyone guide me?
properties (22)
authoryosra.yusefi
permlinkqdr9sa
categoryhive-139531
json_metadata{"links":["https://hive.hivesigner.com/"],"app":"hiveblog/0.1"}
created2020-07-20 06:53:03
last_update2020-07-20 06:53:03
depth1
children0
last_payout2020-07-27 06:53:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length280
author_reputation9,388,003,440
root_title"A preview of Hivemind Improvements"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,616,998
net_rshares0