https://cdn.pixabay.com/photo/2018/01/20/14/26/panorama-3094696_1280.jpg In this post, we will address some of the concerns that have been raised regarding the increasing RAM usage of steemd nodes, as well as our future scaling plans. While the challenges associated with scaling are not something we will ever take lightly, we also think that many of the concerns have been raised due to some misunderstandings about how to properly/optimally operate steemd nodes. We will provide some guidance on this in the sections below, and we will also talk about several changes that we have in the pipeline for addressing our future projected growth. <h1>What is Scalability?</h1> The Steem community is rapidly growing, and with it, so is the Steem blockchain. Growth is great, but it brings with it scaling challenges. Other projects (such as Bitcoin and Ethereum) have been stuck at a standstill with their scaling problems for years - unable to adopt any significant changes to meet the growing demands that increased usage has placed on their blockchains. Steem on the other hand has continued to rapidly evolve and is meeting these challenges head on, thereby enabling it to process more transactions than every other blockchain *combined*. In other words, the majority of blockchain transactions occurring globally are being done on Steem. We’ve been able to do this because our team is made up of an ever-growing roster of the most talented and innovative blockchain engineers on the planet. This doesn’t make us cocky; it makes us acutely aware of the scaling challenges in front of us, and we want to assure you that we are adequately prepared to deal with them. While we are confident in our strategy, we are also eager to hear your thoughts, objections, and insights in the comments. <center><h1>A Brief History of Scaling</h1></center> The most critical decision with respect to scaling is where you start. The more scalable the foundation, the more scalable the stack. A stack’s ability to scale tends to have, at best, an exponential relationship to the starting point. It is incredibly rare for an architecture to go from being able to support 3,000 people to 3,000,000 people overnight. Instead, it goes from 3 to 6 to 12, etc. Starting from an architecture that was already far ahead of the pack in terms of scalability ([Graphene](http://docs.bitshares.org/)) was a critical component of the scaling strategy. Those that failed to make similar decisions now find themselves in the difficult position of having to rebuild their foundation without damaging the entire ecosystem that was built on top of it. <h2>ChainBase and AppBase</h2> The first major scalability-related upgrade was the replacement of Graphene with [ChainBase](https://steemit.com/steem/@steemitblog/announcing-steem-0-14-4-shared-db-preview-release). Thanks to its faster load and exit times, and increased robustness against crashes, ChainBase was critical to enabling Steem to process its current volume of transactions. The next major improvement that is nearing completion (thanks to the hard work of @vandeberg and the blockchain team) is [AppBase](https://steemit.com/steem/@steemitdev/appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin), which further improves Steem’s overall scalability through modularization. AppBase will allow many components of the Steem blockchain to run independently, which will permit steemd to take better advantage of the multithreaded nature of computers, and even enable different components of the blockchain to be run on different servers - reducing the need to run the Steem blockchain on individual “high powered, high cost” servers. <h1>Optimizing Steemd Nodes: Block Log + State File</h1> With respect to operating a steemd node currently, it is critical to understand that Steem requires two data stores: the block log and the state file. The block log is the blockchain itself, written to disk. *It is accessed infrequently*, but is critical to verifying the integrity of new blocks and reindexing the state file if needed. The state file contains the current state of Steem objects, such as account balances, posts, and votes. It is backed by disk, but accessed via a technique called memory-mapped files. This technique was introduced in December 2016 with the release of [ChainBase](https://steemit.com/steem/@steemitblog/announcing-steem-0-14-4-shared-db-preview-release). <h2>Everything RAM?</h2> Many node operators are suggesting that servers should have enough RAM to hold the entire Steem state file, due to the fact that Steem's performance drops when the operating system begins “paging” Steem's memory, which is a common memory management technique. We want to be very clear that it is not required to run a steemd node in this way. This is certainly a valid technique for increasing the performance of reindexing the node and servicing API calls, but is only useful in a limited number of cases. In the majority of cases (including with witness, seed, and exchange nodes), it is sufficient to store the shared memory file on a fast SSD or NVMe drive, instead of in RAM. <h1>Witness and Seed Node RAM Requirements</h1> When running a steemd node with only the `witness` plugin enabled (the common configuration for witness and seed nodes), Steemit recommends 16 GB of RAM, although 8 GB is likely sufficient if your node does not need to reindex often. If the shared memory file is stored in `/dev/shm/`, then additional RAM would be needed to hold the entire state file, but this is not a recommended configuration. To avoid the need for extra RAM, the shared memory file can be stored directly on a fast SSD or NVMe drive. A server with 8-16 GB of RAM will be slow with reindex, but it will function properly as a seed/witness node once it is up to date with the latest block. Running on a 32 GB server is ideal for optimal replay times, but it is not a requirement for a witness/seed node to properly operate. <h1>Shared Memory File Size</h1> The default configuration for a steemd node stores the shared memory file in the `data/blockchain` directory. As long as this location is on a fast enough (SSD or NVMe) drive with sufficient space, then the default setting should work. The current recommendation is to have at least 150 GB of fast SSD storage, which includes the `block_log` (currently around 90 GB) and `shared_memory.bin` (currently around 33 GB). These amounts will increase over time. Whenever the size of the shared memory file has increased beyond the size that is configured in the `config.ini` file, it has been necessary to update the configuration to a larger size and restart the node. There will be a change included in the next release (Steem 19.4) that will automatically increase this limit as needed, without the need to restart the node. This will be able to be configured and turned off entirely if you want to keep your state file in `/dev/shm`. <h1>“Full Node” Requirements</h1> Nodes that are running additional API plugins (especially account history) will require more RAM to support a larger state file. A “full node” (one that is running all of the plugins) can technically run on a 64 GB server, but it will be extremely slow to reindex, and it will be slow at serving API calls because the operating system paging algorithm does not handle memory-mapped files very well. A node with 64-256 GB RAM and a fast SSD/NVMe drive may be adequate for many use cases, depending on the load. <h2>Increasing Performance on High Use Nodes</h2> For more heavily used nodes, the best way (currently) to increase the performance is to have enough RAM to hold the entire database. This skips the need for paging altogether, which technically defeats the purpose of having a memory mapped file. For a node running all of the plugins **except account history**, this currently requires 256 GB RAM on a pre-AppBase node. A technique that we have been using to lower the memory requirements on a “full node” (one with everything **including account history**), is to split the API node into two servers. One server runs only “account history,” and the other server runs everything else. This allows both servers to use less than 256 GB RAM, instead of running everything on a 512 GB RAM server. We strongly recommend running account history on a dedicated node if you want a complete history for all accounts, since it eliminates the need to have a single 512 GB RAM server. Optimizing the use case of a “full node” is a top priority of ours, and one that we will talk about more in the next section. If you only need history for certain accounts though, or only care about certain operations, the hardware requirements may already be significantly reduced. <h1>Future Scaling Plans</h1> We are currently working on several projects that will reduce the memory requirements of “full nodes” by moving much of the API logic into non-consensus plugins such as HiveMind and SBDS. This will allow a lot of the functionality to be run off of SSD storage, rather than in RAM - which will lower the operating costs. By offloading data to hivemind/sbds and/or RocksDB (below), we should be able to reduce the requirements for a full node down to the same requirements for a consensus/seed node, which is an important goal of ours. <h2>RocksDB</h2> In addition to the non-consensus plugins, we have begun research on using alternative data stores and moving away from Chainbase. One such data store that has shown promise is [RocksDB](http://rocksdb.org/). RocksDB is a fast-on-disk data store with an advanced caching layer, which could further minimize latency when reading/writing to and from the disk as it is optimized for fast, low-latency storage. Used in production systems at multiple web-scale entreprises (Facebook, Yahoo, LinkedIn), RocksDB is based on LevelDB but with increased performance thanks to its ability to exploit multiple CPU cores and SSD storage for input/output bound workloads. Its use in MyRocks, for example, lead to less SSD storage use, longer SSD endurance, and more available IO capacity for handling queries. <h2>Further Modularization</h2> We are also working to modularize the blockchain beyond even what was originally planned for the initial AppBase implementation, for example, by having separate services that can be run on different servers. This will allow processes to be further spread across many small servers, increasing flexibility and decreasing cost. <center><h1>Conclusion</h1></center> As blockchain projects continue to become more mainstream, scalability is going to become more and more of a concern. Being a scalable blockchain is not just about being able to make a one-time fix to meet the current resource challenges. It is about being prepared to meet the future challenges as well. Steem has already proven itself as the fastest and most heavily transacted public blockchain in existence, and scalability continues to remain a top focus of ours. We know that scaling challenges will never completely go away, which is why we plan to continue innovating to ensure that whatever growth comes our way - we'll be ready. *Team Steemit* P.S. Don't forget to share your thoughts, objections, and insights in the comments!
author | steemitblog |
---|---|
permlink | exploring-steem-scalability |
category | steem |
json_metadata | {"tags":["steem","steemd","steemdev","steemitdev","witness-category"],"users":["vandeberg"],"image":["https://cdn.pixabay.com/photo/2018/01/20/14/26/panorama-3094696_1280.jpg"],"links":["http://docs.bitshares.org/","https://steemit.com/steem/@steemitblog/announcing-steem-0-14-4-shared-db-preview-release","https://steemit.com/steem/@steemitdev/appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin","http://rocksdb.org/"],"app":"steemit/0.1","format":"markdown"} |
created | 2018-04-10 16:12:18 |
last_update | 2018-04-10 16:35:36 |
depth | 0 |
children | 233 |
last_payout | 2018-04-17 16:12: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 | 11,303 |
author_reputation | 332,472,558,821,177 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 0.000 HBD |
percent_hbd | 10,000 |
post_id | 49,334,437 |
net_rshares | 145,042,484,596,583 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
analisa | 0 | 321,478,658,660 | 6% | ||
ned | 0 | 76,796,547,333,023 | 100% | ||
wackou | 0 | 7,517,252,463,315 | 100% | ||
val | 0 | 153,917,370,273 | 100% | ||
donkeypong | 0 | 1,093,781,954,001 | 7% | ||
fractalnode | 0 | 118,950,209,166 | 15% | ||
gardenlady | 0 | 435,444,165,722 | 50% | ||
noisy | 0 | 2,028,344,506,615 | 100% | ||
bleepcoin | 0 | 592,563,612,334 | 100% | ||
gekko | 0 | 4,742,130,148 | 100% | ||
teamsteem | 0 | 1,476,435,069,224 | 20% | ||
steemitblog | 0 | 1,870,813,909,383 | 100% | ||
dan-atstarlite | 0 | 676,720,219,979 | 100% | ||
kevinwong | 0 | 191,591,325,877 | 3.15% | ||
thecryptodrive | 0 | 12,752,978,415 | 28% | ||
dahaz159 | 0 | 25,994,145,498 | 100% | ||
sander-lacerda | 0 | 411,861,073,495 | 100% | ||
knopki | 0 | 153,548,452 | 100% | ||
gtg | 0 | 5,588,856,957,582 | 100% | ||
superfreek | 0 | 12,375,482,243 | 100% | ||
good-karma | 0 | 752,476,962,413 | 7% | ||
shayne | 0 | 16,030,882,038 | 100% | ||
vortac | 0 | 4,034,524,788,878 | 100% | ||
fulltimegeek | 0 | 13,102,200,850,882 | 100% | ||
thelindvall | 0 | 14,799,220,088 | 100% | ||
transisto | 0 | 5,203,986,417,790 | 100% | ||
allmonitors | 0 | 3,410,295,141 | 1% | ||
dimon14 | 0 | 17,786,003,242 | 97% | ||
heimindanger | 0 | 208,820,251,214 | 100% | ||
qonq99 | 0 | 1,534,854,035 | 100% | ||
james212 | 0 | 317,549,507 | 100% | ||
rfresh | 0 | 5,791,588,009 | 100% | ||
arconite | 0 | 1,186,059,089 | 1.57% | ||
alsprinting | 0 | 7,391,464,890 | 50% | ||
moon32walker | 0 | 199,881,293,030 | 100% | ||
remlaps | 0 | 1,859,186,204 | 10% | ||
fabien | 0 | 2,524,942,183,378 | 100% | ||
investing | 0 | 511,611,470,217 | 40% | ||
vandeberg | 0 | 4,028,276,975,382 | 100% | ||
timcliff | 0 | 429,502,163,031 | 79% | ||
perduta | 0 | 1,566,927,126 | 100% | ||
jschindler | 0 | 3,206,297,731 | 20% | ||
gammagooblin | 0 | 27,532,396,768 | 100% | ||
jsantana | 0 | 1,748,816,002 | 100% | ||
protegeaa | 0 | 407,030,075,844 | 100% | ||
steevc | 0 | 47,898,151,065 | 21% | ||
elguille | 0 | 10,054,757,022 | 75% | ||
steemitpatina | 0 | 23,379,779,586 | 80% | ||
themonetaryfew | 0 | 131,189,029,815 | 100% | ||
nullpointer | 0 | 436,750,727 | 100% | ||
etcmike | 0 | 21,521,399,463 | 10% | ||
richardcrill | 0 | 23,313,062,677 | 100% | ||
wesleybos | 0 | 268,499,136,515 | 100% | ||
aggroed | 0 | 227,466,791,221 | 50% | ||
leunghakkwun | 0 | 171,025,008 | 100% | ||
arrax | 0 | 2,499,118,614 | 100% | ||
abh12345 | 0 | 29,758,968,807 | 10% | ||
whatsup | 0 | 95,492,674,089 | 29% | ||
tarekadam | 0 | 411,266,821,778 | 100% | ||
reactivator | 0 | 343,369,709 | 100% | ||
alejandr0 | 0 | 733,914,686 | 100% | ||
barton26 | 0 | 6,464,760,015 | 100% | ||
thejohalfiles | 0 | 936,566,608,988 | 100% | ||
joshuaatiemo | 0 | 470,580,779 | 100% | ||
jamzed | 0 | 24,499,645,128 | 100% | ||
schererf | 0 | 21,322,315,658 | 19% | ||
bytzz | 0 | 474,657,021,639 | 100% | ||
lytieulong | 0 | 6,221,621,601 | 100% | ||
cardboard | 0 | 147,214,894 | 100% | ||
qubes | 0 | 319,947,415,057 | 100% | ||
calvin87 | 0 | 76,938,559 | 100% | ||
borepstein | 0 | 37,761,644,173 | 100% | ||
zephyraijunzo | 0 | 83,153,636,845 | 100% | ||
kykb | 0 | 1,430,600,656 | 100% | ||
btu | 0 | 2,609,740,846,741 | 100% | ||
kkbaardsen | 0 | 74,332,030 | 100% | ||
frieswiththat | 0 | 476,965,977 | 15% | ||
fityan | 0 | 58,610,155 | 100% | ||
dhimmel | 0 | 328,274,279,028 | 100% | ||
freebornsociety | 0 | 537,090,646 | 1% | ||
kirkins | 0 | 541,796,515 | 1% | ||
bcc | 0 | 2,590,497,297,645 | 100% | ||
cqf | 0 | 27,689,298,340 | 100% | ||
uradick | 0 | 960,037,368,154 | 100% | ||
bootyp | 0 | 424,870,426 | 100% | ||
michael-fagundes | 0 | 56,096,991,480 | 100% | ||
jimlitical | 0 | 614,503,785 | 100% | ||
bwmunson | 0 | 534,689,472 | 100% | ||
iansart | 0 | 7,725,819,945 | 100% | ||
ylgv | 0 | 1,038,881,694 | 30% | ||
me-do | 0 | 242,940,043 | 1% | ||
forykw | 0 | 15,761,342,939 | 100% | ||
opinizeunltd | 0 | 20,855,624,357 | 100% | ||
steemchiller | 0 | 107,408,062,266 | 100% | ||
nonphixion211 | 0 | 15,877,700,000 | 100% | ||
andybets | 0 | 22,515,637,464 | 100% | ||
done | 0 | 932,182,346,385 | 13% | ||
steemrant | 0 | 830,457,319,744 | 100% | ||
mys | 0 | 0 | 1% | ||
jakipatryk | 0 | 47,965,274,628 | 100% | ||
jiujitsu | 0 | 157,890,045,479 | 100% | ||
diogogomes | 0 | 332,975,584 | 78% | ||
dehenne | 0 | 5,076,635,859 | 100% | ||
geetharao | 0 | 148,872,931,392 | 100% | ||
drakos | 0 | 326,872,028,675 | 35% | ||
kondor1030 | 0 | 72,188,500,587 | 100% | ||
murda-ra | 0 | 8,589,794,589 | 100% | ||
sensation | 0 | 291,551,065 | 100% | ||
omarydler | 0 | 516,328,895 | 100% | ||
vickyfahrul07 | 0 | 592,056,570 | 100% | ||
samotonakatoshi | 0 | 0 | 3% | ||
rizal.konoha2 | 0 | 0 | 100% | ||
julies | 0 | 574,919,669 | 100% | ||
cranium | 0 | 7,051,374,231 | 9% | ||
lemi | 0 | 382,847,079 | 100% | ||
biroel | 0 | 590,285,389 | 100% | ||
sanat | 0 | 21,376,280,377 | 100% | ||
kilojo | 0 | 546,490,082 | 100% | ||
voder | 0 | 4,787,595,524 | 100% | ||
dayatcyber | 0 | 437,345,188 | 100% | ||
g0nr0gue | 0 | 1,222,392,634 | 100% | ||
bosveldtzaneen | 0 | 0 | 100% | ||
vimukthi | 0 | 852,793,344 | 1% | ||
derz | 0 | 2,795,390,142 | 100% | ||
koltregaskes | 0 | 615,574,772 | 100% | ||
medicbtom | 0 | 1,008,802,948 | 100% | ||
empopson | 0 | 602,213,710 | 100% | ||
mur | 0 | 214,244,671 | 100% | ||
roachnolan | 0 | 439,546,541 | 100% | ||
salim001 | 0 | 331,390,988 | 100% | ||
fbslo | 0 | 51,855,234,047 | 100% | ||
khansa | 0 | 8,705,460,243 | 100% | ||
eastmael | 0 | 5,315,482,363 | 10% | ||
therealwolf | 0 | 845,283,299,894 | 100% | ||
albanna | 0 | 0 | 100% | ||
scorer | 0 | 26,967,951,522 | 10% | ||
danieloroz | 0 | 547,634,800 | 100% | ||
sscrow | 0 | 1,375,591,862 | 100% | ||
cryptofinance | 0 | 602,041,217 | 100% | ||
gold84 | 0 | 38,580,606,058 | 100% | ||
wilku | 0 | 851,467,780 | 1% | ||
nor1 | 0 | 0 | 0% | ||
petersilie | 0 | 611,758,991 | 100% | ||
deszeppelin | 0 | 244,854,082 | 100% | ||
bobdos | 0 | 3,496,755,690 | 7% | ||
fedesox | 0 | 442,059,695 | 100% | ||
mkey99 | 0 | 613,122,478 | 100% | ||
krystal-paws | 0 | 615,320,000 | 100% | ||
herimukti | 0 | 452,655,806 | 100% | ||
mejustandrew | 0 | 1,097,388,094 | 100% | ||
sky03 | 0 | 441,740,194 | 1% | ||
taniaart | 0 | 565,247,589 | 100% | ||
gmaliakbor | 0 | 55,181,023 | 100% | ||
steemcommunity | 0 | 2,346,984,897 | 100% | ||
kbooooom | 0 | 615,320,000 | 100% | ||
amaiman | 0 | 1,792,517,880 | 100% | ||
apukb | 0 | 58,631,097 | 100% | ||
preetham | 0 | 603,013,600 | 100% | ||
pasagadasudhakar | 0 | 566,531,243 | 100% | ||
coindzs | 0 | 134,938,220 | 100% | ||
nasrulnazar95 | 0 | 311,907,847 | 100% | ||
chandragupta | 0 | 0 | 0% | ||
tomco984 | 0 | 0 | 100% | ||
oksanakazakova | 0 | 1,429,545,774 | 100% | ||
chalidteuku | 0 | 1,793,076,501 | 100% | ||
juliolezama | 0 | 4,586,658,929 | 100% | ||
prayas870 | 0 | 0 | 100% | ||
fahimgazi | 0 | 599,681,000 | 100% | ||
boostme | 0 | 31,090,920,997 | 100% | ||
mollyparti | 0 | 615,320,000 | 100% | ||
urbanoanderson | 0 | 612,909,668 | 100% | ||
minestein | 0 | 578,593,058 | 100% | ||
bitcoin.news | 0 | 0 | 100% | ||
jakeybrown | 0 | 17,947,876,589 | 50% | ||
ijatz | 0 | 599,515,031 | 100% | ||
muzawir85 | 0 | 611,605,100 | 100% | ||
brosol | 0 | 920,433,687 | 100% | ||
dorn5 | 0 | 0 | 0% | ||
robertgelbmann | 0 | 116,211,003 | 24.4% | ||
bec-on-the-block | 0 | 1,090,188,269 | 100% | ||
susano | 0 | 499,419,409 | 100% | ||
trinumedia | 0 | 612,402,294 | 100% | ||
saiful-lamno | 0 | 427,783,621 | 100% | ||
jman | 0 | 613,594,748 | 100% | ||
vnnl | 0 | 350,470,200 | 100% | ||
platomaniac | 0 | 239,679,498 | 100% | ||
arie78 | 0 | 0 | 0% | ||
clvr | 0 | 0 | 0% | ||
beauty.world | 0 | 3,205,245,616 | 100% | ||
saifulrakitic | 0 | 494,942,698 | 100% | ||
shaidon | 0 | 0 | 100% | ||
powerpaul | 0 | 417,410,351 | 100% | ||
dasrow | 0 | 0 | 49% | ||
allexpire | 0 | 240,172,951 | 100% | ||
stoney.kang | 0 | 0 | 100% | ||
tlsvchuoi | 0 | 544,637,440 | 100% | ||
elnazry | 0 | 2,693,275,927 | 100% | ||
teukumirza | 0 | 207,908,504 | 100% | ||
dr-frankenstein | 0 | 1,308,084,698 | 100% | ||
lyee | 0 | 567,558,072 | 100% | ||
remcovdpluijm | 0 | 0 | 4% | ||
camillap | 0 | 171,861,386 | 100% | ||
alphapromega | 0 | 602,190,846 | 100% | ||
putroeraesha | 0 | 613,236,895 | 100% | ||
sweetyvshah | 0 | 61,195,218 | 10% | ||
kasmiati | 0 | 371,781,539 | 100% | ||
herman08 | 0 | 131,490,563 | 100% | ||
wandairawan | 0 | 0 | 100% | ||
steem15 | 0 | 556,831,750 | 100% | ||
alfian | 0 | 168,451,893 | 100% | ||
properfraction | 0 | 611,878,805 | 100% | ||
mohsen63 | 0 | 4,141,681,461 | 100% | ||
blackjackk | 0 | 545,383,318 | 100% | ||
suhadi-gayo | 0 | 0 | 1% | ||
leamarie | 0 | 592,965,586 | 100% | ||
aryasensio | 0 | 550,577,454 | 100% | ||
amponchiek | 0 | 152,984,273 | 100% | ||
mursidi84 | 0 | 501,782,752 | 100% | ||
atim1234 | 0 | 2,024,937,618 | 100% | ||
abdis | 0 | 91,602,379 | 100% | ||
peerzadazeeshan | 0 | 4,059,190,927 | 100% | ||
princessleni | 0 | 193,557,875 | 100% | ||
ipoelkip | 0 | 525,409,608 | 100% | ||
sunrise1601 | 0 | 614,468,915 | 100% | ||
balusteem | 0 | 590,196,123 | 100% | ||
leonardi | 0 | 0 | 100% | ||
kabir88 | 0 | 16,937,010,524 | 100% | ||
murizalpangeran | 0 | 82,553,094 | 100% | ||
iswanisamion | 0 | 165,514,696 | 100% | ||
fikri129056 | 0 | 580,672,337 | 100% | ||
nandaibra | 0 | 385,204,085 | 100% | ||
razzor | 0 | 192,717,808 | 41.51% | ||
justfishing | 0 | 51,992,845 | 100% | ||
petervroom | 0 | 551,747,913 | 100% | ||
ann07 | 0 | 186,791,636 | 100% | ||
musmui | 0 | 229,955,621 | 100% | ||
pqbd | 0 | 560,669,595 | 100% | ||
ikhlasulamal | 0 | 434,628,055 | 100% | ||
tibfox | 0 | 0 | 100% | ||
karolmichalski | 0 | 7,324,316,043 | 100% | ||
safiuddin.zami | 0 | 0 | 100% | ||
m2nnari | 0 | 308,390,451 | 100% | ||
zzkali | 0 | 510,478,563 | 100% | ||
ade-greenwise | 0 | 1,026,108,403 | 100% | ||
plikluheh | 0 | 471,135,170 | 100% | ||
finskels | 0 | 611,729,541 | 100% | ||
pulll | 0 | 303,384,708 | 49.87% | ||
unakasyi | 0 | 223,259,080 | 100% | ||
muhammadazzikra | 0 | 0 | 100% | ||
munawardi | 0 | 368,823,815 | 100% | ||
bellekiss-31 | 0 | 210,971,997 | 100% | ||
cienpascal | 0 | 652,442,257 | 100% | ||
lartist-zen | 0 | 617,596,515 | 100% | ||
danielxavier1974 | 0 | 310,300,844 | 100% | ||
muhammadsiddiq | 0 | 504,600,411 | 100% | ||
windaandriani | 0 | 380,453,531 | 100% | ||
faisalus | 0 | 428,102,481 | 100% | ||
imcore | 0 | 1,192,703,233 | 100% | ||
muktari | 0 | 510,745,779 | 100% | ||
nasteem | 0 | 550,651,521 | 100% | ||
zulfikark-kirbi | 0 | 154,781,119 | 100% | ||
chohyunseo | 0 | 594,396,193 | 79.08% | ||
muhammadzaini | 0 | 0 | 100% | ||
tsnaks | 0 | 124,061,751 | 100% | ||
royalace777 | 0 | 555,089,336 | 100% | ||
a-alo | 0 | 578,810,654 | 100% | ||
rjaaalj | 0 | 82,619,051 | 100% | ||
medowill | 0 | 592,508,748 | 100% | ||
ryanrizqihidayat | 0 | 589,874,192 | 100% | ||
ardabilly | 0 | 0 | 100% | ||
mitch0403 | 0 | 95,306,090 | 100% | ||
fikar21 | 0 | 245,143,958 | 100% | ||
azwi03 | 0 | 535,225,543 | 100% | ||
pdsncl | 0 | 17,358,912,352 | 100% | ||
fitriani56 | 0 | 327,862,819 | 100% | ||
nikokafka | 0 | 17,225,219,881 | 16% | ||
marilin151 | 0 | 0 | 100% | ||
rinaalfiana | 0 | 376,178,170 | 100% | ||
abdullah67 | 0 | 55,041,477 | 100% | ||
zidine | 0 | 532,176,948 | 100% | ||
unakasyi5 | 0 | 556,650,135 | 100% | ||
kachyona1 | 0 | 578,010,540 | 100% | ||
surya16 | 0 | 208,995,983 | 100% | ||
basyir01 | 0 | 168,426,073 | 100% | ||
latdmiser | 0 | 823,527,514 | 100% | ||
romyjaykar | 0 | 88,994,270 | 100% | ||
indigoocean | 0 | 26,812,406,193 | 100% | ||
mona87 | 0 | 593,296,194 | 100% | ||
amitrawat | 0 | 318,876,414 | 100% | ||
azzuka | 0 | 547,804,878 | 100% | ||
susan2440 | 0 | 619,170,438 | 100% | ||
twodragon | 0 | 0 | 0% | ||
tanel1130 | 0 | 677,944,575 | 100% | ||
tiw93 | 0 | 612,929,346 | 100% | ||
kol4ak | 0 | 4,223,739,254 | 100% | ||
eii | 0 | 58,209,535 | 10% | ||
zedpal | 0 | 730,420,552 | 100% | ||
refuel | 0 | 0 | 0% | ||
mukhlispuna | 0 | 290,704,568 | 100% | ||
marihuya | 0 | 205,755,381 | 100% | ||
aarontaggert | 0 | 452,257,646 | 100% | ||
valinlays | 0 | 0 | 100% | ||
dindar | 0 | 9,339,067,919 | 10% | ||
volkandgnn | 0 | 149,215,144 | 20% | ||
shaphir | 0 | 1,195,984,540 | 100% | ||
dimple101 | 0 | 591,620,546 | 100% | ||
amirul786 | 0 | 579,196,590 | 100% | ||
semy | 0 | 437,341,061 | 100% | ||
marekkaminski | 0 | 732,553,112 | 100% | ||
mcgrafite | 0 | 472,128,936 | 100% | ||
ayiazhar | 0 | 545,387,312 | 100% | ||
mirzarus | 0 | 600,958,090 | 100% | ||
firdausalasyi | 0 | 612,770,606 | 100% | ||
passee | 0 | 486,929,343 | 100% | ||
unicornquiffe | 0 | 134,502,038 | 25.38% | ||
beyondlock | 0 | 0 | 100% | ||
jackdate | 0 | 0 | 100% | ||
francayr143 | 0 | 411,661,074 | 100% | ||
soehtike | 0 | 579,200,016 | 100% | ||
zbordom | 0 | 0 | 100% | ||
theartofrez | 0 | 1,357,734,248 | 100% | ||
pozzor | 0 | 566,673,494 | 100% | ||
chucho | 0 | 611,587,049 | 100% | ||
cambridgeport90 | 0 | 422,651,472 | 80% | ||
tomasbonillo | 0 | 590,449,882 | 100% | ||
bachillermujica | 0 | 579,037,215 | 100% | ||
iissumiati03 | 0 | 591,233,106 | 100% | ||
felixsteem | 0 | 600,767,282 | 100% | ||
barsteward | 0 | 581,945,868 | 100% | ||
sabar22 | 0 | 486,169,151 | 100% | ||
jeanette-s-hall | 0 | 603,345,778 | 100% | ||
kozlyakovskiy | 0 | 565,817,601 | 100% | ||
dinf93845 | 0 | 89,112,579 | 100% | ||
camillesteemer | 0 | 119,268,054 | 100% | ||
mrcalxy | 0 | 229,700,169 | 100% | ||
imun | 0 | 468,323,391 | 100% | ||
ryunacho | 0 | 523,713,802 | 100% | ||
amordeverano | 0 | 603,342,802 | 100% | ||
klangmann | 0 | 576,047,493 | 100% | ||
abcgoodyabc | 0 | 591,170,968 | 100% | ||
medduta | 0 | 238,883,300 | 39.9% | ||
firojkabir | 0 | 333,824,099 | 100% | ||
hr2 | 0 | 0 | 100% | ||
ghosty5 | 0 | 483,889,311 | 100% | ||
dgucci | 0 | 578,829,619 | 100% | ||
cosmophobia | 0 | 131,929,232 | 100% | ||
rinis | 0 | 566,028,252 | 100% | ||
mahriz | 0 | 575,761,463 | 100% | ||
poramanik5548 | 0 | 529,058,997 | 100% | ||
elbacova | 0 | 590,730,727 | 100% | ||
hamlettrejo | 0 | 434,879,186 | 100% | ||
mukhlis94 | 0 | 557,377,485 | 100% | ||
juliocesar7 | 0 | 591,065,135 | 100% | ||
nrsplastic | 0 | 492,337,421 | 100% | ||
sux | 0 | 118,441,464,984 | 100% | ||
lone.ly12 | 0 | 602,229,850 | 100% | ||
toastytrader | 0 | 612,493,324 | 100% | ||
jeangris19 | 0 | 594,375,012 | 100% | ||
yoplee | 0 | 429,444,271 | 100% | ||
snaiker | 0 | 578,718,367 | 100% | ||
cooepreneurss | 0 | 367,683,084 | 100% | ||
azyref | 0 | 497,181,790 | 100% | ||
hermetas | 0 | 284,763,235 | 50% | ||
rizzopablo | 0 | 79,987,223 | 25% | ||
creedtokill | 0 | 590,957,225 | 100% | ||
scraped | 0 | 3,246,618,644 | 33.29% | ||
pingpongi | 0 | 505,272,573 | 100% | ||
goldbuyer | 0 | 119,999,324,342 | 100% | ||
mretro | 0 | 599,833,051 | 100% | ||
mariam14 | 0 | 602,772,897 | 100% | ||
hinokaruhanagata | 0 | 73,767,037 | 100% | ||
bitcoinsmart | 0 | 474,262,939 | 100% | ||
intonumbers | 0 | 562,996,005 | 100% | ||
elliotthedragon | 0 | 0 | 0% | ||
arnitataleb | 0 | 0 | 100% | ||
palomita | 0 | 578,294,810 | 100% | ||
kowal115 | 0 | 486,501,983 | 100% | ||
kamran600 | 0 | 97,912,348 | 100% | ||
mirekel | 0 | 431,598,757 | 100% | ||
jaypost724 | 0 | 458,703,825 | 100% | ||
masykurzilong | 0 | 0 | 0% | ||
elvielins | 0 | 2,734,173,511 | 100% | ||
sujonkhan | 0 | 401,469,053 | 100% | ||
sulaiman86 | 0 | 55,105,059 | 100% | ||
dailyllama | 0 | 611,952,180 | 100% | ||
bendaniel | 0 | 530,255,948 | 100% | ||
dmania-meme | 0 | 611,608,003 | 100% | ||
agussalim070592 | 0 | 156,047,805 | 100% | ||
eyvindur | 0 | 611,952,180 | 100% | ||
songbengie | 0 | 590,533,853 | 100% | ||
adeduque | 0 | 538,517,918 | 100% | ||
fadlipm | 0 | 455,902,076 | 100% | ||
desinger-pro | 0 | 578,281,050 | 100% | ||
foortirafi | 0 | 474,751,437 | 100% | ||
turekcom | 0 | 579,484,326 | 100% | ||
rizalfahmi3754 | 0 | 64,245,858 | 100% | ||
woly | 0 | 492,584,408 | 100% | ||
digitalpapiro | 0 | 498,628,076 | 100% | ||
pepeto | 0 | 535,382,155 | 100% | ||
amarzaman | 0 | 312,051,313 | 100% | ||
chemical.black | 0 | 1,837,903,325 | 69% | ||
forgetsharif | 0 | 425,246,397 | 100% | ||
kurieta | 0 | 532,674,904 | 100% | ||
laurbana | 0 | 5,017,221,261 | 100% | ||
ngaga | 0 | 131,550,383 | 100% | ||
taarzan | 0 | 569,031,890 | 100% | ||
eggo | 0 | 0 | 0% | ||
muliadi98 | 0 | 590,444,093 | 100% | ||
kit-kit | 0 | 611,859,164 | 100% | ||
roanventures | 0 | 611,859,164 | 100% | ||
remux2 | 0 | 590,444,093 | 100% | ||
narasimman | 0 | 0 | 100% | ||
petertomas | 0 | 591,385,468 | 100% | ||
kado013 | 0 | 348,757,963 | 100% | ||
mypicture | 0 | 536,334,686 | 100% | ||
audreybits | 0 | 397,704,454 | 100% | ||
ksiaceh | 0 | 553,353,980 | 100% | ||
copia.pega.gana | 0 | 425,237,839 | 100% | ||
least | 0 | 78,766,959,284 | 100% | ||
hoddl | 0 | 523,129,168 | 100% | ||
mdrazu | 0 | 575,133,360 | 100% | ||
zaivi | 0 | 256,974,480 | 100% | ||
deriom | 0 | 391,578,251 | 100% | ||
wendyromero | 0 | 611,841,017 | 100% | ||
darwin22 | 0 | 514,320,672 | 100% | ||
filipano | 0 | 340,451,593 | 100% | ||
kingmoe | 0 | 611,814,226 | 100% | ||
steemerjp | 0 | 281,434,543 | 100% | ||
shahparan | 0 | 0 | 100% | ||
arulpnonna123 | 0 | 55,063,016 | 100% | ||
mayandi41 | 0 | 385,439,265 | 100% | ||
muliaula1324 | 0 | 0 | 100% | ||
sampathkumar | 0 | 0 | 100% | ||
mayher | 0 | 76,471,301 | 100% | ||
chaunguyen1997 | 0 | 565,882,148 | 100% | ||
juliav07 | 0 | 611,764,485 | 100% | ||
ahsanamaurisa | 0 | 602,588,018 | 100% | ||
kolegaotaku | 0 | 354,823,401 | 100% | ||
tsanii | 0 | 599,514,854 | 100% | ||
yoglis0 | 0 | 177,405,777 | 100% | ||
achakzaikabir | 0 | 562,783,133 | 100% | ||
yanggolomgolom | 0 | 492,432,923 | 100% | ||
pankaj2869 | 0 | 590,299,427 | 100% | ||
ishfaq | 0 | 244,679,056 | 100% | ||
peter-miller | 0 | 366,988,546 | 100% | ||
mutiasari06 | 0 | 568,308,821 | 100% | ||
justfell | 0 | 201,839,209 | 100% | ||
boy12 | 0 | 504,569,406 | 100% | ||
lordrudra86 | 0 | 241,581,715 | 50% | ||
nobaab.chow | 0 | 571,845,327 | 100% | ||
jayboi | 0 | 336,379,604 | 100% | ||
rohan-khandokar | 0 | 577,961,320 | 100% | ||
kunark | 0 | 574,903,324 | 100% | ||
ontologic | 0 | 602,425,291 | 100% | ||
crimson.spectrum | 0 | 440,351,482 | 100% | ||
putrybahagiani | 0 | 553,497,349 | 100% | ||
muliamalhaddad | 0 | 477,047,439 | 100% | ||
oksikasnita007 | 0 | 553,497,349 | 100% | ||
duybien | 0 | 400,595,544 | 100% | ||
tamim75 | 0 | 0 | 0% | ||
jimmiles | 0 | 617,877,325 | 100% | ||
amandine88 | 0 | 599,364,326 | 100% | ||
shackox | 0 | 409,769,488 | 100% | ||
wershoesdesign | 0 | 250,754,463 | 100% | ||
sakib6707 | 0 | 0 | 0% | ||
cereke | 0 | 460,318,605 | 100% | ||
sheradenrobi | 0 | 0 | 100% | ||
maulanazikri | 0 | 97,855,400 | 100% | ||
germozdo | 0 | 617,877,321 | 100% | ||
mdkhtanvir | 0 | 425,059,394 | 100% | ||
amrimon90sr | 0 | 568,784,514 | 100% | ||
thatviolinguy | 0 | 590,190,382 | 100% | ||
under-dog | 0 | 596,251,614 | 100% | ||
clevelandstordy | 0 | -611,596,251 | -100% | ||
abrjose | 0 | 596,251,614 | 100% | ||
jakejacoby280 | 0 | 590,190,382 | 100% | ||
vlow77 | 0 | 617,877,320 | 100% | ||
grubben | 0 | 519,016,948 | 100% | ||
saffana | 0 | 605,519,772 | 100% | ||
esteemjantho | 0 | 333,319,957 | 100% | ||
princeolang | 0 | 449,523,244 | 100% | ||
ubsefor | 0 | 492,334,982 | 100% | ||
pbfundacion | 0 | 599,364,326 | 100% | ||
tajulislam | 0 | 522,914,795 | 100% | ||
flowpro | 0 | 608,609,155 | 100% | ||
cyclical | 0 | 617,877,313 | 100% | ||
online-scribe | 0 | 0 | 100% | ||
giuliastro | 0 | 617,877,306 | 100% | ||
zenginpici | 0 | 581,013,497 | 100% | ||
artstark | 0 | 333,653,744 | 100% | ||
juliethibbs | 0 | 425,057,243 | 100% | ||
pawelel88 | 0 | 581,013,497 | 100% | ||
stingredfox | 0 | 605,519,754 | 100% | ||
sksool777 | 0 | 519,854,182 | 100% | ||
alexcocan | 0 | 611,593,155 | 100% | ||
workoutman | 0 | 100,912,870 | 100% | ||
crowing | 0 | 602,419,258 | 100% | ||
blockcrunch | 0 | 617,877,288 | 100% | ||
walking100 | 0 | 529,028,079 | 100% | ||
maxgunchenko | 0 | 596,251,578 | 100% | ||
victorfancn | 0 | 608,532,134 | 100% | ||
pijast115 | 0 | 596,251,573 | 100% | ||
fatahillah9 | 0 | 446,460,762 | 100% | ||
sarita13 | 0 | 388,359,704 | 100% | ||
karissa.pena | 0 | 596,251,561 | 100% | ||
suhardanil | 0 | 611,587,049 | 100% | ||
djmelbert | 0 | 421,995,064 | 100% | ||
daniel7 | 0 | 605,519,717 | 100% | ||
aneukatjeh | 0 | 324,141,136 | 52.52% | ||
cmplxty | 0 | 590,181,502 | 100% | ||
yeasinshikdar | 0 | 562,268,306 | 100% | ||
trungngo | 0 | 553,486,279 | 100% | ||
ashiktx | 0 | 611,587,049 | 100% | ||
ngocbuivan | 0 | 492,327,574 | 100% | ||
jonyhieu | 0 | 159,012,632 | 100% | ||
vagabond87 | 0 | 590,181,502 | 100% | ||
rikidayat | 0 | 412,819,210 | 100% | ||
thichnx | 0 | 617,877,241 | 100% | ||
lkafle | 0 | 596,251,536 | 100% | ||
laki3 | 0 | 617,877,239 | 100% | ||
pradeeps88 | 0 | 492,325,132 | 100% | ||
duongvanba | 0 | 423,245,902 | 100% | ||
nagendra365 | 0 | 590,178,574 | 100% | ||
dristian73 | 0 | 590,178,574 | 100% | ||
james59 | 0 | 426,335,284 | 100% | ||
peternice | 0 | 583,893,975 | 100% | ||
boo-birds | 0 | -577,944,025 | -100% | ||
r3blog | 0 | 596,251,495 | 100% | ||
masum420 | 0 | 0 | 100% | ||
johnnytovar | 0 | 590,172,736 | 100% | ||
high420 | 0 | 452,565,480 | 100% | ||
andregarrido | 0 | 152,892,992 | 100% | ||
saiful7 | 0 | 418,926,798 | 100% | ||
alexkorol | 0 | 70,330,430 | 100% | ||
jony75 | 0 | 553,000,044 | 100% | ||
acc.park | 0 | 617,877,139 | 100% | ||
vuhoang6668 | 0 | 583,893,895 | 100% | ||
horu | 0 | 617,877,137 | 100% | ||
dariusz70 | 0 | 457,229,080 | 100% | ||
madmed | 0 | 391,404,135 | 100% | ||
lordplague | 0 | 577,932,669 | 100% | ||
tomal2 | 0 | 596,251,429 | 100% | ||
alkadre | 0 | 0 | 100% | ||
vera-maisyura | 0 | 0 | 0% | ||
msundburg | 0 | 577,924,413 | 100% | ||
trippleat | 0 | 602,386,822 | 100% | ||
ethanjc | 0 | 0 | 0% | ||
szaakaltv | 0 | 583,893,812 | 100% | ||
rez0nance | 0 | 596,251,350 | 100% | ||
lucii | 0 | 177,350,741 | 100% | ||
fazrin | 0 | 525,936,680 | 100% | ||
bryce-lynch | 0 | 596,251,327 | 100% | ||
archfiend138 | 0 | 617,877,016 | 100% | ||
damithsriyantha | 0 | 583,893,778 | 100% | ||
alikatasya95 | 0 | 596,251,306 | 100% | ||
samiulhaqkhan | 0 | 583,893,727 | 100% | ||
tasnuvapriyaku | 0 | 549,910,470 | 100% | ||
juanntv | 0 | 0 | 0% | ||
zaimunar | 0 | 571,536,149 | 100% | ||
saraakhund | 0 | 0 | 0% | ||
hdk86jp | 0 | 537,552,811 | 100% | ||
kriss83 | 0 | 501,445,463 | 100% | ||
hafizulkhr | 0 | 590,057,105 | 100% | ||
keegansamuel | 0 | 574,624,894 | 100% | ||
oriyabaik | 0 | 0 | 100% | ||
vip1000 | 0 | 0 | 100% | ||
chasif | 0 | 0 | 100% | ||
kisuka | 0 | 0 | 100% | ||
nadjette | 0 | 0 | 100% | ||
milton7320 | 0 | 0 | 100% | ||
zailushangde | 0 | 0 | 100% | ||
chainofblocks | 0 | 0 | 100% | ||
ibar | 0 | 0 | 100% | ||
cerd26 | 0 | 0 | 100% | ||
daniel-vs | 0 | 0 | 100% | ||
joeyslliks | 0 | 0 | 100% | ||
leogolj | 0 | 0 | 100% | ||
esportshour | 0 | 0 | 100% | ||
hichemifaoui | 0 | 0 | 100% | ||
akkann | 0 | 0 | 100% | ||
fotonorway8 | 0 | 0 | 100% | ||
abusamadre | 0 | 0 | 100% | ||
profwhitetower | 0 | 0 | 100% | ||
tecnotronics | 0 | 0 | 0% |
very good... follow me, thanks
author | abeuatifully |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180411t070101532z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-11 07:01:24 |
last_update | 2018-04-11 07:01:24 |
depth | 1 |
children | 0 |
last_payout | 2018-04-18 07:01: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 | 30 |
author_reputation | -148,933,508,174 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,442,211 |
net_rshares | 0 |
Thank you for this detailed explanation of everything, as a non-techy I found I was able to grasp it much better and I'm as determined as ever that Steem has an amazing team behind it focusing on the important aspects which is the scalability of the blockchain. We are already so far ahead of many other blockchains in terms of real world use and promising apps being built on top of it. Resteemed.
author | acidyo |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180410t163349292z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 16:33:54 |
last_update | 2018-04-10 16:33:54 |
depth | 1 |
children | 4 |
last_payout | 2018-04-17 16:33:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.502 HBD |
curator_payout_value | 0.485 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 400 |
author_reputation | 3,357,365,335,795,195 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,337,557 |
net_rshares | 443,656,265,123 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
timcliff | 0 | 34,638,062,214 | 6% | ||
whatageek | 0 | 216,304,400,747 | 34% | ||
steemchiller | 0 | 105,259,901,020 | 100% | ||
thedarkhorse | 0 | 7,207,650,573 | 10% | ||
mejustandrew | 0 | 1,078,682,615 | 100% | ||
shankstaicho | 0 | 4,066,933,214 | 100% | ||
chronocrypto | 0 | 74,522,508,943 | 42% | ||
fanni-steem | 0 | 578,125,797 | 100% |
Glad you think so! Thanks!
author | andrarchy |
---|---|
permlink | re-acidyo-re-steemitblog-exploring-steem-scalability-20180410t163725105z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 16:37:24 |
last_update | 2018-04-10 16:37:24 |
depth | 2 |
children | 2 |
last_payout | 2018-04-17 16:37: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 | 26 |
author_reputation | 230,168,201,522,782 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,338,097 |
net_rshares | 0 |
Great work, Andrew! I'm so excited to see this regular, professional communication. I know how much work goes into creating something like this, and I really, really appreciate it. It's a huge investment of valuable time, but this communication is so important (IMO).
author | lukestokes |
---|---|
permlink | re-andrarchy-re-acidyo-re-steemitblog-exploring-steem-scalability-20180410t205931249z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 20:59:33 |
last_update | 2018-04-10 20:59:33 |
depth | 3 |
children | 1 |
last_payout | 2018-04-17 20:59:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.914 HBD |
curator_payout_value | 0.295 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 267 |
author_reputation | 556,640,380,599,219 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,373,912 |
net_rshares | 271,926,820,631 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
acidyo | 0 | 170,907,140,843 | 1% | ||
lenatramper | 0 | 1,400,329,430 | 1% | ||
triverse | 0 | 266,892,762 | 1% | ||
steemchiller | 0 | 99,352,457,596 | 100% | ||
xymaros | 0 | 0 | 40% |
I do not understand technology. So I follow your opinion. My friends in Indonesia say you are a caring Steemian.
author | rismanrachman |
---|---|
permlink | re-acidyo-re-steemitblog-exploring-steem-scalability-20180411t014647233z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-11 01:46:54 |
last_update | 2018-04-11 01:46:54 |
depth | 2 |
children | 0 |
last_payout | 2018-04-18 01:46:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 112 |
author_reputation | 14,174,924,266,395 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,404,272 |
net_rshares | 0 |
If Steemit does take off in the future many of us will be in great shape. It doesn't do anyone any good to fill the platform with bots and the BS fighting we see here sometimes. All of us just keep trying to put out decent content. I always keep trying to come up with something interesting to post., but I know I have posted some less than great stuff sometimes too.
author | adamdonmez |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180807t192031545z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-08-07 19:20:42 |
last_update | 2018-08-07 19:22:27 |
depth | 1 |
children | 0 |
last_payout | 2018-08-14 19:20: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 | 369 |
author_reputation | 3,989,046,122,985 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 67,443,671 |
net_rshares | 0 |
Hi, My experience has taught me that any design that depends on a fully memory based solution is asking for a lot of trouble. From what you have described, it looks like the full nodes are setup to make this assumption. Why not use Redis instead? My experience with Redis has been very good and yet is is better when backed up by SSD but not mandated. this way a linear dropoff is avoided. One of the disadvantages of a dispersed cluster solution is that individual node performance becomes paramount. if enough of the nodes are slow then you have other security problems to worry about. using Redis seems like a good compromise and it will keep your code simple. regards Adarsh
author | adarshh |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180413t074706602z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-13 07:47:06 |
last_update | 2018-04-13 07:47:06 |
depth | 1 |
children | 0 |
last_payout | 2018-04-20 07:47:06 |
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 | 679 |
author_reputation | 1,909,676,117,380 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,812,474 |
net_rshares | 0 |
Wishing you techie wizards the very best with the Steem scalability solutions, because if mass adoption of Steem is to come and over-spill into every day world transactions, and be truly disruptive, as so many hope for, we will need this fundamental development to carry us forward and bear the weight! So... it's more important to see this focus, than a lot of the vapid opinion about the nature and design of steemit itself, which has surely already proved itself as the effective platform for free speech we need. As for decentralisation versus centralisation, I personally am less worried about this aspect. I think it's good to have some level of expert, dedicated control over the protocol, for now. Best of luck and please keep us updated!
author | ade-greenwise |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180627t142551343z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-06-27 14:25:54 |
last_update | 2018-06-27 14:30:30 |
depth | 1 |
children | 0 |
last_payout | 2018-07-04 14:25:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 750 |
author_reputation | 5,178,637,076,424 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 62,492,125 |
net_rshares | 1,931,135,399 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ade-greenwise | 0 | 1,931,135,399 | 100% |
>Steem has already proven itself as the fastest and most heavily transacted public blockchain in existence, and scalability continues to remain a top focus of ours. We know that scaling challenges will never completely go away, which is why we plan to continue innovating to ensure that whatever growth comes our way - we'll be ready I love the fact that @steemitblog and it's team are working daily to improve the blockchain and Steemit experience for its Millions of users.
author | adedoyinwealth |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180410t162919712z |
category | steem |
json_metadata | {"tags":["steem"],"users":["steemitblog"],"app":"steemit/0.1"} |
created | 2018-04-10 16:29:30 |
last_update | 2018-04-10 16:29:30 |
depth | 1 |
children | 0 |
last_payout | 2018-04-17 16:29: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 | 476 |
author_reputation | 5,369,436,941,790 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,336,867 |
net_rshares | 1,329,525,638 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
adedoyinwealth | 0 | 1,329,525,638 | 100% |
Such an interesting and educative post,thanks for educating us.
author | adisa1502 |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180410t202048559z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 20:21:00 |
last_update | 2018-04-10 20:21:00 |
depth | 1 |
children | 0 |
last_payout | 2018-04-17 20:21:00 |
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 | 63 |
author_reputation | 55,609,363,105 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,369,410 |
net_rshares | 260,133,863 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
adisa1502 | 0 | 260,133,863 | 100% |
Kenapa bisa di coret itu
author | afridayanti | ||||||
---|---|---|---|---|---|---|---|
permlink | re-steemitblog-2018410t233344159z | ||||||
category | steem | ||||||
json_metadata | {"tags":["steem","steemd","steemdev","steemitdev","witness-category"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-04-10 16:33:48 | ||||||
last_update | 2018-04-10 16:33:48 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-04-17 16:33:48 | ||||||
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 | 24 | ||||||
author_reputation | 714,016,825,086 | ||||||
root_title | "Exploring Steem Scalability" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 49,337,532 | ||||||
net_rshares | 1,716,924,972 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
baninduana | 0 | 1,194,975,281 | 100% | ||
afridayanti | 0 | 521,949,691 | 100% |
Wow, interesting Posted using [Partiko Android](https://partiko.app/referral/airdropgod)
author | airdropgod |
---|---|
permlink | airdropgod-re-steemitblog-exploring-steem-scalability-20190313t110856825z |
category | steem |
json_metadata | {"app":"partiko","client":"android"} |
created | 2019-03-13 11:08:57 |
last_update | 2019-03-13 11:08:57 |
depth | 1 |
children | 0 |
last_payout | 2019-03-20 11:08:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.016 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 89 |
author_reputation | 120,681,431,056 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,217,537 |
net_rshares | 32,922,704,253 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
airdropgod | 0 | 32,922,704,253 | 100% |
thank you for the information.
author | akkann |
---|---|
permlink | re-steemitblog-20211220t112454240z |
category | steem |
json_metadata | {"tags":["steem","steemd","steemdev","steemitdev","witness-category"],"app":"ecency/3.0.20-vision","format":"markdown+html"} |
created | 2021-12-20 08:24:54 |
last_update | 2021-12-20 08:24:54 |
depth | 1 |
children | 0 |
last_payout | 2021-12-27 08:24:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 30 |
author_reputation | 93,970,172,457,316 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 108,702,455 |
net_rshares | 0 |

author | alwihidayatilyas |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180411t071443377z |
category | steem |
json_metadata | {"tags":["steem"],"image":["https://steemitimages.com/DQmczcB4z3ihJ2WxNVwRpYqhwR7evHpEUeppfYabeNQQfZw/Like%20Post.JPG"],"app":"steemit/0.1"} |
created | 2018-04-11 07:14:45 |
last_update | 2018-04-11 07:14:45 |
depth | 1 |
children | 0 |
last_payout | 2018-04-18 07:14:45 |
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 | 107 |
author_reputation | -13,428,687,568 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,443,937 |
net_rshares | 0 |
I would rather have a post on exploring steem development...
author | anarchyhasnogods |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180410t162543193z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 16:25:42 |
last_update | 2018-04-10 16:25:42 |
depth | 1 |
children | 0 |
last_payout | 2018-04-17 16:25:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.452 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 60 |
author_reputation | 61,353,529,646,265 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,336,340 |
net_rshares | 323,763,495,658 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
anarchyhasnogods | 0 | 315,171,743,943 | 100% | ||
theironfelix | 0 | 2,020,326,248 | 100% | ||
fcalabuig | 0 | 6,160,153,504 | 20% | ||
powerpaul | 0 | 411,271,963 | 100% |
Bitcoin is inefficient by choice. Feature not a bug.... and it does scale. Duh.
author | andrejcibik |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180410t181807162z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 18:17:48 |
last_update | 2018-04-10 18:17:48 |
depth | 1 |
children | 0 |
last_payout | 2018-04-17 18:17:48 |
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 | 79 |
author_reputation | 30,106,021,348,653 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,353,097 |
net_rshares | 0 |
This is a great explanation, especially for those a bit newer to Steem/Steemit. I have a couple of questions that the devs may be able to help with. What is the current size of the state file of a full node minus the account history? and what about for a node running only the account history plugin? In the current Steemit backend, is the Jussi (reverse proxy server) accepting requests, and redirecting them to RPC nodes running different plugins if they're not in the cache, or is it using the SBDS database for some things already?
author | andybets |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180410t170209842z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 17:02:09 |
last_update | 2018-04-10 17:02:48 |
depth | 1 |
children | 4 |
last_payout | 2018-04-17 17:02:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.678 HBD |
curator_payout_value | 0.176 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 537 |
author_reputation | 15,189,090,569,005 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,341,846 |
net_rshares | 413,874,840,068 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
acidyo | 0 | 170,888,014,402 | 1% | ||
timcliff | 0 | 34,638,457,715 | 6% | ||
lenatramper | 0 | 1,400,329,430 | 1% | ||
triverse | 0 | 266,892,762 | 1% | ||
dhimmel | 0 | 199,964,027,834 | 62% | ||
kingxerxesdex | 0 | 98,893,684 | 0.4% | ||
xymaros | 0 | 70,640,175 | 40% | ||
j1v | 0 | 6,547,584,066 | 100% |
Hi @andybets - thanks for your question. Currently a node with only account history uses 204GB for the state file while a node with everything except for account history uses 190GB. Today, Jussi (api.steemit.com) is being used to split requests to the different clusters of nodes if they are not already cached. In the future, many of these requests will be split off to SBDS (for account history) and Hivemind (for tags/follows). RocksDB for account history (and later probably tags/follows) will be an alternate option. Either configuration can be forwarded through Jussi without the frontend (Condenser) needing to be aware of the change.
author | justinw |
---|---|
permlink | re-andybets-re-steemitblog-exploring-steem-scalability-20180410t183618266z |
category | steem |
json_metadata | {"tags":["steem"],"users":["andybets"],"app":"steemit/0.1"} |
created | 2018-04-10 18:36:18 |
last_update | 2018-04-10 18:36:18 |
depth | 2 |
children | 3 |
last_payout | 2018-04-17 18:36:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 3.900 HBD |
curator_payout_value | 1.061 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 641 |
author_reputation | 15,502,058,309,908 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,355,725 |
net_rshares | 1,109,306,470,040 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ausbitbank | 0 | 84,969,976,620 | 1% | ||
dragosroua | 0 | 46,029,165,305 | 10% | ||
andybets | 0 | 22,515,637,464 | 100% | ||
drakos | 0 | 946,622,385,741 | 100% | ||
bobinson | 0 | 2,229,259,244 | 11% | ||
j1v | 0 | 6,413,274,649 | 100% | ||
rogeriomlima | 0 | 526,771,017 | 100% |
Thanks very much - that's really useful!
author | andybets |
---|---|
permlink | re-justinw-re-andybets-re-steemitblog-exploring-steem-scalability-20180410t183836702z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 18:38:36 |
last_update | 2018-04-10 18:38:36 |
depth | 3 |
children | 0 |
last_payout | 2018-04-17 18:38:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 40 |
author_reputation | 15,189,090,569,005 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,356,050 |
net_rshares | 0 |
You rock, Justin. I hope you're not working too hard and are positioning yourself to get that vacation we talked about in Lisbon. Thanks for all the work you and the team are putting in and the results we're all enjoying, being part of the most performant blockchain on the planet.
author | lukestokes |
---|---|
permlink | re-justinw-re-andybets-re-steemitblog-exploring-steem-scalability-20180410t205806586z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 20:58:06 |
last_update | 2018-04-10 20:58:06 |
depth | 3 |
children | 1 |
last_payout | 2018-04-17 20:58:06 |
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 | 281 |
author_reputation | 556,640,380,599,219 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,373,756 |
net_rshares | 0 |
posting is very meaningful to understand, I really like @steemitblog
author | ann07 | ||||||
---|---|---|---|---|---|---|---|
permlink | re-steemitblog-2018411t88585z | ||||||
category | steem | ||||||
json_metadata | {"tags":["steem","steemd","steemdev","steemitdev","witness-category"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-04-11 01:08:12 | ||||||
last_update | 2018-04-11 01:08:12 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-04-18 01:08: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 | 68 | ||||||
author_reputation | 602,304,282,084 | ||||||
root_title | "Exploring Steem Scalability" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 49,400,082 | ||||||
net_rshares | 0 |
Congratulations @steemitblog! Your post was mentioned in the [Steemit Hit Parade](https://steemit.com/hit-parade/@arcange/daily-hit-parade-20180410) in the following categories: * Comments - Ranked 8 with 157 comments * Pending payout - Ranked 4 with $ 438,14
author | arcange |
---|---|
permlink | re-exploring-steem-scalability-20180410t180926000z |
category | steem |
json_metadata | "" |
created | 2018-04-11 16:52:00 |
last_update | 2018-04-11 16:52:00 |
depth | 1 |
children | 0 |
last_payout | 2018-04-18 16:52:00 |
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 | 1,146,633,779,972,293 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,527,382 |
net_rshares | 0 |
WARNING - The message you received from @tastetwist is a CONFIRMED SCAM! DO NOT FOLLOW any instruction and DO NOT CLICK on any link in the comment! For more information, read this post: https://steemit.com/steemit/@arcange/phishing-site-reported-autosteemer-dot-com https://steemit.com/steemit/@arcange/phishing-site-reported-autosteemer-dot-club https://steemit.com/steemit/@arcange/phishing-site-reported-autosteem-dot-info Please consider to upvote this warning or to [vote for my witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=arcange&approve=1) if you find my work to protect you and the platform valuable. Your support is really appreciated!
author | arcange |
---|---|
permlink | re-exploring-steem-scalability-20180412t104856000z |
category | steem |
json_metadata | {"image":["http://i.cubeupload.com/d1Dr28.png"]} |
created | 2018-04-12 08:48:54 |
last_update | 2018-04-12 08:48:54 |
depth | 1 |
children | 0 |
last_payout | 2018-04-19 08:48:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 677 |
author_reputation | 1,146,633,779,972,293 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,638,628 |
net_rshares | 0 |
Can you guys please *STOP CREATING NEW ACCOUNTS* until you can properly mitigate the exploiters that are creating huge botnets and siphoning rewards from the pool. You want to talk about scaling and resources? Most of the resource problems we have around here are directly related to exploits/spammers...problems that lie directly at the feet of STINC, via ~~recent~~ the last few hard forks and account creation. Correct the bad decisions you’ve made and are making that have caused/are causing most of the current problems.
author | ats-david |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180411t005457232z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-11 00:55:00 |
last_update | 2018-04-11 04:25:21 |
depth | 1 |
children | 34 |
last_payout | 2018-04-18 00:55:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 6.722 HBD |
curator_payout_value | 0.678 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 529 |
author_reputation | 324,017,334,201,433 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,398,604 |
net_rshares | 1,655,809,196,688 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bacchist | 0 | 8,229,425,314 | 50% | ||
arcange | 0 | 48,738,431,323 | 10% | ||
raphaelle | 0 | 5,735,975,243 | 10% | ||
anonymint | 0 | 13,005,761,409 | 100% | ||
maniacbuilder | 0 | 293,952,422 | 100% | ||
ats-david | 0 | 862,656,725,161 | 50% | ||
dan-bn | 0 | 372,480,891,800 | 50% | ||
ocrdu | 0 | 4,547,920,600 | 100% | ||
r0nd0n | 0 | 28,553,216,223 | 100% | ||
anthonyadavisii | 0 | 3,339,898,678 | 100% | ||
mobbs | 0 | 56,304,631,110 | 20% | ||
guiltyparties | 0 | 29,054,523,165 | 100% | ||
sircork | 0 | 9,072,587,351 | 100% | ||
drakos | 0 | 195,135,845,027 | 20% | ||
dwaeji-aizelle | 0 | 3,978,806,239 | 100% | ||
jomeszaros | 0 | 3,936,621,567 | 14% | ||
jboitnott | 0 | 0 | 100% | ||
jenncreates | 0 | 601,285,267 | 100% | ||
kabir88 | 0 | 3,898,200,834 | 23% | ||
ancapbarbie | 0 | 0 | 25% | ||
bellekiss-31 | 0 | 0 | 0% | ||
bidbuddy | 0 | 612,490,046 | 100% | ||
steeminglyso | 0 | 1,009,113,398 | 50% | ||
toastytrader | 0 | 600,243,458 | 100% | ||
ochoagjerson | 0 | 578,795,888 | 100% | ||
fefe75 | 0 | 584,328,446 | 100% | ||
ghostdad | 0 | 400,595,544 | 100% | ||
empir3 | 0 | 611,590,085 | 100% | ||
cmplxty | 0 | 611,587,049 | 100% | ||
whizzywig | 0 | 617,877,086 | 100% | ||
pattoo-patence | 0 | 617,876,955 | 100% |
Nice comment
author | alomgir0101 |
---|---|
permlink | re-ats-david-re-steemitblog-exploring-steem-scalability-20180411t054700628z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-11 05:46:57 |
last_update | 2018-04-11 05:46:57 |
depth | 2 |
children | 0 |
last_payout | 2018-04-18 05:46: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 | 12 |
author_reputation | -100,999,983,090 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,433,135 |
net_rshares | 0 |
Thanks for the feedback. We understand this is an important topic for many users and will be addressing non-scalability related issues in future posts.
author | andrarchy |
---|---|
permlink | re-ats-david-re-steemitblog-exploring-steem-scalability-20180411t162345523z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-11 16:23:45 |
last_update | 2018-04-11 16:23:45 |
depth | 2 |
children | 4 |
last_payout | 2018-04-18 16:23:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.032 HBD |
curator_payout_value | 0.008 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 151 |
author_reputation | 230,168,201,522,782 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,523,119 |
net_rshares | 9,117,002,277 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
timcliff | 0 | 9,117,002,277 | 1% |
Great. Looking forward to it. But for the record: This *is* a scalability-related issue.
author | ats-david |
---|---|
permlink | re-andrarchy-re-ats-david-re-steemitblog-exploring-steem-scalability-20180411t164111057z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-11 16:41:12 |
last_update | 2018-04-11 16:41:12 |
depth | 3 |
children | 1 |
last_payout | 2018-04-18 16:41:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.109 HBD |
curator_payout_value | 0.032 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 89 |
author_reputation | 324,017,334,201,433 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,525,738 |
net_rshares | 31,371,108,627 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
r0nd0n | 0 | 28,092,680,477 | 100% | ||
anthonyadavisii | 0 | 3,278,428,150 | 100% |
So it is more important to make the system more streamline for the bots? Isn't that like removing part of your brain to make room for the tumor? I really don't understand this platform works.
author | ghostdad |
---|---|
permlink | re-andrarchy-re-ats-david-re-steemitblog-exploring-steem-scalability-20180411t182235862z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-11 18:22:39 |
last_update | 2018-04-11 18:22:39 |
depth | 3 |
children | 0 |
last_payout | 2018-04-18 18:22:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.029 HBD |
curator_payout_value | 0.005 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 191 |
author_reputation | 387,185,934 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,540,417 |
net_rshares | 7,823,938,661 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sircork | 0 | 7,258,069,881 | 100% | ||
ijatz | 0 | 565,868,780 | 100% |
Thanks for sharing! ;)
author | tuck-fheman |
---|---|
permlink | re-andrarchy-re-ats-david-re-steemitblog-exploring-steem-scalability-20180412t103942800z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-12 10:39:45 |
last_update | 2018-04-12 10:39:45 |
depth | 3 |
children | 0 |
last_payout | 2018-04-19 10:39:45 |
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 | 22 |
author_reputation | 345,778,813,561,569 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,652,289 |
net_rshares | 0 |
It's called load testing ;)
author | andybets |
---|---|
permlink | re-ats-david-re-steemitblog-exploring-steem-scalability-20180411t070055230z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-11 07:00:54 |
last_update | 2018-04-11 07:00:54 |
depth | 2 |
children | 0 |
last_payout | 2018-04-18 07:00:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 27 |
author_reputation | 15,189,090,569,005 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,442,134 |
net_rshares | 0 |
Yea, agreed too
author | bluewinter |
---|---|
permlink | re-ats-david-re-steemitblog-exploring-steem-scalability-20180413t012508944z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-13 01:25:12 |
last_update | 2018-04-13 01:25:12 |
depth | 2 |
children | 0 |
last_payout | 2018-04-20 01:25:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.134 HBD |
curator_payout_value | 0.042 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 15 |
author_reputation | 4,454,274,369,005 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,767,746 |
net_rshares | 37,934,804,306 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
angelababy | 0 | 37,934,804,306 | 100% |
https://cdn.discordapp.com/attachments/364872455774535680/433396586387603486/unknown.png
author | inertia |
---|---|
permlink | re-ats-david-re-steemitblog-exploring-steem-scalability-20180411t055637367z |
category | steem |
json_metadata | {"tags":["steem"],"image":["https://cdn.discordapp.com/attachments/364872455774535680/433396586387603486/unknown.png"],"app":"steemit/0.1"} |
created | 2018-04-11 05:56:39 |
last_update | 2018-04-11 05:56:39 |
depth | 2 |
children | 2 |
last_payout | 2018-04-18 05:56:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.707 HBD |
curator_payout_value | 0.002 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 88 |
author_reputation | 346,568,901,399,561 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,434,305 |
net_rshares | 157,642,397,694 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
inertia | 0 | 1,845,211,442,212 | 100% | ||
ats-david | 0 | -1,734,206,818,623 | -100% | ||
dragosroua | 0 | 46,029,165,305 | 10% | ||
zpecoin | 0 | 0 | 0% | ||
pattoo-patence | 0 | 608,608,800 | 100% |

author | ats-david |
---|---|
permlink | re-inertia-re-ats-david-re-steemitblog-exploring-steem-scalability-20180412t170127137z |
category | steem |
json_metadata | {"tags":["steem"],"image":["https://steemitimages.com/DQmTYm3NTH1PKYYTvy9VPhYyyAEGxNth997S7iriE8U6JNS/yo_dawg_inertia.jpg"],"app":"steemit/0.1"} |
created | 2018-04-12 17:01:30 |
last_update | 2018-04-12 17:01:30 |
depth | 3 |
children | 1 |
last_payout | 2018-04-19 17:01:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 6.524 HBD |
curator_payout_value | 1.869 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 117 |
author_reputation | 324,017,334,201,433 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,707,531 |
net_rshares | 1,835,985,385,001 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
inertia | 0 | 1,835,985,385,001 | 100% |
Yep, as someone that has been downvoted to negatives by on abusive account holder: @haejin I would say there is a massive loophole that needs to be fixed before @steemitblog can be taken seriously
author | kabir88 |
---|---|
permlink | re-ats-david-re-steemitblog-exploring-steem-scalability-20180411t022712347z |
category | steem |
json_metadata | {"tags":["steem"],"users":["haejin","steemitblog"],"app":"steemit/0.1"} |
created | 2018-04-11 02:27:15 |
last_update | 2018-04-11 02:27:15 |
depth | 2 |
children | 1 |
last_payout | 2018-04-18 02:27:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.097 HBD |
curator_payout_value | 0.029 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 197 |
author_reputation | 9,762,676,591,926 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,409,157 |
net_rshares | 28,359,668,728 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sircork | 0 | 8,505,550,642 | 100% | ||
rashley01 | 0 | -441,394,681 | -100% | ||
kabir88 | 0 | 12,169,978,986 | 100% | ||
livvu | 0 | 8,125,533,781 | 100% |
Yeah, I can see how competing merchants or businesses would get into silly downvoting wars and whoever has the more goons wins. And then there are the trolls...
author | eyvindur |
---|---|
permlink | re-kabir88-re-ats-david-re-steemitblog-exploring-steem-scalability-20180411t225705964z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-11 22:57:06 |
last_update | 2018-04-11 22:57:06 |
depth | 3 |
children | 0 |
last_payout | 2018-04-18 22:57:06 |
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 | 161 |
author_reputation | 30,253,880 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,571,608 |
net_rshares | 0 |
bad/greedy guys will be bad/greedy and you asking wont stop them lol its kinda what they do.
author | maniacbuilder |
---|---|
permlink | re-ats-david-re-steemitblog-exploring-steem-scalability-20180411t142304863z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-11 14:23:06 |
last_update | 2018-04-11 14:23:06 |
depth | 2 |
children | 1 |
last_payout | 2018-04-18 14:23:06 |
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 | 92 |
author_reputation | 6,292,603,632 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,503,417 |
net_rshares | 0 |
criminals break laws it dose not mean we avoid arresting them, something should be done about the abuse of the upvote system
author | bell2bell |
---|---|
permlink | re-maniacbuilder-re-ats-david-re-steemitblog-exploring-steem-scalability-20180412t044808300z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-12 04:48:15 |
last_update | 2018-04-12 04:48:15 |
depth | 3 |
children | 0 |
last_payout | 2018-04-19 04:48: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 | 124 |
author_reputation | 70,133,527,965 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,609,250 |
net_rshares | 0 |
author | murtaza78 |
---|---|
permlink | re-ats-david-re-steemitblog-exploring-steem-scalability-20180411t143602368z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-11 14:36:03 |
last_update | 2018-04-11 14:36:03 |
depth | 2 |
children | 0 |
last_payout | 2018-04-18 14:36: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 | 31 |
author_reputation | 546,496,403,284 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,505,720 |
net_rshares | -53,892,205,585 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ats-david | 0 | -35,573,473,202 | -2% | ||
dan-bn | 0 | -18,318,732,383 | -2% |
This problem was already [brought up to light recently](https://steemit.com/steemit/@themarkymark/steemit-creates-accounts-for-scammers-and-nobody-else#@ausbitbank/re-themarkymark-steemit-creates-accounts-for-scammers-and-nobody-else-20180408t230249886z), I believe that blocking new accounts creation is a poor decision, it would just throw out the baby with the bathwater. Those who are in charge of accounts approval are making a terrible job allowing creating entire botnets and not letting real users in. **They should be relieved from that task**. Maybe there should be a new mechanism of approval. Maybe it's better to make a new user create a post (like, obligatory introduction post, for instance) instead of making them wait **months** for approval. Then something like committee from known and established users would (cu)rate it, and make the decision if the user should be approved. It's a win-win for both parties. One of the STEEM foundations is Proof of Brain, right? That's how it's done, no spammer can automate the process and those who can't put two words together will also be kept out. It's not like I'm hating all those Indonesian guys, writing about how happy are they to be on steemit with poor grammar and everything else, but they are not bringing any value anyway. There will probably be need for multiple groups for handling multiple languages, but that's another topic altogether.
author | nameless-berk |
---|---|
permlink | re-ats-david-re-steemitblog-exploring-steem-scalability-20180411t224001020z |
category | steem |
json_metadata | {"tags":["steem"],"community":"busy","app":"busy/2.4.0"} |
created | 2018-04-11 22:40:00 |
last_update | 2018-04-11 22:40:00 |
depth | 2 |
children | 2 |
last_payout | 2018-04-18 22:40:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.599 HBD |
curator_payout_value | 0.013 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,410 |
author_reputation | 7,902,785,300,195 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,570,088 |
net_rshares | 135,328,594,838 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sircork | 0 | 8,845,772,667 | 100% | ||
capatazche | 0 | 5,854,447,645 | 100% | ||
instatrashed | 0 | 7,581,141,177 | 38% | ||
ijatz | 0 | 587,280,031 | 100% | ||
nameless-berk | 0 | 111,917,401,204 | 100% | ||
petervroom | 0 | 542,552,114 | 100% |
>“I believe that blocking new accounts creation is a poor decision...” I’m not saying *all* account creation needs to be stopped. I’m only asking that those created via STINC’s current process be halted. There is an obvious, major malfunction with their system that needs to be addressed. This is akin to what governments typically do. They undertake certain tasks/functions, they perform these tasks horribly, resulting in many undesired but predictable consequences, then they propose “solutions” for the very problems that they have in fact created. And all the while, everyone else (in this case users, potential users, and investors) ends up paying the price for their inefficiency and complete ineptitude. Accounts can still be created. But it’s plainly obvious that whatever methods STINC is using are inadequate and are contributing to the creation of large bot-nets that strain the current resources and siphon rewards from the shared pool. The solution is to shut down the failing system in place until it can be corrected so that further damage is not done. Compounding the errors/damage when it can be easily avoided is irresponsible. It’s time that STINC acknowledges their role in the mess that *they* have created...and then they ought to *FIX IT.*
author | ats-david |
---|---|
permlink | re-nameless-berk-re-ats-david-re-steemitblog-exploring-steem-scalability-20180412t021019959z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-12 02:10:24 |
last_update | 2018-04-12 02:10:24 |
depth | 3 |
children | 1 |
last_payout | 2018-04-19 02:10:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.229 HBD |
curator_payout_value | 0.070 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,270 |
author_reputation | 324,017,334,201,433 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,591,613 |
net_rshares | 66,184,537,987 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sircork | 0 | 8,732,365,326 | 100% | ||
nameless-berk | 0 | 57,452,172,661 | 50% |
I don't personally know much about any of these issues, yet, but the comment here by @ats-david certainly seems like it's worthy of a reply at least. Yes?
author | oleblueeye |
---|---|
permlink | re-ats-david-re-steemitblog-exploring-steem-scalability-20180411t032729433z |
category | steem |
json_metadata | {"tags":["steem"],"users":["ats-david"],"app":"steemit/0.1"} |
created | 2018-04-11 03:27:36 |
last_update | 2018-04-16 02:36:21 |
depth | 2 |
children | 5 |
last_payout | 2018-04-18 03:27:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 156 |
author_reputation | 154,445,788,718 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,416,496 |
net_rshares | 0 |
George Carlin explained [this](https://steemit.com/steemit/@anonymint/re-skypilot-re-themarkymark-steemit-creates-accounts-for-scammers-and-nobody-else-20180413t020245452z) well some years ago, [“it will never, ever, ever be fixed, it’s never going to get any better, don’t look for it, be happy with the crumbs you got, because the owners of this place don’t want that …”](https://youtu.be/l-o_XCDTyB4?t=355).
author | anonymint |
---|---|
permlink | re-oleblueeye-re-ats-david-re-steemitblog-exploring-steem-scalability-20180413t024838683z |
category | steem |
json_metadata | {"tags":["steem"],"links":["https://steemit.com/steemit/@anonymint/re-skypilot-re-themarkymark-steemit-creates-accounts-for-scammers-and-nobody-else-20180413t020245452z","https://youtu.be/l-o_XCDTyB4?t=355"],"app":"steemit/0.1"} |
created | 2018-04-13 02:48:33 |
last_update | 2018-04-13 02:48:33 |
depth | 3 |
children | 0 |
last_payout | 2018-04-20 02:48:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.053 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 410 |
author_reputation | 28,085,935,540,836 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,777,837 |
net_rshares | 11,354,236,151 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
anonymint | 0 | 11,354,236,151 | 100% |
I am new here, but I seen a report somewhere that like 90% of the users are Bots, so he has more than a point if that is true, it seems they have co-opted this platform to enrich themselves.
author | ghostdad |
---|---|
permlink | re-oleblueeye-re-ats-david-re-steemitblog-exploring-steem-scalability-20180411t181825894z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-11 18:18:30 |
last_update | 2018-04-11 18:18:30 |
depth | 3 |
children | 2 |
last_payout | 2018-04-18 18:18: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 | 190 |
author_reputation | 387,185,934 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,539,865 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sircork | 0 | 0 | 100% |
Can we please understand each other we have different views and reasons.
author | jillann08 |
---|---|
permlink | re-oleblueeye-re-ats-david-re-steemitblog-exploring-steem-scalability-20180411t033146270z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-11 03:32:27 |
last_update | 2018-04-11 03:32:27 |
depth | 3 |
children | 0 |
last_payout | 2018-04-18 03:32: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 | 72 |
author_reputation | 480,551,341,296 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,417,063 |
net_rshares | 0 |
> via recent hard forks Not so recent, the last one was about a year ago, but I know what you mean.
author | smooth |
---|---|
permlink | re-ats-david-re-steemitblog-exploring-steem-scalability-20180411t034314400z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-11 03:43:15 |
last_update | 2018-04-11 03:43:15 |
depth | 2 |
children | 6 |
last_payout | 2018-04-18 03:43:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.065 HBD |
curator_payout_value | 0.018 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 100 |
author_reputation | 253,602,537,834,068 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,418,321 |
net_rshares | 19,032,348,468 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tuck-fheman | 0 | 10,867,019,852 | 4% | ||
sircork | 0 | 8,165,328,616 | 100% |
Democracy [working hard behind the veil of non-objectivity ~~for us~~](https://steemit.com/steem/@anonymint/re-oleblueeye-re-ats-david-re-steemitblog-exploring-steem-scalability-20180413t024838683z).
author | anonymint |
---|---|
permlink | re-smooth-re-ats-david-re-steemitblog-exploring-steem-scalability-20180413t025402897z |
category | steem |
json_metadata | {"tags":["steem"],"links":["https://steemit.com/steem/@anonymint/re-oleblueeye-re-ats-david-re-steemitblog-exploring-steem-scalability-20180413t024838683z"],"app":"steemit/0.1"} |
created | 2018-04-13 02:53:57 |
last_update | 2018-04-13 02:53:57 |
depth | 3 |
children | 0 |
last_payout | 2018-04-20 02:53:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.134 HBD |
curator_payout_value | 0.044 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 199 |
author_reputation | 28,085,935,540,836 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,778,482 |
net_rshares | 38,253,051,372 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
anonymint | 0 | 38,253,051,372 | 100% |
Yeah, that’s correct. I edited it. And it should also be noted that they claimed to have HF20 almost ready to go when HF19 was implemented in early June last year. Ten months later... For reference: https://steemit.com/steemit/@steemitblog/proposing-hardfork-0-20-0-velocity
author | ats-david |
---|---|
permlink | re-smooth-re-ats-david-re-steemitblog-exploring-steem-scalability-20180411t042835222z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1","links":["https://steemit.com/steemit/@steemitblog/proposing-hardfork-0-20-0-velocity"]} |
created | 2018-04-11 04:28:36 |
last_update | 2018-04-11 04:31:57 |
depth | 3 |
children | 4 |
last_payout | 2018-04-18 04:28:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.042 HBD |
curator_payout_value | 0.010 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 278 |
author_reputation | 324,017,334,201,433 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,423,931 |
net_rshares | 11,988,542,841 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sircork | 0 | 8,051,921,274 | 100% | ||
jomeszaros | 0 | 3,936,621,567 | 14% |
couldn't agree more sir
author | toastytrader |
---|---|
permlink | re-ats-david-re-steemitblog-exploring-steem-scalability-20180411t021401236z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-11 02:14:00 |
last_update | 2018-04-11 02:14:00 |
depth | 2 |
children | 0 |
last_payout | 2018-04-18 02:14:00 |
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 | 23 |
author_reputation | 3,884,730,065 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,407,531 |
net_rshares | 0 |
<blockquote>until you can properly mitigate the exploiters</blockquote> This is like asking a fat person to mitigate other fat peoples food intake ... or something. ¯|_(ツ)_/¯
author | tuck-fheman |
---|---|
permlink | re-ats-david-re-steemitblog-exploring-steem-scalability-20180412t104634768z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-12 10:46:36 |
last_update | 2018-04-12 10:46:36 |
depth | 2 |
children | 0 |
last_payout | 2018-04-19 10:46:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.070 HBD |
curator_payout_value | 0.018 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 175 |
author_reputation | 345,778,813,561,569 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,653,190 |
net_rshares | 19,952,820,108 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
anonymint | 0 | 11,560,676,808 | 100% | ||
sircork | 0 | 8,392,143,300 | 100% |
Kenapa begitu
author | azimarliona | ||||||
---|---|---|---|---|---|---|---|
permlink | re-steemitblog-2018411t1447175z | ||||||
category | steem | ||||||
json_metadata | {"tags":["steem","steemd","steemdev","steemitdev","witness-category"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-04-10 18:44:15 | ||||||
last_update | 2018-04-10 18:44:15 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-04-17 18:44: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 | 13 | ||||||
author_reputation | 63,614,457,385 | ||||||
root_title | "Exploring Steem Scalability" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 49,356,817 | ||||||
net_rshares | 0 |
Good to know steemit.inc is scaling up quite nicely.I want to say a big thank you to all the witnesses investing their time and especially money on hardwares to power up the platform to unprecedented heights .You guys are the real MVPs.
author | badmusgreene |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180410t180302428z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 18:03:06 |
last_update | 2018-04-10 18:03:06 |
depth | 1 |
children | 0 |
last_payout | 2018-04-17 18:03:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.049 HBD |
curator_payout_value | 0.010 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 239 |
author_reputation | 58,321,198,302,482 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,350,899 |
net_rshares | 14,052,401,069 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
badmusgreene | 0 | 13,534,817,918 | 100% | ||
rogeriomlima | 0 | 517,583,151 | 100% |
good job friends success continues
author | basyir01 |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180410t161438466z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 16:14:45 |
last_update | 2018-04-10 16:14:45 |
depth | 1 |
children | 0 |
last_payout | 2018-04-17 16:14:45 |
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 | 34 |
author_reputation | 15,516,140,782,208 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,334,793 |
net_rshares | 0 |
this is very interesting to me I just am not versed enough to understand it all, or even like a third of it
author | bell2bell |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180412t044431912z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-12 04:44:39 |
last_update | 2018-04-12 04:44:39 |
depth | 1 |
children | 0 |
last_payout | 2018-04-19 04:44: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 | 107 |
author_reputation | 70,133,527,965 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,608,788 |
net_rshares | 0 |
great info
author | bitcointravel |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180410t191625158z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 19:16:30 |
last_update | 2018-04-10 19:16:30 |
depth | 1 |
children | 0 |
last_payout | 2018-04-17 19:16:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.435 HBD |
curator_payout_value | 0.007 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 10 |
author_reputation | 1,242,188,053,672 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,361,245 |
net_rshares | 99,914,795,063 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bitcointravel | 0 | 99,914,795,063 | 100% |
A solid post and any performance gains are very much appreciated. As we scale it's good to know the Steem Blockchain won't be our bottleneck. And if these changes result in more stable nodes, can we expect higher availability? Or do we need to seriously consider running our own node?
author | blockdeals |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180412t104009583z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-12 10:40:12 |
last_update | 2018-04-12 10:40:12 |
depth | 1 |
children | 0 |
last_payout | 2018-04-19 10:40: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 | 289 |
author_reputation | 6,931,840,019,462 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,652,342 |
net_rshares | 0 |
Steem full node is essentially a data-mart with a task to low-latency response to a fixed set of queries. I believe the industry-best solution to this problem for now is a RDBMS cluster with a Redis cache. Why don't you use it?
author | bronevik |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180521t015237178z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-05-21 01:52:36 |
last_update | 2018-05-21 01:52:36 |
depth | 1 |
children | 0 |
last_payout | 2018-05-28 01:52:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 2.308 HBD |
curator_payout_value | 0.005 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 227 |
author_reputation | 12,260,156,653,305 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 56,801,973 |
net_rshares | 531,978,469,749 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bronevik | 0 | 531,978,469,749 | 100% |
I love how you guys/girls (steemit dev team) are paving the way with both eyes wide open; always alert and never taking anything for granted. Well done @steemitblog Your example inspires me to replicate a similar model for the energy industry.
author | buzz.lightyear |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180410t233127421z |
category | steem |
json_metadata | {"tags":["steem"],"users":["steemitblog"],"app":"steemit/0.1"} |
created | 2018-04-10 23:31:30 |
last_update | 2018-04-10 23:31:30 |
depth | 1 |
children | 0 |
last_payout | 2018-04-17 23:31: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 | 244 |
author_reputation | 7,590,999,387,541 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,390,221 |
net_rshares | 0 |
Thanks for article...
author | cereke |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180410t185759107z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 18:56:51 |
last_update | 2018-04-10 18:56:51 |
depth | 1 |
children | 0 |
last_payout | 2018-04-17 18:56:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 21 |
author_reputation | 272,246,148 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,358,608 |
net_rshares | 451,050,445 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cereke | 0 | 451,050,445 | 100% |
Funny, it reminds me the good old Steem wars!
author | chrisaiki |
---|---|
permlink | r67qln |
category | steem |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2022-01-24 11:58:36 |
last_update | 2022-01-24 11:58:36 |
depth | 1 |
children | 0 |
last_payout | 2022-01-31 11:58:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 45 |
author_reputation | 56,817,601,019,412 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 109,807,715 |
net_rshares | 0 |
i am a new steem user and all the complexity is crazy. I look forward to learning and understanding more about this. I feel like this is helping me understand the block chain a lot more than other avenues.
author | cmplxty | ||||||
---|---|---|---|---|---|---|---|
permlink | re-steemitblog-2018412t153611104z | ||||||
category | steem | ||||||
json_metadata | {"tags":["steem","steemd","steemdev","steemitdev","witness-category"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-04-12 19:36:12 | ||||||
last_update | 2018-04-12 19:36:12 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-04-19 19:36: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 | 205 | ||||||
author_reputation | 783,785,300,628,314 | ||||||
root_title | "Exploring Steem Scalability" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 49,728,167 | ||||||
net_rshares | 0 |
how do we fix the bugs from spammers , creating hundreds of account, posting thousands of the same words of the article.
author | cortexx |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180411t040939326z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-11 04:15:42 |
last_update | 2018-04-11 04:15:42 |
depth | 1 |
children | 0 |
last_payout | 2018-04-18 04:15:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.885 HBD |
curator_payout_value | 0.100 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 120 |
author_reputation | 4,310,891,351,252 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,422,412 |
net_rshares | 219,813,178,512 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
josteem | 0 | 2,932,259,809 | 2% | ||
cortexx | 0 | 216,290,737,201 | 100% | ||
cmplxty | 0 | 590,181,502 | 100% |
This is very cool news. I'm glad that STEEM, thanks to you, is getting even better. Good luck to you and Love.
author | cranium |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180411t134553971z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-11 13:45:51 |
last_update | 2018-04-11 13:45:51 |
depth | 1 |
children | 0 |
last_payout | 2018-04-18 13:45: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 | 110 |
author_reputation | 448,523,569,501,385 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,497,149 |
net_rshares | 0 |
https://steemit.com/music/@cryptoharoun/xenon-phoenix-kidd-kayos-that-limit-prod-venza-bass-boosted
author | cryptoharoun |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180410t203045955z |
category | steem |
json_metadata | {"tags":["steem"],"links":["https://steemit.com/music/@cryptoharoun/xenon-phoenix-kidd-kayos-that-limit-prod-venza-bass-boosted"],"app":"steemit/0.1"} |
created | 2018-04-10 20:30:45 |
last_update | 2018-04-10 20:30:45 |
depth | 1 |
children | 0 |
last_payout | 2018-04-17 20:30:45 |
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 | 99 |
author_reputation | 3,758,680,668 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,370,576 |
net_rshares | -12,898,874,712 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
celsius100 | 0 | -12,898,874,712 | -100% |
Hello. Advertise your project on https://cryptopiece.com/ One ad-block costs $9 and it will be live until November 2021 minimum. 
author | cryptopiece.com |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180420t172616391z |
category | steem |
json_metadata | {"tags":["steem"],"image":["https://steemitimages.com/DQmQzN6rq6Bm5BCzctX6rLsxwYrKgxPkThCkjLXrPEbfJtY/Crypto%20Piece%20compact.png"],"links":["https://cryptopiece.com/"],"app":"steemit/0.1"} |
created | 2018-04-20 17:26:15 |
last_update | 2018-04-20 17:26:15 |
depth | 1 |
children | 0 |
last_payout | 2018-04-27 17:26: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 | 264 |
author_reputation | -89,280,383,091 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 51,162,838 |
net_rshares | 0 |
waw
author | danur |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180410t161503641z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 16:15:15 |
last_update | 2018-04-11 03:47:24 |
depth | 1 |
children | 2 |
last_payout | 2018-04-17 16:15: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 | 3 |
author_reputation | 303,093,225,798 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,334,854 |
net_rshares | -165,339,874,692 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
overkillcoin | 0 | -100,849,241,953 | -56% | ||
chronocrypto | 0 | -64,490,632,739 | -36% |
author | chronocrypto |
---|---|
permlink | re-danur-re-steemitblog-exploring-steem-scalability-20180410t170807959z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 17:08:06 |
last_update | 2018-04-10 17:08:06 |
depth | 2 |
children | 1 |
last_payout | 2018-04-17 17:08:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.026 HBD |
curator_payout_value | 0.005 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 59 |
author_reputation | 380,490,357,539,783 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,342,739 |
net_rshares | 7,183,834,712 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
timcliff | 0 | 6,939,002,841 | 1% | ||
adisa1502 | 0 | 244,831,871 | 100% |
It is a beautiful tower though 😂
author | timcliff |
---|---|
permlink | re-chronocrypto-re-danur-re-steemitblog-exploring-steem-scalability-20180410t193618087z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 19:36:18 |
last_update | 2018-04-10 19:36:18 |
depth | 3 |
children | 0 |
last_payout | 2018-04-17 19:36: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 | 32 |
author_reputation | 272,954,445,077,789 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,363,721 |
net_rshares | 0 |
Simply amazing... i wasnt aware of the problems with scalability. Keep up the good work guys! D.
author | decomoescribir |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180413t091335481z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-13 09:13:36 |
last_update | 2018-04-13 09:13:36 |
depth | 1 |
children | 0 |
last_payout | 2018-04-20 09:13:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 97 |
author_reputation | 1,223,020,007,800 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,822,846 |
net_rshares | 0 |
Great news
author | demo | ||||||
---|---|---|---|---|---|---|---|
permlink | re-steemitblog-2018411t231051637z | ||||||
category | steem | ||||||
json_metadata | {"tags":["steem","steemd","steemdev","steemitdev","witness-category"],"app":"esteem/1.6.0","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-04-11 20:10:54 | ||||||
last_update | 2018-04-11 20:10:54 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-04-18 20:10:54 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 10 | ||||||
author_reputation | 30,796,199,637 | ||||||
root_title | "Exploring Steem Scalability" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 49,554,253 | ||||||
net_rshares | 0 |
I want you guys to solve the problem of rampant bot and circle voting abuse. There are bots getting new accounts by the thousands, but I hear real people aren't getting those slots and there are quite a few people who are abusing the reward pool by being able to constantly vote for themselves and their friends with massive payouts and no disincentive to game the system.
author | distantsignal |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180410t210528729z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 21:05:30 |
last_update | 2018-04-10 21:06:06 |
depth | 1 |
children | 1 |
last_payout | 2018-04-17 21:05: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 | 373 |
author_reputation | 32,496,313,953,302 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,374,615 |
net_rshares | 0 |
Thanks for the feedback, we will be discussing our solutions to non-scalability related issues in future posts.
author | andrarchy |
---|---|
permlink | re-distantsignal-re-steemitblog-exploring-steem-scalability-20180411t161852215z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-11 16:18:54 |
last_update | 2018-04-11 16:18:54 |
depth | 2 |
children | 0 |
last_payout | 2018-04-18 16:18:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 111 |
author_reputation | 230,168,201,522,782 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,522,404 |
net_rshares | 0 |
someone told me that in near future may be @steemit will take very minor fee for making new accounts
author | diya28 |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180415t155404250z |
category | steem |
json_metadata | {"tags":["steem"],"users":["steemit"],"app":"steemit/0.1"} |
created | 2018-04-15 15:55:00 |
last_update | 2018-04-15 15:55:00 |
depth | 1 |
children | 0 |
last_payout | 2018-04-22 15:55:00 |
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 | 100 |
author_reputation | 1,661,130,029,399 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 50,221,751 |
net_rshares | 0 |
author | donkeypong |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180410t183002800z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 18:30:06 |
last_update | 2018-04-10 18:30:06 |
depth | 1 |
children | 0 |
last_payout | 2018-04-17 18:30:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.704 HBD |
curator_payout_value | 0.213 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 65 |
author_reputation | 431,667,636,679,304 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,354,820 |
net_rshares | 205,645,300,791 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
acidyo | 0 | 170,906,960,625 | 1% | ||
timcliff | 0 | 34,679,985,239 | 7% | ||
xymaros | 0 | 58,354,927 | 40% |
I have a renewed sense of confidence. For a while I've been very concerned about scalability and had some doubts about the future of Steem. Thanks for the node and RAM suggestions, I hope the new AppBase/RockDB implementations will slingshot Steem to the next level to accommodate the ever increasing user base and transactions. Thanks to all the dev team for their relentless hard work. https://image.ibb.co/jcz4Da/pai_mei_approves.gif
author | drakos |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180410t170518939z |
category | steem |
json_metadata | {"tags":["steem"],"image":["https://image.ibb.co/jcz4Da/pai_mei_approves.gif"],"app":"steemit/0.1"} |
created | 2018-04-10 17:05:18 |
last_update | 2018-04-10 17:05:18 |
depth | 1 |
children | 3 |
last_payout | 2018-04-17 17:05:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.838 HBD |
curator_payout_value | 0.126 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 439 |
author_reputation | 112,280,226,665,329 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,342,321 |
net_rshares | 437,712,928,827 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
acidyo | 0 | 170,888,014,402 | 1% | ||
lenatramper | 0 | 1,400,329,430 | 1% | ||
whatsup | 0 | 3,410,452,646 | 1% | ||
triverse | 0 | 266,892,762 | 1% | ||
steemchiller | 0 | 103,111,739,775 | 100% | ||
kingxerxesdex | 0 | 98,893,684 | 0.4% | ||
bobinson | 0 | 2,229,259,244 | 11% | ||
katerinaramm | 0 | 14,671,776,802 | 43% | ||
chronocrypto | 0 | 127,548,140,307 | 70% | ||
k9disc | 0 | 2,887,473,272 | 100% | ||
romaniaball | 0 | 11,199,956,503 | 100% |
Thank you for sharing your concerns with us!
author | andrarchy |
---|---|
permlink | re-drakos-re-steemitblog-exploring-steem-scalability-20180410t171905225z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 17:19:06 |
last_update | 2018-04-10 17:19:06 |
depth | 2 |
children | 0 |
last_payout | 2018-04-17 17:19:06 |
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 | 44 |
author_reputation | 230,168,201,522,782 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,344,424 |
net_rshares | 0 |
I like the beards master. 
author | introvertspeaks |
---|---|
permlink | re-drakos-re-steemitblog-exploring-steem-scalability-20180411t132917256z |
category | steem |
json_metadata | {"tags":["steem"],"image":["https://steemitimages.com/DQmSnPHAWfvh4igVndkBuhbiQwqhizjUJG6XsGaoMQSDBdF/the-master-and-the-student.jpg"],"app":"steemit/0.1"} |
created | 2018-04-11 13:29:18 |
last_update | 2018-04-11 13:29:18 |
depth | 2 |
children | 1 |
last_payout | 2018-04-18 13:29: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 | 166 |
author_reputation | -4,351,658,764,138 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,494,422 |
net_rshares | 1,690,522,107 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
introvertspeaks | 0 | 1,690,522,107 | 100% |
hahaha
author | petervroom |
---|---|
permlink | re-introvertspeaks-re-drakos-re-steemitblog-exploring-steem-scalability-20180412t041204685z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-12 04:12:06 |
last_update | 2018-04-12 04:12:06 |
depth | 3 |
children | 0 |
last_payout | 2018-04-19 04:12:06 |
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 | 6 |
author_reputation | 12,060,305,749,902 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,604,951 |
net_rshares | 611,542,171 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
petervroom | 0 | 611,542,171 | 100% |
so far I study the workings of steem and I have yet to get a fatal error, for now the system works has been very good, I have yet to ever find greatness in any platform other than this here, the team is very wise in making decisions, all users will be very thankful with this notice, even if they do not know about scaling, Hopefully more good again with spaces larger, blockchain, We don't want to lose steemit, keep working to make great changes, If you agree then I will turn this post into indonesian, and I will re-post with give the original source of your postings, to open an insight on my State about the greatness of scalability, AppBase, Steemd, RAM, Full Node, and the Node performance improvements.
author | elnazry |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180410t171703600z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 17:17:03 |
last_update | 2018-04-10 17:17:03 |
depth | 1 |
children | 3 |
last_payout | 2018-04-17 17:17:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.020 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 711 |
author_reputation | 275,829,852,776 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,344,094 |
net_rshares | 4,792,345,939 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
hien-tran | 0 | 2,140,934,405 | 100% | ||
elnazry | 0 | 2,651,411,534 | 100% |
Sounds good to me, go for it! Andrew Levine Content Director, Steemit
author | andrarchy |
---|---|
permlink | re-elnazry-re-steemitblog-exploring-steem-scalability-20180410t184648989z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 18:46:51 |
last_update | 2018-04-10 18:46:51 |
depth | 2 |
children | 2 |
last_payout | 2018-04-17 18:46: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 | 70 |
author_reputation | 230,168,201,522,782 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,357,181 |
net_rshares | 0 |
Do I really get permission to edit this post into indonesia? Wow Thanks a lot...
author | elnazry |
---|---|
permlink | re-andrarchy-re-elnazry-re-steemitblog-exploring-steem-scalability-20180410t192055448z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 19:20:54 |
last_update | 2018-04-10 19:20:54 |
depth | 3 |
children | 0 |
last_payout | 2018-04-17 19:20:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 80 |
author_reputation | 275,829,852,776 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,361,794 |
net_rshares | 0 |
Hi... I've finished making the posting into my language, I am very grateful to @andrarchy who has given this great opportunity, Hopefully my friend here can add science with this post. Here's the post I have translate. [Beberapa system penskalaan (Exploring Steem Scalability) yang harus dipelajari sebelum menjadi Witness](https://steemit.com/steem/@elnazry/beberapa-system-penskalaan-exploring-steem-scalability-yang-harus-dipelajari-sebelum-menjadi-witness)
author | elnazry |
---|---|
permlink | re-andrarchy-re-elnazry-re-steemitblog-exploring-steem-scalability-20180411t081826952z |
category | steem |
json_metadata | {"tags":["steem"],"users":["andrarchy"],"links":["https://steemit.com/steem/@elnazry/beberapa-system-penskalaan-exploring-steem-scalability-yang-harus-dipelajari-sebelum-menjadi-witness"],"app":"steemit/0.1"} |
created | 2018-04-11 08:18:24 |
last_update | 2018-04-11 08:18:24 |
depth | 3 |
children | 0 |
last_payout | 2018-04-18 08:18:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.039 HBD |
curator_payout_value | 0.013 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 460 |
author_reputation | 275,829,852,776 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,451,967 |
net_rshares | 12,028,552,714 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mac128k | 0 | 12,028,552,714 | 100% |
This is still a very difficult concept for me to grasp. I will probably have to dedicate a week to research and summarize my findings, that is how I learn best. I am abit tense to dig on this one, however, I know I must be done and comprehensively understood. I'll be back to reference this. Thank you for the valuable information @steemitblog Xo
author | elsiekjay |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180410t163244657z |
category | steem |
json_metadata | {"tags":["steem"],"users":["steemitblog"],"app":"steemit/0.1"} |
created | 2018-04-10 16:32:51 |
last_update | 2018-04-10 16:32:51 |
depth | 1 |
children | 0 |
last_payout | 2018-04-17 16:32: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 | 347 |
author_reputation | 619,260,606,282,252 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,337,370 |
net_rshares | 0 |
We understand this is an important topic for many users and will be addressing non-scalability related issues in future posts. Thanks for sharing sir
author | foortirafi |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180412t190905595z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-12 19:09:48 |
last_update | 2018-04-12 19:09:48 |
depth | 1 |
children | 0 |
last_payout | 2018-04-19 19:09:48 |
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 | 149 |
author_reputation | 36,283,176,099 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,724,636 |
net_rshares | 0 |
I am with you by voting for you and you will be with me 😍😍😍😍😍😍😍😍😍 https://steemit.com/@forgetsharif 😍😍😍😍😍😍😍😍😍😍😍😍 ✌✌✌✌✌✌✌✌✌✌✌✌ ✌✌✌✌✌✌✌✌✌✌✌✌👌 ☺☺☺☺☺☺☺☺☺☺☺☺☺
author | forgetsharif |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180411t005206122z |
category | steem |
json_metadata | {"tags":["steem"],"image":["https://steemitimages.com/DQmRhDtjokAZnGKi4QwheqksKTFo6m4fsjMYsNNrsitC1xk/upfostee.gif"],"links":["https://steemit.com/@forgetsharif"],"app":"steemit/0.1"} |
created | 2018-04-11 00:52:09 |
last_update | 2018-04-11 00:52:09 |
depth | 1 |
children | 0 |
last_payout | 2018-04-18 00:52: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 | 256 |
author_reputation | -46,003,349,964 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,398,325 |
net_rshares | -25,488,110,234 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abusereports | 0 | -25,488,110,234 | -1% |
Why not adopt MPI based code... in the steem source code... I mean... if you can have 100 cell phones.. doing a steem node... because you can't buy a BIG server! Would not that be awesome? I mean... even if you look further... this will give STEEM a new market... which is full of performance... called HPC (High Performance Computing)... which is also inside the cloud, and reaching out for AI, deep computing and deep learning. I am not joking, and anyone that can spin up a VM for a normal wallet, can also spin up a wallet for a an HPC cluster that can outperform many of the BIG VMs inside the cloud offering. Just check it out! HPC is the way! No more... careless infrastructure!
author | forykw |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180412t130719134z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-12 13:07:21 |
last_update | 2018-04-12 13:07:21 |
depth | 1 |
children | 1 |
last_payout | 2018-04-19 13:07:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.070 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 688 |
author_reputation | 93,073,080,320,560 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,672,377 |
net_rshares | 15,394,800,080 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
forykw | 0 | 15,394,800,080 | 100% |
I have bumped my comment (voting on it).
author | forykw |
---|---|
permlink | re-forykw-re-steemitblog-exploring-steem-scalability-20180412t130819266z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-12 13:08:18 |
last_update | 2018-04-12 13:08:18 |
depth | 2 |
children | 0 |
last_payout | 2018-04-19 13:08:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.804 HBD |
curator_payout_value | 0.265 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 40 |
author_reputation | 93,073,080,320,560 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,672,536 |
net_rshares | 233,380,655,536 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gentlebot | 0 | 233,380,655,536 | 15% |
I believe the developers are doing their job to make steemit even better. Let's have some faith in them :)
author | gvincentjosephm |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180410t190249201z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 19:02:57 |
last_update | 2018-04-10 19:02:57 |
depth | 1 |
children | 0 |
last_payout | 2018-04-17 19:02: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 | 106 |
author_reputation | 7,888,379,816,167 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,359,422 |
net_rshares | 0 |
Steem is one of the best blockchain. However, scalability is a real issue regarding of growing community.
author | hiroyamagishi |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180410t172909964z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 17:29:12 |
last_update | 2018-04-10 17:29:12 |
depth | 1 |
children | 0 |
last_payout | 2018-04-17 17:29:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.542 HBD |
curator_payout_value | 0.002 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 105 |
author_reputation | 71,901,302,671,995 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,345,912 |
net_rshares | 344,324,098,027 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
hiroyamagishi | 0 | 337,439,794,605 | 100% | ||
josteem | 0 | 7,333,986,878 | 5% | ||
jasuly | 0 | -449,683,456 | -100% |
 Scalability level GOD, Best regards friends of @steemitblog!!
author | humoalex |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180413t133309062z |
category | steem |
json_metadata | {"tags":["steem"],"users":["steemitblog"],"image":["https://steemitimages.com/DQmfFDfscPrX8pdUsQ3PNhsotybLwD3H6j2bAF4dhZPseVr/Arca.jpg"],"app":"steemit/0.1"} |
created | 2018-04-13 13:33:09 |
last_update | 2018-04-13 13:33:09 |
depth | 1 |
children | 0 |
last_payout | 2018-04-20 13:33:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.846 HBD |
curator_payout_value | 0.280 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 159 |
author_reputation | 7,547,892,833,882 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,856,544 |
net_rshares | 234,280,426,224 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gentlebot | 0 | 234,280,426,224 | 15% |
"The emperor has no clothes." I'm a very experienced software developer. Something doesn't add up here. Running a node already involves a hard disk footprint measured in 100 GB, and in the meat world no one on the street has even heard of steem yet, while they all have heard of Facebook. How can any architecture that stores its entire content in a single file ever be scalable? Has no one ever taken a look at y=e**x (an exponential function)?
author | ideafarm |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180412t145222566z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-12 14:52:48 |
last_update | 2018-04-12 14:52:48 |
depth | 1 |
children | 0 |
last_payout | 2018-04-19 14:52:48 |
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 | 450 |
author_reputation | 156,305,837,687 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,688,467 |
net_rshares | 0 |
how to quickly level in steemit??
author | iissumiati03 |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180411t095307086z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-11 09:53:15 |
last_update | 2018-04-11 09:53:15 |
depth | 1 |
children | 0 |
last_payout | 2018-04-18 09:53: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 | 33 |
author_reputation | 11,939,465,415 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,463,885 |
net_rshares | 0 |
this tower looks so good
author | ikutikutan |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180410t161921834z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 16:19:24 |
last_update | 2018-04-10 17:03:51 |
depth | 1 |
children | 4 |
last_payout | 2018-04-17 16:19: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 | 24 |
author_reputation | -638,768,577,013 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,335,446 |
net_rshares | -306,340,241,320 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
kaliju | 0 | -306,340,241,320 | -100% |
Yes this post is all about that beautiful tower! you and @danur have great taste. **Damn**
author | chronocrypto |
---|---|
permlink | re-ikutikutan-re-steemitblog-exploring-steem-scalability-20180410t171022289z |
category | steem |
json_metadata | {"tags":["steem"],"users":["danur"],"app":"steemit/0.1"} |
created | 2018-04-10 17:10:21 |
last_update | 2018-04-10 17:10:21 |
depth | 2 |
children | 1 |
last_payout | 2018-04-17 17:10:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.484 HBD |
curator_payout_value | 0.145 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 92 |
author_reputation | 380,490,357,539,783 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,343,100 |
net_rshares | 140,730,477,317 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
kaliju | 0 | 140,476,464,251 | 50% | ||
ikutikutan | 0 | 0 | -100% | ||
adisa1502 | 0 | 254,013,066 | 100% |
my best regards @ikutikutan . I apologize. my account I have taken back and I have changed the password. please revoke the flag.
author | ikutikutan | ||||||
---|---|---|---|---|---|---|---|
permlink | re-chronocrypto-2018422t204722745z | ||||||
category | steem | ||||||
json_metadata | {"tags":"steem","app":"esteem/1.6.0","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-04-22 13:47:30 | ||||||
last_update | 2018-04-22 13:47:30 | ||||||
depth | 3 | ||||||
children | 0 | ||||||
last_payout | 2018-04-29 13:47: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 | 128 | ||||||
author_reputation | -638,768,577,013 | ||||||
root_title | "Exploring Steem Scalability" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 51,489,412 | ||||||
net_rshares | 0 |
lol. Wow.
author | kaliju |
---|---|
permlink | re-ikutikutan-re-steemitblog-exploring-steem-scalability-20180410t163045058z |
category | steem |
json_metadata | {"tags":["steem"],"community":"busy","app":"busy/2.4.0"} |
created | 2018-04-10 16:30:51 |
last_update | 2018-04-10 16:30:51 |
depth | 2 |
children | 1 |
last_payout | 2018-04-17 16:30:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.271 HBD |
curator_payout_value | 0.087 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 9 |
author_reputation | 34,142,096,389,326 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,337,079 |
net_rshares | 80,552,371,094 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
steemthat | 0 | 9,149,793,647 | 100% | ||
chronocrypto | 0 | 71,656,258,599 | 39% | ||
ikutikutan | 0 | -504,633,820 | -100% | ||
adisa1502 | 0 | 250,952,668 | 100% |
my best regards @ikutikutan . I apologize. my account I have taken back and I have changed the password. please revoke the flag.
author | ikutikutan | ||||||
---|---|---|---|---|---|---|---|
permlink | re-kaliju-2018422t20465122z | ||||||
category | steem | ||||||
json_metadata | {"tags":"steem","app":"esteem/1.6.0","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-04-22 13:46:54 | ||||||
last_update | 2018-04-22 13:46:54 | ||||||
depth | 3 | ||||||
children | 0 | ||||||
last_payout | 2018-04-29 13:46:54 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 128 | ||||||
author_reputation | -638,768,577,013 | ||||||
root_title | "Exploring Steem Scalability" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 51,489,310 | ||||||
net_rshares | 0 |
You could have at least mentioned this analysis here: https://steemit.com/witness-update/@jamzed/do-i-really-need-64gb-of-ram-for-my-witness-nodes done by @jamzed
author | isnochys |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180411t064432684z |
category | steem |
json_metadata | {"tags":["steem"],"users":["jamzed"],"links":["https://steemit.com/witness-update/@jamzed/do-i-really-need-64gb-of-ram-for-my-witness-nodes"],"app":"steemit/0.1"} |
created | 2018-04-11 06:44:33 |
last_update | 2018-04-11 06:44:33 |
depth | 1 |
children | 0 |
last_payout | 2018-04-18 06:44:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 162 |
author_reputation | 47,865,164,835,204 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,440,045 |
net_rshares | 0 |
Steem blockchain is creating a record and history by its faster growth technique...
author | jacksonchakma |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180411t075950830z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-11 08:00:03 |
last_update | 2018-04-11 08:00:03 |
depth | 1 |
children | 0 |
last_payout | 2018-04-18 08:00: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 | 83 |
author_reputation | 24,978,574,322,804 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,449,561 |
net_rshares | 0 |
Can't wait to see RocksDB in action ;-) Thank you for sharing all tech details. MOAR! deep dives please ;-)
author | jamzed |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180410t191452517z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 19:14:51 |
last_update | 2018-04-10 19:14:51 |
depth | 1 |
children | 0 |
last_payout | 2018-04-17 19:14:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.129 HBD |
curator_payout_value | 0.023 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 107 |
author_reputation | 2,159,179,776,915 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,360,999 |
net_rshares | 34,694,618,707 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
timcliff | 0 | 34,694,618,707 | 7% |
This is great information and timely. I was just looking for an explanation, best one so far. As a few of the others have said well written for those looking to see what it takes to run the different nodes. Much appreciated.
author | jasonbu |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180410t221025876z |
category | steem |
json_metadata | {"tags":["steem"],"community":"busy","app":"busy/2.4.0"} |
created | 2018-04-10 22:10:30 |
last_update | 2018-04-10 22:10:30 |
depth | 1 |
children | 0 |
last_payout | 2018-04-17 22:10:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.017 HBD |
curator_payout_value | 0.002 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 225 |
author_reputation | 27,237,689,747,636 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,381,741 |
net_rshares | 5,039,001,643 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
googlybot | 0 | 1,929,586,713 | 50% | ||
cuddlekitten | 0 | 2,650,021,601 | 50% | ||
rogeriomlima | 0 | 459,393,329 | 100% |
Steem Scalability !!!!! Whales are getting much more than expected, new users are finding it difficult to even sustain on this platform. Reward pool is decreasing on every 250k blocks as well as it has fixed amount of STEEM in its reward pool. Users are flooding like hell, so What Will They Get From Here ??, Just Pennies !! What if it onboards the same numbers of users that facebook have. How It Rewards Such A Big Numbers Of It's Users ?? Sorry to say but I think that it doesn't have the potential to compete with facebook, it doesn't have the potential to reward it's users. I have given the idea that "Instead of using Steem Power as the method of determining the reward amount, We can bind one vote to fix amount. Steem Power will be just used to allocate bandwidth, The more Steem Power a user have the more he can post on this network.
author | jcobs |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180410t161608883z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 16:16:09 |
last_update | 2018-04-10 16:16:09 |
depth | 1 |
children | 17 |
last_payout | 2018-04-17 16:16:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.049 HBD |
curator_payout_value | 0.007 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 850 |
author_reputation | 1,140,919,157,274 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,334,981 |
net_rshares | 13,186,429,275 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
indigoocean | 0 | 13,186,429,275 | 50% |
Hmm🤔, true.
author | adedoyinwealth |
---|---|
permlink | re-jcobs-re-steemitblog-exploring-steem-scalability-20180410t162502980z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 16:25:09 |
last_update | 2018-04-10 16:25:09 |
depth | 2 |
children | 5 |
last_payout | 2018-04-17 16:25: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 | 11 |
author_reputation | 5,369,436,941,790 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,336,257 |
net_rshares | 0 |
I disagree about Facebook. Facebook cannot compete with Steemit. Facebook is just a waste of time, while Steemit is a community of Supportive people who look out for each other. I've made more resourceful friends here on Steemit than on Facebook. Facebook is a lie.❌ Steemit is the real deal.✔️👍
author | adedoyinwealth |
---|---|
permlink | re-adedoyinwealth-re-jcobs-re-steemitblog-exploring-steem-scalability-20180410t163613451z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 16:36:21 |
last_update | 2018-04-10 16:36:21 |
depth | 3 |
children | 2 |
last_payout | 2018-04-17 16:36:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 298 |
author_reputation | 5,369,436,941,790 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,337,915 |
net_rshares | 2,191,014,742 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
hien-tran | 0 | 2,191,014,742 | 100% |
Exactly what I thought @raycoms. Even if we still get pennies, that would mean that the project is a (sound) success.
author | fcalabuig |
---|---|
permlink | re-adedoyinwealth-re-jcobs-re-steemitblog-exploring-steem-scalability-20180410t163958872z |
category | steem |
json_metadata | {"tags":["steem"],"users":["raycoms"],"app":"steemit/0.1"} |
created | 2018-04-10 16:39:57 |
last_update | 2018-04-10 16:39:57 |
depth | 3 |
children | 1 |
last_payout | 2018-04-17 16:39:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.229 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 118 |
author_reputation | 22,848,624,297,033 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,338,487 |
net_rshares | 51,637,345,185 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
flexcougar | 0 | 8,333,052,391 | 36% | ||
haiguzzi | 0 | 14,866,638,464 | 42% | ||
movieclips | 0 | 4,935,304,052 | 98% | ||
muhammadadil | 0 | 13,855,929,207 | 87% | ||
m3mt | 0 | 4,788,512,120 | 37% | ||
volfenhauser | 0 | 4,857,908,951 | 97% |
That's a really good idea for making it easier for new people to get traction on here when no whales (or even dolphins) are following them to give them bit upvotes. And while in some ways this is a side conversation, since this post is really about scaling the tech, not how to increase the size of the user base, the two are definitely related. So let's play. So yes, would be good to give new people a chance to more powerfully upvote each other the same way old-timers can powerfully upvote each other. However, there is also something to be said for providing someone who has invested their own money in the platform with some additional stake in things like how rewards get allocated. The same goes for those who have invested many months of their time in posting and growing quality content on the platform. I don't think bandwidth, the ability to post more, is adequate compensation for that investment. And speaking of investment, we also want STEEM to be an attractive one, even for people who don't intend to post. It may seem like SP wouldn't matter to them at all, but not so, because now they can delegate their SP at an interest rate of about 25-30%. That's a darned good return! In fact, I'm currently developing an advisory relationship with a socially conscious investing firm, and guess which coin I'm going to be recommending at their #1 play! But this only works if other people have a reason to pay those returns to them to buy their delegated SP. And the only reason someone buys it is so that they have bigger upvotes. The problem is for people who have no money to invest at all and also haven't been here that long, so haven't invested sufficient time either. I don't know that there is a way to equalize for that, or if there even should be. Might the initial SP delegation be bigger? Yes, I think that would be good. I think now the investment of time needed to get any traction is just too long. I also think that delegation should remain longer after the person starts buying small amounts of STEEM they can afford. Right now if you buy only $20 of STEEM you basically just replace some of your delegated amount with that. You get no additional upvote ability. Ouch! I keep trying to explain to people they need to invest at least $100 to get any kind of decent upvote, but not everyone has $100. Do we not want them on STEEM dapps? So there is definitely room for improvement in how we scale the user base successfully without churn. But I don't think it's as radical as decoupling SP from upvote power.
author | indigoocean |
---|---|
permlink | re-jcobs-re-steemitblog-exploring-steem-scalability-20180410t164714163z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 16:47:15 |
last_update | 2018-04-10 16:47:15 |
depth | 2 |
children | 0 |
last_payout | 2018-04-17 16:47: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 | 2,538 |
author_reputation | 83,283,947,872,393 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,339,587 |
net_rshares | 468,581,195 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
rogeriomlima | 0 | 468,581,195 | 100% |
You are missing the main point here. The more users onboard, the more investors onboard and the more 1 Steem will be worth. With 200 million users you might only get 0.1 Steem per post, but if 1 Steem is worth 1000 dollars, you'll still get a decent reward.
author | raycoms |
---|---|
permlink | re-jcobs-re-steemitblog-exploring-steem-scalability-20180410t163343102z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 16:33:42 |
last_update | 2018-04-10 16:33:42 |
depth | 2 |
children | 9 |
last_payout | 2018-04-17 16:33:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.152 HBD |
curator_payout_value | 0.031 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 257 |
author_reputation | 115,046,969,395,583 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,337,518 |
net_rshares | 41,606,749,609 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
timcliff | 0 | 34,649,927,238 | 6% | ||
thedarkhorse | 0 | 3,793,500,302 | 5% | ||
fcalabuig | 0 | 3,163,322,069 | 10% |
Thank You for explaining👍 Steemit is growing by the minute, everyday.
author | adedoyinwealth |
---|---|
permlink | re-raycoms-re-jcobs-re-steemitblog-exploring-steem-scalability-20180410t164243001z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 16:42:45 |
last_update | 2018-04-10 16:42:45 |
depth | 3 |
children | 0 |
last_payout | 2018-04-17 16:42:45 |
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 | 69 |
author_reputation | 5,369,436,941,790 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,338,899 |
net_rshares | 0 |
1000 dollars seems a bit to far fetched, more does not mean better.
author | chronocrypto |
---|---|
permlink | re-raycoms-re-jcobs-re-steemitblog-exploring-steem-scalability-20180410t164558177z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 16:46:00 |
last_update | 2018-04-10 16:46:00 |
depth | 3 |
children | 2 |
last_payout | 2018-04-17 16:46:00 |
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 | 67 |
author_reputation | 380,490,357,539,783 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,339,384 |
net_rshares | 508,395,284 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
rogeriomlima | 0 | 508,395,284 | 100% |
You seem to be missing the point as well. More users does not mean more investors/value.
author | jefpatat |
---|---|
permlink | re-raycoms-re-jcobs-re-steemitblog-exploring-steem-scalability-20180410t170529504z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 17:05:27 |
last_update | 2018-04-10 17:05:27 |
depth | 3 |
children | 4 |
last_payout | 2018-04-17 17:05: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 | 88 |
author_reputation | 26,609,526,234,408 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,342,352 |
net_rshares | 0 |
So what does this mean? We can handle the largest amount of transactions (we're better than visa, paypal, bla bla bla) but we fail to handle the backend and look up previous transactions. Transfering to the bank is ok, no record necessary, transferring from the bank, well, hang on a while, we're having difficulties checking how much you own. That's called a bottleneck. As so many others have said: what about the future of the platform? How do you plan on retaining users? What is your future stance on proof-of-brain vs voting services? How do you think on improving the reward system? Or is it considered perfect by now? ... All we get is half baked announcements that are either hard to understand or turn out later to be untrue. In the meantime we see busy.org, utopian and so many others evolve. But STINC... It's getting frustrating.
author | jefpatat |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180410t172345730z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 17:23:45 |
last_update | 2018-04-10 17:23:45 |
depth | 1 |
children | 3 |
last_payout | 2018-04-17 17:23:45 |
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 | 843 |
author_reputation | 26,609,526,234,408 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,345,135 |
net_rshares | 0 |
We intend for full account history to be available again soon on steemit.com and apologize for any inconvenience it has caused. By us putting a large amount of effort into scalability of Steem blockchain services it will make it easier and more possible for other Steem apps to be able to scale as well. The efforts we are making supports the entire Steem ecosystem, not just steemit.com. In addition, a large number of Steem apps actually rely on our infrastructure to run their sites. We are trying to be as communicative and transparent about Steem development as possible - the community was very vocal about letting us know their desire for open communication from Steemit Inc. - and that's exactly what we're doing here. If there are any specific scaling concerns that you feel we haven't addressed here, please let us know and we will do our best to address your concerns.
author | justinw |
---|---|
permlink | re-jefpatat-re-steemitblog-exploring-steem-scalability-20180410t194933907z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 19:49:33 |
last_update | 2018-04-10 19:49:33 |
depth | 2 |
children | 2 |
last_payout | 2018-04-17 19:49:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 881 |
author_reputation | 15,502,058,309,908 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,365,498 |
net_rshares | 204,856,867 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bellekiss-31 | 0 | 204,856,867 | 100% |
I like the fact that you are pro active like this. I just got on steemit today and I think it's got so much potential now I need to figure out what I want to blog about .
author | danoodle420 |
---|---|
permlink | re-justinw-re-jefpatat-re-steemitblog-exploring-steem-scalability-20180411t013359748z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-11 01:34:00 |
last_update | 2018-04-11 01:34:00 |
depth | 3 |
children | 0 |
last_payout | 2018-04-18 01:34:00 |
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 | 170 |
author_reputation | 9,086,434,567 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,402,892 |
net_rshares | 0 |
I appreciate your honest response Justin. As a developer of www.steemmakers.com I realize how important managing the growth is. I appreciate the communication but I'm still disappointed more than I am pleased with the communication. I'm sure you are well aware of it. The question remains if it is going to change. This is not the kind of communication we are looking for. Just scroll through the comments to see what's keeping the community busy. I haven't seen STINC take a position on any of the simple questions in my initial comment.
author | jefpatat |
---|---|
permlink | re-justinw-re-jefpatat-re-steemitblog-exploring-steem-scalability-20180411t071016514z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-11 07:10:15 |
last_update | 2018-04-11 07:10:15 |
depth | 3 |
children | 0 |
last_payout | 2018-04-18 07:10: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 | 538 |
author_reputation | 26,609,526,234,408 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,443,337 |
net_rshares | 0 |
The exponential argument is convincing, even for those of us not-blockchain experts. It's intuitive because it agrees with the reality we are familiar with. It is easier to take a building from being able to support ten people to bring able to support twenty than two hundred. To do that, you would have needed to start with a building that could support one hundred (although the analogy isn't perfect because that you're of progression is usually at best linear).
author | jenkinrocket |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180410t174251988z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 17:42:51 |
last_update | 2018-04-10 17:42:51 |
depth | 1 |
children | 0 |
last_payout | 2018-04-17 17:42:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.371 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 465 |
author_reputation | 26,749,165,203,694 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,347,893 |
net_rshares | 83,236,036,466 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jenkinrocket | 0 | 83,236,036,466 | 100% |
Thank you very much for this update which I will resteem soon! I am happy to know after reading this update that I do not need to plan on updating my witness servers to more than 64 GB of RAM for the foreseeable future!
author | jerrybanfield |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180411t155320509z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-11 15:53:18 |
last_update | 2018-04-11 15:54:09 |
depth | 1 |
children | 0 |
last_payout | 2018-04-18 15:53: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 | 220 |
author_reputation | 362,393,802,961,900 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,518,434 |
net_rshares | -48,304,395,480 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
thecyclist | 0 | -48,304,395,480 | -2% |
Wow awesome post. Great article about steemit. Thanks
author | john-cena | ||||||
---|---|---|---|---|---|---|---|
permlink | re-steemitblog-2018410t212936385z | ||||||
category | steem | ||||||
json_metadata | {"tags":["steem","steemd","steemdev","steemitdev","witness-category"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-04-10 16:29:39 | ||||||
last_update | 2018-04-10 16:29:39 | ||||||
depth | 1 | ||||||
children | 1 | ||||||
last_payout | 2018-04-17 16: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 | 53 | ||||||
author_reputation | 15,988,869,731 | ||||||
root_title | "Exploring Steem Scalability" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 49,336,884 | ||||||
net_rshares | 0 |
Yes it is an amazing article, I hope it will help just in case you want to start your own node. **Sarcasm**
author | chronocrypto |
---|---|
permlink | re-john-cena-re-steemitblog-2018410t212936385z-20180410t170855488z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 17:08:57 |
last_update | 2018-04-10 17:09:21 |
depth | 2 |
children | 0 |
last_payout | 2018-04-17 17:08: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 | 107 |
author_reputation | 380,490,357,539,783 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,342,870 |
net_rshares | 0 |
Excellent posts. The more Steem is able to scale the better for mass adoption. I truly believe that crypto currencies is the future as well as decentralized apps like steemit that brings freedom and control to an average person. Central Authorities that posses massive will gradually loose a lot of their power which is a good thing.
author | joshuaatiemo |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180412t221710623z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-12 22:56:42 |
last_update | 2018-04-12 22:56:42 |
depth | 1 |
children | 0 |
last_payout | 2018-04-19 22:56: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 | 334 |
author_reputation | 4,189,940,271,139 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,751,076 |
net_rshares | -1,631,402,054 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cheetah | 0 | -2,076,100,890 | -0.08% | ||
joshuaatiemo | 0 | 444,698,836 | 100% |
**Hey @steemitblog and @ned , Thank you all for your excellent work. I have super confidence in you, I think the future is super positive!** --- >Steem has already proven itself as the fastest and most heavily transacted public blockchain in existence, and scalability continues to remain a top focus of ours. We know that scaling challenges will never completely go away, which is why we plan to continue innovating to ensure that whatever growth comes our way - we'll be ready. --- **I send you my strength!** **@lartist-zen**
author | lartist-zen |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180410t194509833z |
category | steem |
json_metadata | {"tags":["steem"],"community":"busy","app":"busy/2.4.0"} |
created | 2018-04-10 19:45:12 |
last_update | 2018-04-10 19:45:12 |
depth | 1 |
children | 0 |
last_payout | 2018-04-17 19:45: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 | 533 |
author_reputation | 1,270,901,178,729 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,364,935 |
net_rshares | 0 |
I have been running a witness node since September 2017. I have never put any shared_memory on RAM, all of it on a regular SATA SSD, and my RAM usage hovers under the 1 GB mark. Never had any problems at all, with disk usage around the 5% mark. Replays probably would take a while, but I have actually never replayed - not even once - since September 2017. It has just been rock solid. I've been playing around with a NVMe RAID0 server, and experimenting with /dev/shm, but can't think of a single reason to go the RAM route. Replay finished from scratch in three and a half hours, and as demonstrated above, replays are pretty rare. So, I'll stick with NVMe SSD for now, Optane next. Hopefully, with all of the scalability improvements, I won't be using RAM for years to come. PS: I have noticed shared_memory is very compressible. I'd be looking forward to some compression tech built into Steemd. Of course, we can use existing workarounds now.
author | liberosist |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180410t191959313z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 19:20:00 |
last_update | 2018-04-10 19:45:27 |
depth | 1 |
children | 9 |
last_payout | 2018-04-17 19:20:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.472 HBD |
curator_payout_value | 0.126 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 948 |
author_reputation | 177,167,275,265,899 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,361,682 |
net_rshares | 134,734,950,980 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
timcliff | 0 | 6,938,923,741 | 1% | ||
mada | 0 | 20,016,443,165 | 100% | ||
steemchiller | 0 | 101,500,618,841 | 100% | ||
j1v | 0 | 6,278,965,233 | 100% |
How did you update steemd? There has been a patch at least at the end of December/in January? For that, recompiling and restart of steemd process, you should have needed a replay.
author | isnochys |
---|---|
permlink | re-liberosist-re-steemitblog-exploring-steem-scalability-20180411t065755344z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-11 06:57:57 |
last_update | 2018-04-11 06:57:57 |
depth | 2 |
children | 1 |
last_payout | 2018-04-18 06:57: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 | 179 |
author_reputation | 47,865,164,835,204 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,441,742 |
net_rshares | 0 |
The update did not require a replay. Just a rebuild and restart.
author | liberosist |
---|---|
permlink | re-isnochys-re-liberosist-re-steemitblog-exploring-steem-scalability-20180411t070150314z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-11 07:01:51 |
last_update | 2018-04-11 07:01:51 |
depth | 3 |
children | 0 |
last_payout | 2018-04-18 07:01: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 | 64 |
author_reputation | 177,167,275,265,899 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,442,260 |
net_rshares | 0 |
Thanks @liberosist - I really appreciate you communicating your real-world experience with running a witness node on this post. You are also correct about the `shared_memory` file being fairly compressible. We actually run a service that compresses state files regularly and are pulled in and uncompressed on startup. This makes it possible for us to autoscale steemd instances on-demand.
author | justinw |
---|---|
permlink | re-liberosist-re-steemitblog-exploring-steem-scalability-20180410t200525818z |
category | steem |
json_metadata | {"tags":["steem"],"users":["liberosist"],"app":"steemit/0.1"} |
created | 2018-04-10 20:05:27 |
last_update | 2018-04-10 20:05:27 |
depth | 2 |
children | 6 |
last_payout | 2018-04-17 20:05:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.506 HBD |
curator_payout_value | 0.163 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 389 |
author_reputation | 15,502,058,309,908 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,367,525 |
net_rshares | 150,783,082,461 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
pharesim | 0 | 78,190,507,134 | 0.02% | ||
liberosist | 0 | 7,681,290,116 | 1% | ||
meerkat | 0 | 64,911,285,211 | 1% |
@justinw - read your other comments. Keep up the good work. I have questions / doubts: 1. > This makes it possible for us to autoscale steemd instances on-demand. ie you are compressing the block_log files and decompressing for auto-scalng ? 2. Are just using xz/zip/bzip/lzma or something else ? 3. Cursious about the auto-scaling as well - so you use something like ELB from AWS or a hardware (F5) ? Thanks in advance.
author | bobinson |
---|---|
permlink | re-justinw-re-liberosist-re-steemitblog-exploring-steem-scalability-20180415t100305676z |
category | steem |
json_metadata | {"tags":["steem"],"users":["justinw"],"app":"steemit/0.1"} |
created | 2018-04-15 10:03:06 |
last_update | 2018-04-15 10:03:06 |
depth | 3 |
children | 0 |
last_payout | 2018-04-22 10:03:06 |
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 | 427 |
author_reputation | 55,343,141,313,811 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 50,172,317 |
net_rshares | 0 |
Ah, so I would like to see that tech built into Steemd itself so it always stays compressed - even when it's running. I know this will add CPU overhead, but since AMD's EPYC and Intel's Skylake-X response, we are headed into a world with more CPU cores than we know what to do with. I know some have experimented on zram on Linux, and it works fine. Anecdote - back when Steemd ran on Windows, the in-built RAM compression in Windows 10 kicked in. Back then, it was all on RAM (no shared_memory) and a full node typically used 15 GB. In Windows 10, that was down to only 3 GB, the CPU overhead was minimal and it ran flawlessly. Of course, very different times now, but I'd be looking forward to seeing compression tech built into Steemd.
author | liberosist |
---|---|
permlink | re-justinw-re-liberosist-re-steemitblog-exploring-steem-scalability-20180411t070725277z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-11 07:07:27 |
last_update | 2018-04-11 07:07:27 |
depth | 3 |
children | 4 |
last_payout | 2018-04-18 07:07:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.020 HBD |
curator_payout_value | 0.005 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 738 |
author_reputation | 177,167,275,265,899 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,442,960 |
net_rshares | 6,178,233,170 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
j1v | 0 | 6,178,233,170 | 100% |
Steem team is amazing!
author | marc99 |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180411t090505700z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-11 09:05:06 |
last_update | 2018-04-11 09:05:06 |
depth | 1 |
children | 0 |
last_payout | 2018-04-18 09:05:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.430 HBD |
curator_payout_value | 0.005 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 22 |
author_reputation | 2,577,073,356,117 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,457,973 |
net_rshares | 316,592,071,777 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
marc99 | 0 | 316,592,071,777 | 100% |
You guys have evolved so much, it is encouraging to see how your team has developed so much in just two years and how also the project, Steem and Steemit has come to be a great amount of applications on top of a powerful blockchain. It is also great that you detailed the problems that Steem has right now with the RAM and how it should be addressed by witnesses and node owners, as this started to be a problem pointed out by many of them. Overall you are doing great and really improving your communication with the people here who missed it so much. Keep going!
author | mejustandrew |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180410t180806516z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 18:03:06 |
last_update | 2018-04-10 18:03:06 |
depth | 1 |
children | 1 |
last_payout | 2018-04-17 18:03:06 |
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 | 567 |
author_reputation | 6,245,491,946,485 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,350,900 |
net_rshares | 1,911,260,358 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lidac | 0 | 1,911,260,358 | 100% |
Thanks for the words of encouragement. We're trying!
author | andrarchy |
---|---|
permlink | re-mejustandrew-re-steemitblog-exploring-steem-scalability-20180410t181518885z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 18:15:18 |
last_update | 2018-04-10 18:15:18 |
depth | 2 |
children | 0 |
last_payout | 2018-04-17 18:15: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 | 52 |
author_reputation | 230,168,201,522,782 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,352,747 |
net_rshares | 0 |
Bitcoin has been here for 9 years, the core could't figure it out how to scale well. Operating cost for Bitcoin blockchain is insane, energy costs, forks, clampdowns, you would think some other chain would take a lead by now. Steem is two years young, it is working great, we are the busiest blockchain alive, more lives have been changed for the better, anyone who has seen the potential here from the early days is quite happy by now. This is just a beginning. I'm glad STINC is thinking ahead, this just reinforces my hopes for the future. Steem on!
author | moon32walker |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180410t164437932z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 16:44:39 |
last_update | 2018-04-10 16:44:39 |
depth | 1 |
children | 6 |
last_payout | 2018-04-17 16:44:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.314 HBD |
curator_payout_value | 0.316 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 555 |
author_reputation | 149,463,019,364,353 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,339,162 |
net_rshares | 363,890,432,974 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
acidyo | 0 | 170,888,014,402 | 1% | ||
fulltimegeek | 0 | 150,610,438,642 | 1% | ||
timcliff | 0 | 34,638,457,715 | 6% | ||
lenatramper | 0 | 1,400,329,430 | 1% | ||
triverse | 0 | 266,892,762 | 1% | ||
bitfairy | 0 | 4,787,133,184 | 100% | ||
kingxerxesdex | 0 | 98,893,684 | 0.4% | ||
petervroom | 0 | 530,291,049 | 100% | ||
xymaros | 0 | 67,568,863 | 40% | ||
cmplxty | 0 | 602,413,243 | 100% |
Thanks so much for your comment - do you have to call us 'STINC' though? Just sayin' 🙂
author | justinw |
---|---|
permlink | re-moon32walker-re-steemitblog-exploring-steem-scalability-20180410t195333530z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 19:53:33 |
last_update | 2018-04-10 19:53:33 |
depth | 2 |
children | 4 |
last_payout | 2018-04-17 19:53:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.454 HBD |
curator_payout_value | 0.147 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 86 |
author_reputation | 15,502,058,309,908 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,366,010 |
net_rshares | 135,054,346,279 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lukestokes | 0 | 126,473,980,478 | 4% | ||
greenstar | 0 | 999,224,624 | 4% | ||
instatrashed | 0 | 7,581,141,177 | 38% |
Oh, I thought that was just a short version for SteemitINC, not saying that you stink or something :)
author | moon32walker |
---|---|
permlink | re-justinw-re-moon32walker-re-steemitblog-exploring-steem-scalability-20180410t195802140z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 19:58:03 |
last_update | 2018-04-10 19:58:03 |
depth | 3 |
children | 3 |
last_payout | 2018-04-17 19: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 | 101 |
author_reputation | 149,463,019,364,353 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,366,619 |
net_rshares | 0 |
Yes STEEM is a great platform. It is a paradigm shift. Nothing happens overnight. And the good thing is that if we don't like something about it we can fix it. What if we all focused on fixing the issues along the way?
author | petervroom |
---|---|
permlink | re-moon32walker-re-steemitblog-exploring-steem-scalability-20180412t041445434z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-12 04:14:48 |
last_update | 2018-04-12 04:14:48 |
depth | 2 |
children | 0 |
last_payout | 2018-04-19 04:14:48 |
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 | 221 |
author_reputation | 12,060,305,749,902 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,605,263 |
net_rshares | 599,311,328 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
petervroom | 0 | 599,311,328 | 100% |
Terimakasih @good-karma
author | muhammadhusen1 | ||||||
---|---|---|---|---|---|---|---|
permlink | re-steemitblog-2018411t33312638z | ||||||
category | steem | ||||||
json_metadata | {"tags":["steem","steemd","steemdev","steemitdev","witness-category"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-04-10 20:33:27 | ||||||
last_update | 2018-04-10 20:33:27 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-04-17 20:33: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 | 23 | ||||||
author_reputation | 81,759,844,997 | ||||||
root_title | "Exploring Steem Scalability" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 49,370,871 | ||||||
net_rshares | 0 |
useful information......
author | murtaza78 |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180411t143521270z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-11 14:35:21 |
last_update | 2018-04-11 14:35:21 |
depth | 1 |
children | 0 |
last_payout | 2018-04-18 14:35:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 24 |
author_reputation | 546,496,403,284 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,505,601 |
net_rshares | 0 |
I have resteem your articles so that people know more about steemit, your article is very useful to everyone and especially to the citizens of steemit, thanks
author | muzawir85 |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180411t051817880z |
category | steem |
json_metadata | {"tags":["steem"],"community":"busy","app":"busy/2.4.0"} |
created | 2018-04-11 05:18:21 |
last_update | 2018-04-11 05:18:21 |
depth | 1 |
children | 0 |
last_payout | 2018-04-18 05:18:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 158 |
author_reputation | 811,450,339,001 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,429,796 |
net_rshares | 0 |
I have been noticing some glitches since I have been on steemit. Hopefully it does turn out to be majorly scalable. Keep up the hard work. It will be interesting to see what the future holds.
author | mysearchisover |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180410t174628156z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 17:46:30 |
last_update | 2018-04-10 17:46:30 |
depth | 1 |
children | 0 |
last_payout | 2018-04-17 17:46:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.261 HBD |
curator_payout_value | 0.081 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 191 |
author_reputation | 106,037,311,868,398 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,348,436 |
net_rshares | 77,021,486,321 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mysearchisover | 0 | 2,482,878,496 | 100% | ||
estabond | 0 | 74,538,607,825 | 1.66% |
Important topic
author | njibril | ||||||
---|---|---|---|---|---|---|---|
permlink | re-steemitblog-2018412t145910208z | ||||||
category | steem | ||||||
json_metadata | {"tags":["steem","steemd","steemdev","steemitdev","witness-category"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-04-12 13:59:18 | ||||||
last_update | 2018-04-12 13:59:18 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-04-19 13:59: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 | 15 | ||||||
author_reputation | 2,193,564,504 | ||||||
root_title | "Exploring Steem Scalability" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 49,680,208 | ||||||
net_rshares | 0 |
Thank you so much for your post. I've been doing research on what it would cost to set up a progressive full witness- one that doesn't need upgrade for awhile. And the costs of running it, and ways of mitigating those costs. This article has given me much to think about.
author | omitaylor |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180411t024211875z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-11 02:42:15 |
last_update | 2018-04-11 02:42:15 |
depth | 1 |
children | 0 |
last_payout | 2018-04-18 02:42: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 | 271 |
author_reputation | 3,986,872,420,584 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,411,128 |
net_rshares | 0 |
Your post title was one of the 1,262 top trending titles on 11th April 2018, which I reviewed to find out the most [frequently mentioned topics on top Steemit posts](https://steemit.com/steem/@online-scribe/steemit-is-self-obsessed-a-review-of-1-262-top-trending-titles). One of the topics, which features in your title, is STEEM which had 82 mentions in the 1,262 top trending titles.
author | online-scribe |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180611t101010869z |
category | steem |
json_metadata | {"tags":["steem"],"links":["https://steemit.com/steem/@online-scribe/steemit-is-self-obsessed-a-review-of-1-262-top-trending-titles"],"app":"steemit/0.1"} |
created | 2018-06-11 10:10:12 |
last_update | 2018-06-11 10:10:12 |
depth | 1 |
children | 0 |
last_payout | 2018-06-18 10:10: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 | 386 |
author_reputation | 108,240,259 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 60,272,446 |
net_rshares | 0 |
Many concerns and discontents regarding this information have many users. I hope they publish information soon, providing a stable solution for both parties.
author | ordosjc |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180412t023409442z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-12 02:06:30 |
last_update | 2018-04-12 02:06:30 |
depth | 1 |
children | 0 |
last_payout | 2018-04-19 02:06: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 | 157 |
author_reputation | 75,430,169,134,409 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,591,155 |
net_rshares | 0 |
Very good explanation, the cryptocurrency came to stay for along time. It's a good time to know how to take advantage of it!
author | paulavg |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180410t174817284z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 17:48:12 |
last_update | 2018-04-10 17:48:12 |
depth | 1 |
children | 0 |
last_payout | 2018-04-17 17:48: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 | 124 |
author_reputation | 2,247,178,691,414 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,348,685 |
net_rshares | 0 |
I really like what you do, I always follow your post, congratulations is still
author | pbfundacion |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180411t112206617z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-11 10:51:12 |
last_update | 2018-04-11 10:51:12 |
depth | 1 |
children | 0 |
last_payout | 2018-04-18 10:51: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 | 78 |
author_reputation | 1,776,812,833 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,471,408 |
net_rshares | 0 |
This post is very nice, it shows that you care a lot and work hard to do it ... congratulations men
author | petertomas |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180411t110904685z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-11 10:38:15 |
last_update | 2018-04-11 10:38:15 |
depth | 1 |
children | 0 |
last_payout | 2018-04-18 10:38: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 | 99 |
author_reputation | 101,466,805,085 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,469,607 |
net_rshares | 0 |
Don't forget about security, Steemit 's had a couple of DDOS attacks. I hope it doesn't become a frequent issue.
author | rainbowme |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180411t043220497z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-11 04:32:24 |
last_update | 2018-04-11 04:32:24 |
depth | 1 |
children | 0 |
last_payout | 2018-04-18 04:32: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 | 112 |
author_reputation | 2,062,045,037,213 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,424,404 |
net_rshares | 0 |
BEWARE OF SMARTSTEEM!!! It has downvoted many users. Smartsteem gang attacked me too.....Noticed the warning of @savemax about smartsteem bot. Savemax is telling the truth, smartsteem attacked me too. The reason is very funny. Savemax had transferred some SBD to me, selling his SBD and buying INR from me. So smartsteem thought that my account also belongs to @savemax, and started attacking me too. All the accounts associated with smartsteem like @clvr , @therealwolf , @smartmarket @mac-bot , @spaminator , @prowler , @kuminga, @blacklist-a , and @steemcleaners which are mentioned in the post of @savemax, down-voted all my posts and wiped out all the earnings I made. This is very un-ethical. Tomorrow, if @savemax transfers some SBD to some other reputed account, smartsteem and his gangs will attack that account too. @savemax is telling the truth, Do not use smartsteem, otherwise you may sometimes lose all the transferred money without getting an up-vote. You cannot even ask the money back, then they will start attacking you too, like they did with @savemax. I am conveying this message to maximum people who are posting links using steembottracker.
author | randumoonnid |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180413t033124522z |
category | steem |
json_metadata | {"tags":["steem"],"users":["savemax","clvr","therealwolf","smartmarket","mac-bot","spaminator","prowler","kuminga","blacklist-a","steemcleaners"],"app":"steemit/0.1"} |
created | 2018-04-13 03:31:27 |
last_update | 2018-04-13 03:31:27 |
depth | 1 |
children | 0 |
last_payout | 2018-04-20 03:31: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 | 1,164 |
author_reputation | -2,066,660,560 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,783,095 |
net_rshares | -22,441,763,119 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
therealwolf | 0 | -17,946,485,316 | -2% | ||
mack-bot | 0 | -4,495,277,803 | -0.03% |
Nice one.
author | remux2 | ||||||
---|---|---|---|---|---|---|---|
permlink | re-steemitblog-2018412t02446925z | ||||||
category | steem | ||||||
json_metadata | {"tags":["steem","steemd","steemdev","steemitdev","witness-category"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-04-11 17:24:51 | ||||||
last_update | 2018-04-11 17:24:51 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-04-18 17:24: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 | 9 | ||||||
author_reputation | 26,747,636 | ||||||
root_title | "Exploring Steem Scalability" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 49,532,348 | ||||||
net_rshares | 0 |
Would you be able to folks please quit making new records until the point that you can appropriately relieve the exploiters that are making gigantic botnets and siphoning rewards from the pool.You need to discuss scaling and assets? The greater part of the asset issues we have around here are straightforwardly identified with misuses/spammers.problems that lie specifically at the feet of stinc, through later the last couple of hard forks and record creation.
author | ripon063 |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180411t093509866z |
category | steem |
json_metadata | {"tags":["steem"],"community":"busy","app":"busy/2.4.0"} |
created | 2018-04-11 09:35:09 |
last_update | 2018-04-11 09:36:00 |
depth | 1 |
children | 1 |
last_payout | 2018-04-18 09: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 | 462 |
author_reputation | 213,717,337,079 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,461,627 |
net_rshares | -53,892,205,585 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ats-david | 0 | -35,573,473,202 | -2% | ||
dan-bn | 0 | -18,318,732,383 | -2% |
I hate to say it, but it's true. I'm going to wait until the multiple services can be run across different server. That's going to be interesting.
author | cambridgeport90 |
---|---|
permlink | re-ripon063-re-steemitblog-exploring-steem-scalability-20180412t012825756z |
category | steem |
json_metadata | {"tags":["steem"],"community":"busy","app":"busy/2.4.0"} |
created | 2018-04-12 01:28:30 |
last_update | 2018-04-12 01:28:30 |
depth | 2 |
children | 0 |
last_payout | 2018-04-19 01:28: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 | 146 |
author_reputation | 1,401,167,981,030 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,586,906 |
net_rshares | 0 |
Hi, I just followed you :-) Follow back @romyjaykar
author | romyjaykar | ||||||
---|---|---|---|---|---|---|---|
permlink | re-steemitblog-2018419t153413295z | ||||||
category | steem | ||||||
json_metadata | {"tags":["steem","steemd","steemdev","steemitdev","witness-category"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-04-19 08:38:09 | ||||||
last_update | 2018-04-19 08:38:09 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-04-26 08:38: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 | 51 | ||||||
author_reputation | 5,060,713,234 | ||||||
root_title | "Exploring Steem Scalability" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 50,907,754 | ||||||
net_rshares | 0 |
Excelente publicación y muy acertada!
author | sarita13 |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180414t204409898z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-14 20:44:03 |
last_update | 2018-04-14 20:44:03 |
depth | 1 |
children | 0 |
last_payout | 2018-04-21 20:44: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 | 37 |
author_reputation | 156,981,199,932 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 50,089,340 |
net_rshares | 0 |
you guys are brilliant! Keep up the good work. Many people will be aggravated with improvements they see as important. But things take time and money to grow. In the amount of time steemit has existed, very incredible accomplishments have been made. Shout outs to everyone involved.
author | scraped | ||||||
---|---|---|---|---|---|---|---|
permlink | re-steemitblog-2018410t205144687z | ||||||
category | steem | ||||||
json_metadata | {"tags":["steem","steemd","steemdev","steemitdev","witness-category"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-04-11 03:51:48 | ||||||
last_update | 2018-04-11 03:51:48 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-04-18 03:51:48 | ||||||
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 | 282 | ||||||
author_reputation | 731,026,789,042 | ||||||
root_title | "Exploring Steem Scalability" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 49,419,408 | ||||||
net_rshares | 0 |
i agree with your article but the question is scaling challenges will not completely go away so ...what is you move in controlling it. @ned @steemitblog we need to know ...Please reply since you said we should share our thought on it.
author | smokeasare165 |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180411t123908423z |
category | steem |
json_metadata | {"tags":["steem"],"users":["ned","steemitblog"],"app":"steemit/0.1"} |
created | 2018-04-11 12:39:39 |
last_update | 2018-04-11 12:39:39 |
depth | 1 |
children | 0 |
last_payout | 2018-04-18 12:39: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 | 234 |
author_reputation | 514,137,420,082 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,486,827 |
net_rshares | 0 |
FWIW, /dev/shm does not imply physical RAM. It is backed by virtual memory which can include swap. A properly configured system with the state file in /dev/shm will require less physical RAM and/or perform better with the same amount of RAM than one using a disk file (at least on Linux; I can't comment on other OSs). The trade-off is lack of persistence of the file across reboots (unless it is explicitly copied).
author | smooth |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180411t035136000z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-11 03:51:39 |
last_update | 2018-04-11 03:51:39 |
depth | 1 |
children | 0 |
last_payout | 2018-04-18 03:51:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.974 HBD |
curator_payout_value | 0.557 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 416 |
author_reputation | 253,602,537,834,068 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,419,383 |
net_rshares | 564,584,166,571 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
smooth | 0 | 21,661,825,430 | 1% | ||
ausbitbank | 0 | 84,969,897,522 | 1% | ||
brianphobos | 0 | 21,018,051,673 | 16% | ||
dragosroua | 0 | 46,029,165,305 | 10% | ||
drakos | 0 | 390,366,205,135 | 50% | ||
rogeriomlima | 0 | 539,021,506 | 100% |
> P.S. Don't forget to share your thoughts, objections, and insights in the comments! I cannot offer you my thoughts, for that would make them *our* thoughts.
author | son-of-satire |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180412t151356377z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-12 15:13:54 |
last_update | 2018-04-12 15:13:54 |
depth | 1 |
children | 0 |
last_payout | 2018-04-19 15:13:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 159 |
author_reputation | 112,996,205,695,573 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,691,675 |
net_rshares | 0 |
> the majority of blockchain transactions occurring globally are being done on Steem. Love it! Thank you for the update!
author | steemcommunity |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180410t161816476z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 16:18:15 |
last_update | 2018-04-10 16:18:15 |
depth | 1 |
children | 0 |
last_payout | 2018-04-17 16:18: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 | 122 |
author_reputation | 9,693,448,936,951 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,335,271 |
net_rshares | 3,501,055,153 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abh12345 | 0 | 3,501,055,153 | 1% |
This is fascinating stuff. I'm interested to see how Steem/Steemit can scale to many millions of users, as it must do to compete. You can't just keep adding memory forever. How much of a bottleneck is CPU?
author | steevc |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180410t180352706z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 18:03:51 |
last_update | 2018-04-10 18:03:51 |
depth | 1 |
children | 1 |
last_payout | 2018-04-17 18:03:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.116 HBD |
curator_payout_value | 0.036 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 205 |
author_reputation | 1,390,063,403,814,506 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,351,012 |
net_rshares | 34,694,223,209 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
timcliff | 0 | 34,694,223,209 | 7% |
CPU has not been the bottleneck in steemd - but with the release of appbase it can be. Making CPU the bottleneck is actually a good thing because then it becomes horizontally scalable based on usage. It gives you a metric that you can actually scale instances on - previously it was based on the number of requests, which is difficult to guess at because certain requests can take longer than others. To answer the question directly, appbase steemd can handle an extremely large number of requests before becoming bottlenecked by CPU.
author | justinw |
---|---|
permlink | re-steevc-re-steemitblog-exploring-steem-scalability-20180410t192211951z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 19:22:12 |
last_update | 2018-04-10 19:22:12 |
depth | 2 |
children | 0 |
last_payout | 2018-04-17 19:22:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 2.608 HBD |
curator_payout_value | 0.863 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 534 |
author_reputation | 15,502,058,309,908 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,361,947 |
net_rshares | 777,791,797,382 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
acidyo | 0 | 769,081,322,816 | 5% | ||
steevc | 0 | 8,710,474,566 | 3% | ||
xymaros | 0 | 0 | 40% |
Great! Thank you!
author | sunrise1601 | ||||||
---|---|---|---|---|---|---|---|
permlink | re-steemitblog-2018410t21532895z | ||||||
category | steem | ||||||
json_metadata | {"tags":["steem","steemd","steemdev","steemitdev","witness-category"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-04-10 18:53:36 | ||||||
last_update | 2018-04-10 18:53:36 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-04-17 18:53:36 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 17 | ||||||
author_reputation | 27,072,954,834 | ||||||
root_title | "Exploring Steem Scalability" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 49,358,161 | ||||||
net_rshares | 0 |
Really i appreciate you.Thanks for your content written.
author | taarzan |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180410t162934377z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 16:33:27 |
last_update | 2018-04-10 16:33:27 |
depth | 1 |
children | 0 |
last_payout | 2018-04-17 16:33: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 | 56 |
author_reputation | -51,037,322,517 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,337,473 |
net_rshares | 581,269,134 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
taarzan | 0 | 581,269,134 | 100% |
Bitcoin isn't "stuck at a standstill" with scaling. Its called "Lightning" and its on the main-net now. ETH however, has a much longer road to travel since "Cryptokats" is clogging their blockchain with data. As far as Steemit is concerned, Delegated Proof-of-Stake will always have scaling problems, no matter how much RAM you throw at it. All you're doing is making sure the end-user node requirements increase to the point where no reasonable machine can sustain it. *(Without being located in server racks at a co-location facility.)* Its the same path a lot of failed coins have traveled, and you're going to have to come up with some better solutions than pushing up the requirements. But who am I kidding, the Reward Pool abuse is rampant, a significant part of the platform is all bots -- so there won't be any future at this rate.
author | talltim |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180410t173325628z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 17:34:03 |
last_update | 2018-04-10 17:34:03 |
depth | 1 |
children | 16 |
last_payout | 2018-04-17 17:34: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 | 843 |
author_reputation | 3,763,634,798,681 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,346,624 |
net_rshares | 0 |
> As far as Steemit is concerned, Delegated Proof-of-Stake will always have scaling problems, no matter how much RAM you throw at it. All you're doing is making sure the end-user node requirements increase to the point where no reasonable machine can sustain it. (Without being located in server racks at a co-location facility.) Can you elaborate on this? What scaling concerns are you referring to? Are you also saying that PoW blockchains _don’t_ have these concerns too?
author | timcliff |
---|---|
permlink | re-talltim-re-steemitblog-exploring-steem-scalability-20180410t185515723z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 18:55:15 |
last_update | 2018-04-10 18:55:15 |
depth | 2 |
children | 15 |
last_payout | 2018-04-17 18:55: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 | 475 |
author_reputation | 272,954,445,077,789 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,358,386 |
net_rshares | 0 |
I think there is a (small!) bit of a valid point here in that nobody really claims PoW blockchains scale well (okay maybe the extreme big blocker faction?). PoW is trying to do something (permissionless system, nodes on non-dedicated hardware, objective global consensus, etc.) that isn't really focused on scaling as a primary design goal. However, by contrast DPoS is very much built around a premise of scaling and projects (and Graphene in particular) have a history of making extreme claims about scalability (such as 100K TPS or higher, claims of being able to support Reddit-scale in the Steem white paper, etc.) which are often narrowly made to the point of being misleading IMO. CPU-wise it might be valid to throw around these bold claims, but can you imagine how fast the blockchain would grow and how unmanageable it would quickly (!) become if someone actually tried to do this? (Not to mention other issues such as bandwidth, etc.) So measured against the claims, I think it is fair to say that DPoS has more scaling 'problems' because its claims and ambitions are much higher.
author | smooth |
---|---|
permlink | re-timcliff-re-talltim-re-steemitblog-exploring-steem-scalability-20180411t040027900z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-11 04:00:30 |
last_update | 2018-04-11 04:00:30 |
depth | 3 |
children | 1 |
last_payout | 2018-04-18 04:00:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.071 HBD |
curator_payout_value | 0.023 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,095 |
author_reputation | 253,602,537,834,068 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,420,531 |
net_rshares | 21,389,855,591 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
andybets | 0 | 21,389,855,591 | 100% |
I didn't say that PoW didn't have scaling concerns - I'm just VERY concerned that a RAM allocation tweak is the path that DPoS is going, knowing that Proof-of-Stake has its own unique problems. But you know what, I don't have to go down that rabbit hole -- if Steemit is still functioning a year from now with a larger user base, then I'll be wrong -- otherwise, I see this as a step down the path to ruin.
author | talltim |
---|---|
permlink | re-timcliff-re-talltim-re-steemitblog-exploring-steem-scalability-20180410t192223728z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 19:23:00 |
last_update | 2018-04-10 19:23:00 |
depth | 3 |
children | 12 |
last_payout | 2018-04-17 19:23:00 |
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 | 407 |
author_reputation | 3,763,634,798,681 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,362,046 |
net_rshares | 0 |
Thank you for addressing the scaling challenges and how steemit working on solutions to stay ahead, excellent news! Please continue to provide regular updates on planned developments / improvements since this gives people, including me confidence about steems future.
author | tarekadam |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180410t183511029z |
category | steem |
json_metadata | {"tags":["steem"],"community":"busy","app":"busy/2.4.0"} |
created | 2018-04-10 18:35:12 |
last_update | 2018-04-10 18:35:12 |
depth | 1 |
children | 0 |
last_payout | 2018-04-17 18:35:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.129 HBD |
curator_payout_value | 0.023 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 269 |
author_reputation | 50,131,776,387,207 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,355,572 |
net_rshares | 34,679,985,239 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
timcliff | 0 | 34,679,985,239 | 7% |
I have a question....this blockchain was created with 3 second transaction time...is that something that could slow down if the scaling you mention in here is not done? Would we see a backlog of transactions, potentially, like BTC and ETH experience? Or is the scaling issues more to do with the time it takes the applications created to interact with the blockchain?
author | taskmaster4450 |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180410t171910238z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 17:19:09 |
last_update | 2018-04-10 17:19:09 |
depth | 1 |
children | 1 |
last_payout | 2018-04-17 17:19:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.144 HBD |
curator_payout_value | 0.007 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 369 |
author_reputation | 6,703,447,198,724,889 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,344,433 |
net_rshares | 34,645,972,232 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
timcliff | 0 | 34,645,972,232 | 6% |
Those are great questions! The block interval does not impact scaling in any way other than the fact that it is part of defining the maximum growth of the blockchain itself (not state size). `max_block_size / block_interval` is the maximum growth rate for the blockchain in bytes. We are not experiencing any problems in the live performance of the blockchain. We would likely only consider changing the block interval if there was a compelling reason to for the benefit of live performance. Some of the changes we have been working on do specifically target response times for our APIs. Appbase parallelizes all API requests. Previously, requests were handled serially. This doesn't scale well and is a waste of resources as almost all computers now have multiple CPU cores. With Appbase, we are now utilizing the other 90% of our servers that weren't being touched previously.
author | vandeberg |
---|---|
permlink | re-taskmaster4450-re-steemitblog-exploring-steem-scalability-20180410t183145391z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 18:31:45 |
last_update | 2018-04-10 18:31:45 |
depth | 2 |
children | 0 |
last_payout | 2018-04-17 18:31:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 2.753 HBD |
curator_payout_value | 0.787 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 880 |
author_reputation | 31,759,426,110,944 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,355,070 |
net_rshares | 791,201,931,145 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
acidyo | 0 | 769,081,322,816 | 5% | ||
andybets | 0 | 22,065,324,714 | 100% | ||
xymaros | 0 | 55,283,615 | 40% |
...my account was hacked last night and the bot created a phishing site link here in the comments from my account ... the link is now removed... Today I got my account back.. sorry about that :( :( :( thanks.
author | tastetwist |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180412t072128838z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-12 07:21:27 |
last_update | 2018-04-13 00:58:33 |
depth | 1 |
children | 0 |
last_payout | 2018-04-19 07:21: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 | 211 |
author_reputation | 5,449,724,092,548 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,627,685 |
net_rshares | 0 |
thanks for the great and the simple explanation this post encouraged me to join the witness team ;) soon
author | thegoldenphoenix |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180410t215926922z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 21:59:48 |
last_update | 2018-04-10 22:01:03 |
depth | 1 |
children | 0 |
last_payout | 2018-04-17 21:59:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.510 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 104 |
author_reputation | 10,798,378,750,231 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,380,494 |
net_rshares | 115,033,506,169 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
maurocostarica | 0 | 4,811,505,042 | 26% | ||
philippbuxbaum | 0 | 4,190,700,340 | 100% | ||
mr-riddle | 0 | 4,899,371,310 | 45% | ||
glitterbooster | 0 | 16,242,066,557 | 79% | ||
akilie1029 | 0 | 4,793,165,953 | 100% | ||
simplifylife | 0 | 4,827,389,372 | 16% | ||
nehomar | 0 | 16,178,029,983 | 57% | ||
alunt | 0 | 6,070,751,546 | 19% | ||
seaofhappy | 0 | 4,875,772,204 | 56% | ||
mikromixstudio | 0 | 4,919,690,014 | 95% | ||
aandebickel | 0 | 31,366,070,392 | 77% | ||
minnowunited | 0 | 11,858,993,456 | 36% |
Looking forward to seeing how this turns out. As someone running three witness node and five full nodes, these changes are long overdue and hope they provide some relief. I hope to see more frequent detailed communication from Steemit Inc in the future like this.
author | themarkymark |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180410t214938038z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 21:49:27 |
last_update | 2018-04-10 21:49:27 |
depth | 1 |
children | 0 |
last_payout | 2018-04-17 21:49:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.589 HBD |
curator_payout_value | 0.529 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 266 |
author_reputation | 1,779,979,587,325,976 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,379,420 |
net_rshares | 476,182,958,305 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ipromote | 0 | 476,182,958,305 | 7% |
Finally, after 41 days - @ned upvoted again.. ;) But on a serious note - great job @andrarchy (my guess is that you've written that one) for keeping us updated and to the whole Steemit-Team (esp. Devs) for your passion and work. Really excited for the future!
author | therealwolf |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180410t173527964z |
category | steem |
json_metadata | {"tags":["steem"],"users":["ned","andrarchy"],"app":"steemit/0.1"} |
created | 2018-04-10 17:35:27 |
last_update | 2018-04-10 17:35:27 |
depth | 1 |
children | 1 |
last_payout | 2018-04-17 17:35: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 | 261 |
author_reputation | 582,138,173,205,205 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,346,846 |
net_rshares | 0 |
Thanks, it's definitely a team effort as many of these solutions involve different projects and different people. Many of our devs took time out of their busy schedules to contribute.
author | andrarchy |
---|---|
permlink | re-therealwolf-re-steemitblog-exploring-steem-scalability-20180410t174344440z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 17:43:45 |
last_update | 2018-04-10 17:43:45 |
depth | 2 |
children | 0 |
last_payout | 2018-04-17 17:43:45 |
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 | 183 |
author_reputation | 230,168,201,522,782 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,348,016 |
net_rshares | 0 |
excellent post, congratulations
author | tomasbonillo |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180411t113513166z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-11 11:04:21 |
last_update | 2018-04-11 11:04:21 |
depth | 1 |
children | 0 |
last_payout | 2018-04-18 11:04:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 31 |
author_reputation | -124,974,922,807 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,473,155 |
net_rshares | 0 |
I DON'T NEED A SCALE BECAUSE I HAVE ONE IN MY BATHROOM ALREADY! YOU'RE NOT MY MOM.
author | toshlenoir |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180411t202435290z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-11 20:24:36 |
last_update | 2018-04-11 20:24:36 |
depth | 1 |
children | 0 |
last_payout | 2018-04-18 20:24:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 82 |
author_reputation | 24,623,890,556 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,555,810 |
net_rshares | 954,435,450 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
eyvindur | 0 | 602,772,897 | 100% | ||
toshlenoir | 0 | 351,662,553 | 100% |
Keep up the good work !
author | tsnaks |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180410t174617702z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 17:46:18 |
last_update | 2018-04-10 17:46:18 |
depth | 1 |
children | 0 |
last_payout | 2018-04-17 17:46: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 | 23 |
author_reputation | 65,052,747,733,868 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,348,406 |
net_rshares | 0 |
To listen to the audio version of this article click on the play image. [](http://ec2-52-72-169-104.compute-1.amazonaws.com/steemitblog__exploring-steem-scalability.mp3) Brought to you by [@tts](https://steemit.com/tts/@tts/introduction). If you find it useful please consider upvote this reply.
author | tts |
---|---|
permlink | re-exploring-steem-scalability-20180410t162132 |
category | steem |
json_metadata | "" |
created | 2018-04-10 16:21:33 |
last_update | 2018-04-10 16:21:33 |
depth | 1 |
children | 0 |
last_payout | 2018-04-17 16:21:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 348 |
author_reputation | -4,535,154,553,995 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,335,743 |
net_rshares | 0 |

author | veerall |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180411t163635894z |
category | steem |
json_metadata | {"tags":["steem"],"image":["https://steemitimages.com/DQmXEzsNxGCYNjbMLLAiTY39mpCYGUDojTSjG4cMbUqAoK9/yawn.gif"],"app":"steemit/0.1"} |
created | 2018-04-11 16:36:36 |
last_update | 2018-04-11 16:36:36 |
depth | 1 |
children | 0 |
last_payout | 2018-04-18 16:36:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 95 |
author_reputation | 712,449,874,678 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,525,063 |
net_rshares | 0 |
Hey team, the way you handle so many daily transactions leaves me to think you definitely know what you are doing with scaling. Keep up the good work. All we need is communities or some kind of organizing on this site and it can be a top 100 trafficked site no problem.
author | whatageek |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180410t163825146z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 16:38:24 |
last_update | 2018-04-10 17:11:27 |
depth | 1 |
children | 5 |
last_payout | 2018-04-17 16:38:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 2.923 HBD |
curator_payout_value | 0.007 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 269 |
author_reputation | 368,086,984,838,827 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,338,251 |
net_rshares | 653,489,714,355 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
whatageek | 0 | 652,889,430,320 | 100% | ||
rogeriomlima | 0 | 548,209,373 | 100% | ||
thedreamsun66 | 0 | 52,074,662 | 100% |
There are many things beyond this post that should of been covered, sure steem handles an impressive amount of transactions, does that make it the best blockchain? **we need accountability, on this platform much so with the rampant amount of bots running loose.**
author | chronocrypto |
---|---|
permlink | re-whatageek-re-steemitblog-exploring-steem-scalability-20180410t164419703z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 16:44:21 |
last_update | 2018-04-10 16:44:21 |
depth | 2 |
children | 0 |
last_payout | 2018-04-17 16:44:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.146 HBD |
curator_payout_value | 0.375 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 265 |
author_reputation | 380,490,357,539,783 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,339,116 |
net_rshares | 339,069,259,597 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fulltimegeek | 0 | 150,600,009,780 | 1% | ||
novacadian | 0 | 7,599,593,980 | 50% | ||
seekerjuice | 0 | 295,319,046 | 100% | ||
chronocrypto | 0 | 180,574,336,791 | 100% |
### <center>Congrats, you made the @dtube #steemitminute for today! Click the Image Below <center><a href='https://d.tube/#!/v/reseller/v5aol89n'><img src='https://ipfs.io/ipfs/QmasDXSE8mb4CnnK4gahif3F11Aiq8j4mkX4VjXdRFt8vi'></a></center><hr>
author | reseller |
---|---|
permlink | re-whatageek-re-steemitblog-exploring-steem-scalability-20180410t200225531z |
category | steem |
json_metadata | {"tags":["steem","steemitminute"],"users":["dtube"],"image":["https://ipfs.io/ipfs/QmasDXSE8mb4CnnK4gahif3F11Aiq8j4mkX4VjXdRFt8vi"],"links":["https://d.tube/#!/v/reseller/v5aol89n"],"app":"steemit/0.1"} |
created | 2018-04-10 20:02:33 |
last_update | 2018-04-10 20:02:33 |
depth | 2 |
children | 1 |
last_payout | 2018-04-17 20:02:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 242 |
author_reputation | 396,642,162,962,533 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,367,178 |
net_rshares | 0 |
Where do I get one of those fancy Dtube shirts?
author | wheresthemapinfo |
---|---|
permlink | re-reseller-re-whatageek-re-steemitblog-exploring-steem-scalability-20180410t214524379z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 21:45:27 |
last_update | 2018-04-10 21:45:27 |
depth | 3 |
children | 0 |
last_payout | 2018-04-17 21:45: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 | 47 |
author_reputation | 585,279,429 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,378,970 |
net_rshares | 0 |
Absolutely Agreed !
author | tsnaks |
---|---|
permlink | re-whatageek-re-steemitblog-exploring-steem-scalability-20180410t174639990z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 17:46:42 |
last_update | 2018-04-10 17:46:42 |
depth | 2 |
children | 1 |
last_payout | 2018-04-17 17:46: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 | 19 |
author_reputation | 65,052,747,733,868 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,348,465 |
net_rshares | 0 |
Agreed.
author | ontheverge |
---|---|
permlink | re-tsnaks-re-whatageek-re-steemitblog-exploring-steem-scalability-20180410t194704264z |
category | steem |
json_metadata | {"tags":["steem"],"community":"busy","app":"busy/2.4.0"} |
created | 2018-04-10 17:47:21 |
last_update | 2018-04-10 17:47:21 |
depth | 3 |
children | 0 |
last_payout | 2018-04-17 17:47:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.042 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 7 |
author_reputation | 1,902,528,118,381 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,348,563 |
net_rshares | 9,533,343,879 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ontheverge | 0 | 9,533,343,879 | 100% |
Working on improving the front end is more important than scaling issues right now because it is impossible to find good content on Steemit. Furthermore, Steemit doesn't offer advanced features like notifications compared to busy.org.
author | wil1liam |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180411t155548870z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-11 15:56:03 |
last_update | 2018-04-11 15:56:03 |
depth | 1 |
children | 0 |
last_payout | 2018-04-18 15:56:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.045 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 234 |
author_reputation | 1,063,086,811,817 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,518,897 |
net_rshares | 10,080,171,958 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
wil1liam | 0 | 10,080,171,958 | 100% |
Most people just hop in the car and go. + They could care less about how the car works and all it's interrelated systems. + Me, on the other hand, like learning how things work. + Enjoyed the info. <h1>👌</h1>
author | wizardave |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180410t181326025z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 18:13:30 |
last_update | 2018-04-10 18:13:30 |
depth | 1 |
children | 0 |
last_payout | 2018-04-17 18:13: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 | 222 |
author_reputation | 8,924,945,173,015 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,352,481 |
net_rshares | 0 |
Very detailed article on scaling. Thanks for writing it. Check out this in-depth article on scaling Bitcoin and Bitcoin Cash. Find out the best methods as well as the pros and cons. https://steemit.com/bitcoin/@workin2005/bitcoin-btc-vs-bitcoin-cash-bch-the-great-block-size-debate
author | workin2005 |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180411t180711584z |
category | steem |
json_metadata | {"tags":["steem"],"links":["https://steemit.com/bitcoin/@workin2005/bitcoin-btc-vs-bitcoin-cash-bch-the-great-block-size-debate"],"app":"steemit/0.1"} |
created | 2018-04-11 18:07:12 |
last_update | 2018-04-11 18:07:12 |
depth | 1 |
children | 0 |
last_payout | 2018-04-18 18:07: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 | 281 |
author_reputation | 51,962,092,033,823 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,538,305 |
net_rshares | 0 |
Question. I have heard that steem's nodes are getting bigger. How do I get to know that?
author | yasu24 |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180411t130043332z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-11 13:00:45 |
last_update | 2018-04-11 13:00:45 |
depth | 1 |
children | 0 |
last_payout | 2018-04-18 13:00:45 |
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 | 88 |
author_reputation | 92,815,616,501,543 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,490,009 |
net_rshares | 0 |
@andrarchy and team steemitblog, It's a timely update that we needed for steem. This is a music to my ears. "Steemit recommends 16 GB of RAM, although 8 GB is likely sufficient". I will definitely build a server and test it. I'm still learning the AppBase changes, hopefully I will be able to use it for one of my condenser websites (https://yehey.org) to test its stability and apply to many condenser websites to offer redundancy of uninterrupted access to steem blockchain. Let's keep steeming progress. Thank you.
author | yehey |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180410t212019946z |
category | steem |
json_metadata | {"tags":["steem"],"users":["andrarchy"],"links":["https://yehey.org"],"app":"steemit/0.1"} |
created | 2018-04-10 21:20:21 |
last_update | 2018-04-10 21:20:21 |
depth | 1 |
children | 0 |
last_payout | 2018-04-17 21:20:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 521 |
author_reputation | 22,184,787,552,504 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,376,258 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
adamdonmez | 0 | 0 | 53% |
good work
author | zailushangde |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180817t090205333z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-08-17 09:02:06 |
last_update | 2018-08-17 09:02:06 |
depth | 1 |
children | 0 |
last_payout | 2018-08-24 09:02:06 |
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 | 9 |
author_reputation | 850,012,412 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 68,478,770 |
net_rshares | 0 |
"In other words, the majority of blockchain transactions occurring globally are being done on Steem." This is one of the best things about STEEM. If only we would have a wider public adoption. :(
author | zemiatin |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180410t164533378z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 16:45:36 |
last_update | 2018-04-10 16:45:36 |
depth | 1 |
children | 2 |
last_payout | 2018-04-17 16:45:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 196 |
author_reputation | 16,082,589,690,767 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,339,316 |
net_rshares | 0 |
Sure but lets fix steemit before it goes even more public, its a shit storm right now.
author | chronocrypto |
---|---|
permlink | re-zemiatin-re-steemitblog-exploring-steem-scalability-20180410t171131926z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 17:11:33 |
last_update | 2018-04-10 17:11:45 |
depth | 2 |
children | 1 |
last_payout | 2018-04-17 17:11:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 86 |
author_reputation | 380,490,357,539,783 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,343,274 |
net_rshares | 0 |
This has been the argument for two years. We’re not any closer to making this place *not* a shit storm (and it’s actually worse), nor does it seem that we’re any closer to reaching a more mainstream audience.
author | ats-david |
---|---|
permlink | re-chronocrypto-re-zemiatin-re-steemitblog-exploring-steem-scalability-20180410t212229117z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-10 21:22:27 |
last_update | 2018-04-10 21:22:27 |
depth | 3 |
children | 0 |
last_payout | 2018-04-17 21:22: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 | 208 |
author_reputation | 324,017,334,201,433 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,376,489 |
net_rshares | 4,547,920,600 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ocrdu | 0 | 4,547,920,600 | 100% |
thanks for the explanation sir
author | zidine |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180413t223728503z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-13 22:37:30 |
last_update | 2018-04-13 22:37:30 |
depth | 1 |
children | 0 |
last_payout | 2018-04-20 22:37: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 | 30 |
author_reputation | 1,137,785,523 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,925,991 |
net_rshares | 0 |
Excellent contribution sibling, may you continue blessings greetings
author | zzkali |
---|---|
permlink | re-steemitblog-exploring-steem-scalability-20180411t114538413z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-11 11:14:45 |
last_update | 2018-04-11 11:14:45 |
depth | 1 |
children | 0 |
last_payout | 2018-04-18 11:14:45 |
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 | 68 |
author_reputation | 984,826,473 |
root_title | "Exploring Steem Scalability" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 49,474,567 |
net_rshares | 0 |