create account

The Bandwidth Limitation - Problems and Solutions by drakos

View this thread on: hive.blogpeakd.comecency.com
· @drakos · (edited)
$85.96
The Bandwidth Limitation - Problems and Solutions
<center>https://cdn.pixabay.com/photo/2015/07/13/15/24/traffic-843309_640.jpg</center>

The bandwidth limitation hasn't been resolved yet. It remains a daily bottleneck to many minnows with low SP. The issue has been discussed for a while now among the witnesses, but no concrete action has been implemented. The problem is multidimensional. However, there are some measures that everyone can undertake to help mitigate the issue to reach an acceptable solution. But first, I'll explain the basics of the problem.

## Global bandwidth parameters
The Maximum Virtual Bandwidth represents the amount of the bytes available for all users to share in their transactions. A transaction can be a vote, fund transfer, comment, post... every little thing that's done on the blockchain is a transaction that is signed by the user's **private key** and validated by the system using the user's **public key**.

The Maximum Virtual Bandwidth is calculated with this equation:
`max_virtual_bandwidth = number_of_blocks_per_week * maximum_block_size * current_reserve_ratio`

- **number_of_blocks_per_week**, constant value calculated by: `20 blocks/min * 60 min/hour * 24 hour/day * 7 days/week = 201600`
- **maximum_block_size**, parameter set by witnesses and is currently 65536 bytes.

So in theory, with **only** those two parameters, we can have a maximum of: 
201600 blocks * 65536 bytes = 13212057600 bytes (or 12.3 GB) per week

However, the third parameter **current_reserve_ratio** acts like an anti-spam mechanism to prevent an overflow of the maximum block size. For example, if a block contains more than 65536 bytes, the exceeding transaction(s) would transfer to the next block unless they expire. So to prevent this overflow, the current_reserve_ratio automatically adjusts when the block size hits 25% of its maximum (25% * 65536 = 16384 bytes), thereby decreasing the max_virtual_bandwidth for everyone.

Notice that when querying the blockchain, e.g. with `getState()`:
**current_reserve_ratio** has a maximum of 200,000,000 with a precision of 10^5 (to avoid decimals), so it's actually 20,000.
**max_virtual_bandwidth** has a maximum of 264241152000000000000 with a precision of 10^6 so its value is 264,241,152,000,000 bytes (see below).

So back to our calculations, the total weekly data allowed by the system is:
201600 blocks * 65536 bytes * 20000 = 264241152000000 bytes or (brace yourselves) **240 Terabytes** per week

It's a ridiculously astronomical figure that would make Dr Evil very happy. 
<center>https://i.imgflip.com/251tub.jpg</center>
 
But, since the reserve ratio is kicking in at 25%, we're down to 60 TB per week (still a big number). Fortunately, those are **potential** numbers allowed by the system. To transfer 60 TB of data per week would require a **sustained** amount of transactions saturating the system, which is not the case for now (unless Steem grows to hundreds of millions of users). Furthermore, I don't know why the developers decided to set that 20000 value for the reserve ratio, but something much smaller (e.g. 2000) would have been more realistic.

## Individual bandwidth parameters
So far I've covered the **global** bandwidth parameters handled by the system. The other important consideration is the **bandwidth allocation per user**. Briefly, the calculation relies on a few parameters:
**vesting_shares**, user's own vests
**delegated_vesting_shares**, vests delegated by the user (outgoing)
**received_vesting_shares**, vests received (incoming)
**total_vesting_shares**, global vesting shares

`allocated bandwidth = (vesting_shares + received_vesting_shares - delegated_vesting_shares) / total_vesting_shares * max_virtual_bandwidth / 1000000`
(remember that 10^6 I mentioned earlier)

There's another parameter **average_bandwidth** (weekly average bandwidth), that is used to determine a user's remaining bandwidth. For a detailed calculation check https://steemit.com/utopian-io/@bloodviolet/how-to-calculate-your-remaining-bandwidth-using-steem-python

Hence, the allocated bandwidth depends on the user's total Steem Power and average weekly bandwidth. By **increasing** the Steem Power and **lowering** the weekly usage, a user can **increase** their allocated bandwidth.

## Bandwidth limitation solutions
By understanding how the bandwidth works, we can think of a few solutions for all the blockchain actors to remedy the limitation problem.

### Witnesses
Witnesses can increase the maximum block size which is currently at 65536 bytes. I'm personally in favor of this measure, however two concerns have been brought up:
- Spammers may spam more.
- The hardware requirements will increase, especially the RAM, which is a **huge** setback for scalability at the moment. This not a problem for a witness or exchange node, but for a full RPC node it's more serious.

AppBase should solve some of the scalability issues:
- https://steemit.com/performance/@steemitblog/performance-and-scalability-updates
- https://steemit.com/steem/@steemitdev/appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin

Also, Hardfork 20 promised multi-threading for the `steemd` daemon, but to my knowledge there hasn't been any mention about RAM optimizations neither in AppBase nor in HF20.

Because the algorithms and the daily usage are complex, we can't predict with certainty the extent of increasing the block size. Nonetheless, we can increment the block size by 10% for example and monitor the behavior of the reserve ratio to see if there's any improvement, then adjust the parameter accordingly. If modifying the block size doesn't help, at least we gain this information and move on to other solutions.

### Users
Users can check their bandwidth status at https://steemd.com/@accountname (replace "accountname" with your own, of course). As explained above, users can easily address their own issues by:
- Reducing the weekly transactions.
- Powering up more STEEM.
- Avoiding the rush hours.

### Bots
Many bots usually write a comment when they do their action (e.g. upvote a post, welcome message, etc). Some of those comments are long and often span multiple paragraphs. Eliminating those automated comments or reducing their size can be beneficial. Although not malicious, repetitive comments is spam after all, so do less of it.

### Steemit Inc
One factor that has caused more bandwidth issues for minnows is the fact that Steemit used to create accounts with 57,000 VESTS (~29.5 SP) delegation, but has cut that nearly in half to 29,700 VESTS (~14.5 SP). Also, Steemit has been systematically reducing the old delegations to ~14.5 SP. The reason for that is of course to accommodate the increased sign-ups, but by doing so they unintentionally paved the way to the current bandwidth limitation affecting the minnows.

Fortunately, HF20 promises to address the on-boarding by removing the need to delegate to new accounts by burning the account creation fee instead. So until HF20 is released, I see a few possible options that Steemit can do:
- Reduce or halt the sign-ups.
- Reinstate the 29.5 SP delegation.
- Remove the delegations from accounts that have accumulated a minimally acceptable SP to transact (e.g. 30 SP).
- Accelerate the release of HF20 (obviously).

### Developers
- The developers could tweak the algorithms to be more permissive by increasing the 25% reserve ratio threshold to something like 30-35%, especially during the rush hours.
- Add more verbose information about the bandwidth in the profile page, instead of constantly having to check that on https://steemd.com.

## Final Thoughts
I hope the bandwidth limitation problem improves soon, because it has been frustrating many users for weeks already. It's important for Steemit to provide a comfortable experience. It's one thing to encourage adoption and on-boarding, but it's another thing to see users slapped in the face when they can't transact and being left in the dark about why this is happening.

How about you? Do you have any solutions you'd like to share? Please comment.

I have mentioned rush hours. I will cover that topic in an upcoming post.

***
<center>[![Follow](https://steemitimages.com/DQmZkyG7SyJiSNN6qkxJ9n9darqn51RjWpDnJCKYKEhx3D4/BlueArt.gif)](https://steemit.com/@drakos)
***
#### Available & Reliable. I am your Witness. I want to represent You.
##### &#x1F5F3; If you like what I do, consider voting for me &#x1F5F3;
[![Vote](https://steemitimages.com/DQmfRx7jNSrFAnRZPrKRHLDxR22gRFYTBnKr2uLNdVty3MG/drakos-witness-thanks.gif)](https://steemit.com/~witnesses)
###### If you never voted before, I wrote a detailed guide about [Voting for Witnesses](https://steemit.com/witness-category/@drakos/tips-and-guidelines-voting-for-witnesses).
<sub>Go to https://steemit.com/~witnesses. My name is listed in the Top 50. Click https://steemitimages.com/DQmYq3yGqzvbK4JQFudeXoDp6PEtdny8vSvX5swqW5sA2fE/chevron-up.png once.</sub>
###### Alternatively you can vote via SteemConnect
<sub>https://v2.steemconnect.com/sign/account-witness-vote?witness=drakos&approve=1</sub>
</center>
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 59 others
properties (23)
authordrakos
permlinkthe-bandwidth-limitation-problems-and-solutions
categorywitness-category
json_metadata{"tags":["witness-category","steem","steemit","bandwidth","blog"],"image":["https://cdn.pixabay.com/photo/2015/07/13/15/24/traffic-843309_640.jpg","https://i.imgflip.com/251tub.jpg","https://steemitimages.com/DQmZkyG7SyJiSNN6qkxJ9n9darqn51RjWpDnJCKYKEhx3D4/BlueArt.gif","https://steemitimages.com/DQmfRx7jNSrFAnRZPrKRHLDxR22gRFYTBnKr2uLNdVty3MG/drakos-witness-thanks.gif","https://steemitimages.com/DQmYq3yGqzvbK4JQFudeXoDp6PEtdny8vSvX5swqW5sA2fE/chevron-up.png"],"links":["https://steemit.com/utopian-io/@bloodviolet/how-to-calculate-your-remaining-bandwidth-using-steem-python","https://steemit.com/performance/@steemitblog/performance-and-scalability-updates","https://steemit.com/steem/@steemitdev/appbase-the-next-step-forward-for-the-steem-blockchain-let-the-testing-begin","https://steemd.com/@accountname","https://steemd.com","https://steemit.com/@drakos","https://steemit.com/~witnesses","https://steemit.com/witness-category/@drakos/tips-and-guidelines-voting-for-witnesses","https://v2.steemconnect.com/sign/account-witness-vote?witness=drakos&amp;approve=1"],"app":"steemit/0.1","format":"markdown"}
created2018-02-22 22:04:09
last_update2018-02-23 05:20:12
depth0
children35
last_payout2018-03-01 22:04:09
cashout_time1969-12-31 23:59:59
total_payout_value70.102 HBD
curator_payout_value15.853 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9,072
author_reputation112,280,226,665,329
root_title"The Bandwidth Limitation - Problems and Solutions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,706,455
net_rshares15,447,080,647,959
author_curate_reward""
vote details (123)
@admiralsp ·
I hope this bandwidth issue can be settled once and for all, it can be frustrating sometimes. I really don't understand much of what you said but I do hope the witnesses take a look so I will be resteeming this post.
properties (22)
authoradmiralsp
permlinkre-drakos-the-bandwidth-limitation-problems-and-solutions-20180222t223316076z
categorywitness-category
json_metadata{"tags":["witness-category"],"app":"steemit/0.1"}
created2018-02-22 22:33:42
last_update2018-02-22 22:33:42
depth1
children0
last_payout2018-03-01 22:33:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length216
author_reputation8,279,235,092,307
root_title"The Bandwidth Limitation - Problems and Solutions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,711,277
net_rshares0
@arie78 ·
Antrian panjang
👍  
properties (23)
authorarie78
permlinkre-drakos-2018223t52452425z
categorywitness-category
json_metadata{"tags":["witness-category","steem","steemit","bandwidth","blog"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"}
created2018-02-22 22:24:57
last_update2018-02-22 22:24:57
depth1
children0
last_payout2018-03-01 22:24:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length15
author_reputation1,381,416,453,786
root_title"The Bandwidth Limitation - Problems and Solutions"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,709,830
net_rshares159,428,657
author_curate_reward""
vote details (1)
@ashe-oro ·
very informative and well written article. Thank you. I recommend using the #feedback or #steem-feedback tags.
properties (22)
authorashe-oro
permlinkre-drakos-the-bandwidth-limitation-problems-and-solutions-20180223t060722995z
categorywitness-category
json_metadata{"tags":["witness-category","feedback","steem-feedback"],"app":"steemit/0.1"}
created2018-02-23 06:09:51
last_update2018-02-23 06:09:51
depth1
children0
last_payout2018-03-02 06:09:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length110
author_reputation24,151,212,829,722
root_title"The Bandwidth Limitation - Problems and Solutions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,787,749
net_rshares0
@atmosblack ·
$0.73
Thanks for this awesome post, that made me nearly understand the bandwidth issue, that I have only heard of but fortunately never experienced myself. 😀
👍  
properties (23)
authoratmosblack
permlinkre-drakos-the-bandwidth-limitation-problems-and-solutions-20180222t224442763z
categorywitness-category
json_metadata{"tags":["witness-category"],"community":"busy","app":"busy/2.3.0"}
created2018-02-22 22:44:54
last_update2018-02-22 22:44:54
depth1
children0
last_payout2018-03-01 22:44:54
cashout_time1969-12-31 23:59:59
total_payout_value0.734 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length151
author_reputation17,787,683,795,186
root_title"The Bandwidth Limitation - Problems and Solutions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,713,148
net_rshares175,965,371,936
author_curate_reward""
vote details (1)
@bigtom13 ·
Brutally good explanation with possible solutions short and long term.  

Thank you.
properties (22)
authorbigtom13
permlinkre-drakos-the-bandwidth-limitation-problems-and-solutions-20180222t223311922z
categorywitness-category
json_metadata{"tags":["witness-category"],"app":"steemit/0.1"}
created2018-02-22 22:33:12
last_update2018-02-22 22:33:12
depth1
children0
last_payout2018-03-01 22:33:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length84
author_reputation80,689,630,475,233
root_title"The Bandwidth Limitation - Problems and Solutions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,711,203
net_rshares0
@blervin ·
This is a real problem. Just a few weeks ago when I was totally new and barely had any SP, almost every day I would hit negative bandwidth at peak times, even when I had not commented, upvoted, or done anything for nearly 24 hours.

The learning curve here is insane and new users who show up and face the bandwidth limit are unlikely to even understand what that means and will quickly become discouraged.
👍  
properties (23)
authorblervin
permlinkre-drakos-the-bandwidth-limitation-problems-and-solutions-20180222t233719865z
categorywitness-category
json_metadata{"tags":["witness-category"],"app":"steemit/0.1"}
created2018-02-22 23:37:21
last_update2018-02-22 23:37:21
depth1
children0
last_payout2018-03-01 23:37:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length406
author_reputation3,505,371,433,903
root_title"The Bandwidth Limitation - Problems and Solutions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,721,265
net_rshares155,028,573
author_curate_reward""
vote details (1)
@bushu ·
Thanks a lot for talk about this. Now a days It's a major problem. i appreciate your thinking.
properties (22)
authorbushu
permlinkre-drakos-the-bandwidth-limitation-problems-and-solutions-20180223t035336893z
categorywitness-category
json_metadata{"tags":["witness-category"],"app":"steemit/0.1"}
created2018-02-23 03:53:39
last_update2018-02-23 03:53:39
depth1
children0
last_payout2018-03-02 03:53:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length94
author_reputation125,778,905,679
root_title"The Bandwidth Limitation - Problems and Solutions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,764,126
net_rshares0
@conradt ·
This frustrates me as a newbie as im excited to be here and contributing and exploring new content but I often cant get on and submit my new blogs (I guess I can use that time to research and create even better content tho!)
properties (22)
authorconradt
permlinkre-drakos-the-bandwidth-limitation-problems-and-solutions-20180222t234225996z
categorywitness-category
json_metadata{"tags":["witness-category"],"app":"steemit/0.1"}
created2018-02-22 23:42:24
last_update2018-02-22 23:42:24
depth1
children0
last_payout2018-03-01 23:42:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length224
author_reputation61,803,524,787,457
root_title"The Bandwidth Limitation - Problems and Solutions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,722,043
net_rshares0
@deceth ·
Man, we've got too many bytes...
properties (22)
authordeceth
permlinkre-drakos-the-bandwidth-limitation-problems-and-solutions-20180222t221405664z
categorywitness-category
json_metadata{"tags":["witness-category"],"app":"steemit/0.1"}
created2018-02-22 22:14:09
last_update2018-02-22 22:14:09
depth1
children2
last_payout2018-03-01 22:14:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length32
author_reputation521,223,417,115
root_title"The Bandwidth Limitation - Problems and Solutions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,708,047
net_rshares0
@drakos ·
https://i.imgflip.com/251tub.jpg
👍  
properties (23)
authordrakos
permlinkre-deceth-re-drakos-the-bandwidth-limitation-problems-and-solutions-20180222t222126679z
categorywitness-category
json_metadata{"tags":["witness-category"],"image":["https://i.imgflip.com/251tub.jpg"],"app":"steemit/0.1"}
created2018-02-22 22:21:27
last_update2018-02-22 22:21:27
depth2
children1
last_payout2018-03-01 22:21:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length32
author_reputation112,280,226,665,329
root_title"The Bandwidth Limitation - Problems and Solutions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,709,192
net_rshares588,700,622
author_curate_reward""
vote details (1)
@deceth ·
Yeah, and they're all evil bytes!
properties (22)
authordeceth
permlinkre-drakos-re-deceth-re-drakos-the-bandwidth-limitation-problems-and-solutions-20180223t132302239z
categorywitness-category
json_metadata{"tags":["witness-category"],"app":"steemit/0.1"}
created2018-02-23 13:23:06
last_update2018-02-23 13:23:06
depth3
children0
last_payout2018-03-02 13:23:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length33
author_reputation521,223,417,115
root_title"The Bandwidth Limitation - Problems and Solutions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,868,556
net_rshares0
@delvalle1 ·
very interesting your post! I think that for users with low SP the only solution is to immediately ration and moderate what they do inside the page.
properties (22)
authordelvalle1
permlinkre-drakos-the-bandwidth-limitation-problems-and-solutions-20180222t222326189z
categorywitness-category
json_metadata{"tags":["witness-category"],"app":"steemit/0.1"}
created2018-02-22 22:23:27
last_update2018-02-22 22:23:27
depth1
children0
last_payout2018-03-01 22:23:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length148
author_reputation61,882,808,114
root_title"The Bandwidth Limitation - Problems and Solutions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,709,533
net_rshares0
@dreambridge ·
$1.43
I have to keep an eye on my bandwidth thru the steemd site you mentioned, as I have been strangled a number of times from a sudden drop in allotted bandwidth, and didn't even know what was happening when it first occurred.  I am relatively new to the platform, but seeing people talking about issues like abusing the reward pool, whale abuse, bots, the difficulty of getting people to see my posts, and this issue, etc, is hard to all take in.  I just wanted to post information and get rewarded based on quality content as seen by the community. I really like this platform, but it seems to me that it needs to stay focused on creating an environment in which original quality content rises to the top and newbies aren't strangled or turned away by all these hurdles, esp with competition like EOS, sapien, and even Facebook.
👍  
properties (23)
authordreambridge
permlinkre-drakos-the-bandwidth-limitation-problems-and-solutions-20180223t195654600z
categorywitness-category
json_metadata{"tags":["witness-category"],"app":"steemit/0.1"}
created2018-02-23 19:56:57
last_update2018-02-23 19:56:57
depth1
children2
last_payout2018-03-02 19:56:57
cashout_time1969-12-31 23:59:59
total_payout_value1.078 HBD
curator_payout_value0.356 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length826
author_reputation15,119,154,501
root_title"The Bandwidth Limitation - Problems and Solutions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,945,141
net_rshares267,643,633,296
author_curate_reward""
vote details (1)
@drakos ·
I always suggest to newbies to read the FAQ first. Steem is a complicated platform and requires a learning period to understand and use it effectively. It's still a work in progress, so many things are lacking.
👍  
properties (23)
authordrakos
permlinkre-dreambridge-re-drakos-the-bandwidth-limitation-problems-and-solutions-20180223t205912276z
categorywitness-category
json_metadata{"tags":["witness-category"],"app":"steemit/0.1"}
created2018-02-23 20:59:12
last_update2018-02-23 20:59:12
depth2
children1
last_payout2018-03-02 20:59:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length210
author_reputation112,280,226,665,329
root_title"The Bandwidth Limitation - Problems and Solutions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,955,662
net_rshares154,253,430
author_curate_reward""
vote details (1)
@dreambridge ·
Yes, that's why I'm sticking around, because I definitely see the potential and can tolerate the inconveniences if there an overall strategy to make sure the problems eventually get ironed out.
properties (22)
authordreambridge
permlinkre-drakos-re-dreambridge-re-drakos-the-bandwidth-limitation-problems-and-solutions-20180223t211313500z
categorywitness-category
json_metadata{"tags":["witness-category"],"app":"steemit/0.1"}
created2018-02-23 21:13:18
last_update2018-02-23 21:13:18
depth3
children0
last_payout2018-03-02 21:13:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length193
author_reputation15,119,154,501
root_title"The Bandwidth Limitation - Problems and Solutions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,957,996
net_rshares0
@drkent ·
$0.14
Voting for you as a witness @drakos! Thanks for your service. Referred to you by @jrswab's post.
👍  
properties (23)
authordrkent
permlinkre-drakos-the-bandwidth-limitation-problems-and-solutions-20180223t183117290z
categorywitness-category
json_metadata{"tags":["witness-category"],"users":["drakos","jrswab"],"app":"steemit/0.1"}
created2018-02-23 18:31:15
last_update2018-02-23 18:31:15
depth1
children2
last_payout2018-03-02 18:31:15
cashout_time1969-12-31 23:59:59
total_payout_value0.107 HBD
curator_payout_value0.035 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length96
author_reputation26,350,876,588,366
root_title"The Bandwidth Limitation - Problems and Solutions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,929,131
net_rshares27,298,791,435
author_curate_reward""
vote details (1)
@drakos ·
Thanks to both of you, I appreciate the support.
properties (22)
authordrakos
permlinkre-drkent-re-drakos-the-bandwidth-limitation-problems-and-solutions-20180223t191701019z
categorywitness-category
json_metadata{"tags":["witness-category"],"app":"steemit/0.1"}
created2018-02-23 19:17:00
last_update2018-02-23 19:17:00
depth2
children1
last_payout2018-03-02 19:17:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length48
author_reputation112,280,226,665,329
root_title"The Bandwidth Limitation - Problems and Solutions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,937,764
net_rshares0
@drkent ·
Very welcome @drakos!
properties (22)
authordrkent
permlinkre-drakos-re-drkent-re-drakos-the-bandwidth-limitation-problems-and-solutions-20180223t231032997z
categorywitness-category
json_metadata{"tags":["witness-category"],"users":["drakos"],"app":"steemit/0.1"}
created2018-02-23 23:10:33
last_update2018-02-23 23:10:33
depth3
children0
last_payout2018-03-02 23:10:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length21
author_reputation26,350,876,588,366
root_title"The Bandwidth Limitation - Problems and Solutions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,975,626
net_rshares0
@indigoocean ·
I think they've already implemented one of your suggestions. When I joined almost 2 weeks ago I was delegated about 14 SP. Then a few days later I invested $100 of STEEM and powered it up to SP. My delegated SP disappeared within 24 hours! It sucks actually, because that one day my upvotes actually gave people more than a penny!
properties (22)
authorindigoocean
permlinkre-drakos-the-bandwidth-limitation-problems-and-solutions-20180226t055402691z
categorywitness-category
json_metadata{"tags":["witness-category"],"app":"steemit/0.1"}
created2018-02-26 05:54:03
last_update2018-02-26 05:54:03
depth1
children0
last_payout2018-03-05 05:54:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length330
author_reputation83,283,947,872,393
root_title"The Bandwidth Limitation - Problems and Solutions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,512,568
net_rshares0
@isnochys · (edited)
Your allocated bandwidth formula is missing :
```- delegated vesting shares```

Your bandwidth decreases, when delegating SP
properties (22)
authorisnochys
permlinkre-drakos-the-bandwidth-limitation-problems-and-solutions-20180223t032214927z
categorywitness-category
json_metadata{"tags":["witness-category"],"app":"steemit/0.1"}
created2018-02-23 03:22:15
last_update2018-02-23 03:24:21
depth1
children1
last_payout2018-03-02 03:22:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length124
author_reputation47,809,614,203,406
root_title"The Bandwidth Limitation - Problems and Solutions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,758,610
net_rshares0
@drakos ·
Thanks for spotting the error. Fixed.
properties (22)
authordrakos
permlinkre-isnochys-re-drakos-the-bandwidth-limitation-problems-and-solutions-20180223t051834126z
categorywitness-category
json_metadata{"tags":["witness-category"],"app":"steemit/0.1"}
created2018-02-23 05:18:33
last_update2018-02-23 05:18:33
depth2
children0
last_payout2018-03-02 05:18:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length37
author_reputation112,280,226,665,329
root_title"The Bandwidth Limitation - Problems and Solutions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,778,687
net_rshares0
@ivanlager ·
awesome is the word
properties (22)
authorivanlager
permlinkre-drakos-the-bandwidth-limitation-problems-and-solutions-20180222t222347188z
categorywitness-category
json_metadata{"tags":["witness-category"],"app":"steemit/0.1"}
created2018-02-22 22:24:15
last_update2018-02-22 22:24:15
depth1
children0
last_payout2018-03-01 22:24:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19
author_reputation185,035,111,400
root_title"The Bandwidth Limitation - Problems and Solutions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,709,696
net_rshares0
@jglowsinger ·
Thanks for this info. I hope the issue of bandwidth be resolved soon because it been a concern to me. I will read your post on voting for witness as well.
properties (22)
authorjglowsinger
permlinkre-drakos-the-bandwidth-limitation-problems-and-solutions-20180222t223035260z
categorywitness-category
json_metadata{"tags":["witness-category"],"app":"steemit/0.1"}
created2018-02-22 22:30:42
last_update2018-02-22 22:30:42
depth1
children0
last_payout2018-03-01 22:30:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length154
author_reputation4,721,431,939,377
root_title"The Bandwidth Limitation - Problems and Solutions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,710,792
net_rshares0
@jonelescalona ·
Excellent post friend, very good. You have my vote. regards
properties (22)
authorjonelescalona
permlinkre-drakos-the-bandwidth-limitation-problems-and-solutions-20180228t184023495z
categorywitness-category
json_metadata{"tags":["witness-category"],"app":"steemit/0.1"}
created2018-02-28 18:40:24
last_update2018-02-28 18:40:24
depth1
children0
last_payout2018-03-07 18:40:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length59
author_reputation193,065,615,513
root_title"The Bandwidth Limitation - Problems and Solutions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id41,191,664
net_rshares0
@liberviarum ·
$0.26
Yeah. This bandwidth problem is quite problematic. 

I first encountered the bandwidth problem when I was registering my account. Got an email saying my account was approved, clicked the link, filled a simple form, clicked the "submit" button, then there it was "Bandwidth limit exceeded" or sth like that. No support page, no email to reply, etc. When I googled it, it told me to go to steem chat or "just wait, and try again later" from a github page. I even registered to github because of this :') Well, luckily after an hour, I was accepted, then here I am.

After being on steemit for quite some time, I believe it's worthwhile to power up using own money when being hit with bandwidth limitation from time to time. However, that should not be the case for new comers. Imagine being advertised "Come to steemit, do things like you are on facebook, and get paid" and suddenly "bandwidth limitation" and people are telling you to pay (=power up) to use the platform, they could just go back to facebook. :D
👍  
properties (23)
authorliberviarum
permlinkre-drakos-the-bandwidth-limitation-problems-and-solutions-20180222t222315001z
categorywitness-category
json_metadata{"tags":["witness-category"],"app":"steemit/0.1"}
created2018-02-22 22:23:15
last_update2018-02-22 22:23:15
depth1
children1
last_payout2018-03-01 22:23:15
cashout_time1969-12-31 23:59:59
total_payout_value0.208 HBD
curator_payout_value0.054 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,010
author_reputation724,923,766,221
root_title"The Bandwidth Limitation - Problems and Solutions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,709,498
net_rshares47,511,093,225
author_curate_reward""
vote details (1)
@indigoocean ·
Yeah, the trust issues with that last sentence would prove problematic. I have a lot of people I'm inviting to join me here on Steemit who really trust me, but I don't think even I could sell that line. LOL
properties (22)
authorindigoocean
permlinkre-liberviarum-re-drakos-the-bandwidth-limitation-problems-and-solutions-20180226t055608028z
categorywitness-category
json_metadata{"tags":["witness-category"],"app":"steemit/0.1"}
created2018-02-26 05:56:09
last_update2018-02-26 05:56:09
depth2
children0
last_payout2018-03-05 05:56:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length206
author_reputation83,283,947,872,393
root_title"The Bandwidth Limitation - Problems and Solutions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,512,948
net_rshares0
@matthewthonyit ·
@drakos, I found this article written by you 9 months ago and I find it very educating, thanks for sharing this very long time ago. Knowledge learned. I Resteemed it for others to read and digest. 

Posted using [Partiko Android](https://steemit.com/@partiko-android)
properties (22)
authormatthewthonyit
permlinkmatthewthonyit-re-drakos-the-bandwidth-limitation-problems-and-solutions-20181130t132319277z
categorywitness-category
json_metadata{"app":"partiko"}
created2018-11-30 13:23:18
last_update2018-11-30 13:23:18
depth1
children0
last_payout2018-12-07 13:23:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length267
author_reputation7,520,748,665,198
root_title"The Bandwidth Limitation - Problems and Solutions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id76,148,292
net_rshares0
@nellita66 ·
Interesante,  las recomendaciones son muy buenas, de todas formas si hacemos power up igual salimos beneficiados.
properties (22)
authornellita66
permlinkre-drakos-the-bandwidth-limitation-problems-and-solutions-20180226t144616405z
categorywitness-category
json_metadata{"tags":["witness-category"],"app":"steemit/0.1"}
created2018-02-26 14:46:24
last_update2018-02-26 14:46:24
depth1
children0
last_payout2018-03-05 14:46:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length113
author_reputation879,422,454,220
root_title"The Bandwidth Limitation - Problems and Solutions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,618,626
net_rshares0
@olawalium ·
Wow! This is detailed. I didn't understand some of them but i do pick up few things and yes, the spamming need to reduce. I experienced the bandwidth limit also today and it was annoying. I noticed it kicks in for me when i don't have any pending payout in view for couple of hours. Someone also told me about voting for more witness, didn't know how true that is. Power up still remain a realistic option for now.
properties (22)
authorolawalium
permlinkre-drakos-the-bandwidth-limitation-problems-and-solutions-20180222t221232746z
categorywitness-category
json_metadata{"tags":["witness-category"],"app":"steemit/0.1"}
created2018-02-22 22:12:33
last_update2018-02-22 22:12:33
depth1
children0
last_payout2018-03-01 22:12:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length414
author_reputation540,569,440,454,696
root_title"The Bandwidth Limitation - Problems and Solutions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,707,816
net_rshares0
@pavelnunez · (edited)
Por fin un análisis matemático completo. Gracias, he llegado un poco tarde, me hubiese gustado poder compartir este post, te lo debo para otra publicación.
properties (22)
authorpavelnunez
permlinkre-drakos-the-bandwidth-limitation-problems-and-solutions-20180304t100326846z
categorywitness-category
json_metadata{"tags":["witness-category"],"app":"steemit/0.1"}
created2018-03-04 10:03:27
last_update2018-03-04 10:04:39
depth1
children0
last_payout2018-03-11 10:03:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length155
author_reputation7,813,077,418,635
root_title"The Bandwidth Limitation - Problems and Solutions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id42,096,325
net_rshares0
@sandrag89 ·
Thank you @drakos. That i`ts a good information. Nowday thereis a lot new people in steemit and They have a lot debut.
properties (22)
authorsandrag89
permlinkre-drakos-the-bandwidth-limitation-problems-and-solutions-20180228t005049483z
categorywitness-category
json_metadata{"tags":["witness-category"],"users":["drakos"],"app":"steemit/0.1"}
created2018-02-28 00:50:54
last_update2018-02-28 00:50:54
depth1
children0
last_payout2018-03-07 00:50:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length118
author_reputation22,611,270,415,271
root_title"The Bandwidth Limitation - Problems and Solutions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,992,240
net_rshares0
@steemfluencer ·
Last time I experienced a limitation was in July 2017. Since then I've never seen that red stressful text
properties (22)
authorsteemfluencer
permlinkre-drakos-the-bandwidth-limitation-problems-and-solutions-20180222t223102029z
categorywitness-category
json_metadata{"tags":["witness-category"],"app":"steemit/0.1"}
created2018-02-22 22:30:57
last_update2018-02-22 22:30:57
depth1
children0
last_payout2018-03-01 22:30:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length105
author_reputation1,427,241,771,749
root_title"The Bandwidth Limitation - Problems and Solutions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,710,833
net_rshares0
@ubikalo ·
thank you for this explanation, these are growing pains!
properties (22)
authorubikalo
permlinkre-drakos-the-bandwidth-limitation-problems-and-solutions-20180303t150042638z
categorywitness-category
json_metadata{"tags":["witness-category"],"app":"steemit/0.1"}
created2018-03-03 15:01:42
last_update2018-03-03 15:01:42
depth1
children0
last_payout2018-03-10 15:01:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length56
author_reputation10,328,545,260,298
root_title"The Bandwidth Limitation - Problems and Solutions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id41,897,543
net_rshares0
@vimukthi ·
$0.66
Proud to have you voted as a witness. Personally I think 30SP or maybe 50SP delegation to new accounts until they reach 50SP on their own should pretty much most of the problems without doing anything. I mean steemit controls majority of the SP and they are not voting with them either. I never faced bandwidth issues while I was new. It'd be great to know how many people are actually facing these issues.

STEEM is like F2P games. You get the account to try the product. If you also get the product for free, that mess up the economics to make us look like Fakebook. There is no free lunch. If people are using STEEM so much, then spending few bucks to power up or buy delegation shouldn't be a problem unless they are in a very crypto unfriendly jurisdiction.
👍  , , , , , , , , , , , , , , , , , , ,
properties (23)
authorvimukthi
permlinkre-drakos-the-bandwidth-limitation-problems-and-solutions-20180225t115902532z
categorywitness-category
json_metadata{"tags":["witness-category"],"app":"steemit/0.1"}
created2018-02-25 11:59:51
last_update2018-02-25 11:59:51
depth1
children0
last_payout2018-03-04 11:59:51
cashout_time1969-12-31 23:59:59
total_payout_value0.657 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length762
author_reputation507,918,042,315,061
root_title"The Bandwidth Limitation - Problems and Solutions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,320,226
net_rshares119,005,546,083
author_curate_reward""
vote details (20)
@zizymena ·
This bandwith issue has been a menace but having explained it I understand it is a necessary evil to checkmate some certain things like spamming and all. I quite agree with the solutions you proferred especially of the bots. They do indeed leave long unnecessary comments. 

Is this bandwith issue the reasons why there are no signups lately on steemit? People have been complaining of their inability to sign up.
properties (22)
authorzizymena
permlinkre-drakos-the-bandwidth-limitation-problems-and-solutions-20180223t061826568z
categorywitness-category
json_metadata{"tags":["witness-category"],"app":"steemit/0.1"}
created2018-02-23 06:19:39
last_update2018-02-23 06:19:39
depth1
children0
last_payout2018-03-02 06:19:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length413
author_reputation6,520,611,247,904
root_title"The Bandwidth Limitation - Problems and Solutions"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,789,489
net_rshares0