Mobile app version of vmapp.org
Login or Join
Ann8826881

: What does I/O Limit mean in a hosting package? I have a few questions about I/O limit in a hosting package. Lets say a hosting package offers 1MB I/O limit. Does it mean that at any given

@Ann8826881

Posted in: #WebHosting

I have a few questions about I/O limit in a hosting package. Lets say a hosting package offers 1MB I/O limit.


Does it mean that at any given time no more than 1MB data can be transferred from disk?
If I know the average page size (including its files), can I determine by this limit how many concurrent visitors this hosting package can handle?
If this limit is reached at any given time, are further requests dropped or delayed?
What are other things about I/O limit I should be worried about?


------ After Stephen's answer, I'm adding this graph image from GoDaddy hosting account.

GoDaddy Input/Output graph www.imagesup.net/?di=1140434440510

10.03% popularity Vote Up Vote Down


Login to follow query

More posts by @Ann8826881

3 Comments

Sorted by latest first Latest Oldest Best

 

@Moriarity557

Refer below link for exact definition of IO limit as per godaddy.
in.godaddy.com/help/how-do-each-of-cpanels-resources-affect-my-site-9323?v=1#io
Quick reference (copied from site):


I/O is short for "input/output." In the context of a hosting account,
it's the "throughput" or speed of data transfer between the hard disk
and the RAM. Obviously, increasing the speed of transfer makes the
process faster.

When Increasing I/O Matter Most

Unlike some other limits, you don't "exceed" your I/O limit and it
doesn't generate errors. Instead, a site just "hangs" while it waits
for the data to transfer from the hard disk to the RAM.

Knowing when increasing I/O will improve a site requires knowing
something about its construction. Generally speaking, sites that need
to read and write a lot of data, such as those streaming any kind of
media or with many database records, benefit most from I/O
enhancements. However, increasing the I/O limit will not fix every
issue that cause the site to lag or hang.

10% popularity Vote Up Vote Down


 

@BetL925

No it has nothing to do with network traffic. The company I work for has a GoDaddy hosting account, disk IO and network caps are similar in GoDaddy but they are not the same. If you have a PHP script that prints out a simple "hello world" but before printing the hello world, it needs to perform operations internally inside the server that triggers the movement of 20 MB worth of files, then that script will take 20 seconds to load. And that is because of the disk IO limit, it has nothing to do with network(for a realistic test try to echo hello world in a Symfony 2 project on GoDaddy and watch the load time...)

It basically means what it says, they are limiting your disk operations to 1 MB/s, even if those disk operations are not doing any network tasks. A more realistic example is if you are lets say performing a search by filename in a large directory of file, you will not be able to go through more than 1 MB worth of data per second.

GoDaddy limitations are hidden in the terms and conditions

10% popularity Vote Up Vote Down


 

@Heady270

I expect that they mean that the input and output on your network connection is capped at 1Mb/second. (Note the lower case b for Megabits as opposed to a capital B which would mean Megabytes.) Hosting providers often provide a graph of your historical network i/o that looks something like this:
www.oxford-knowledge.com/wp-content/uploads/2013/05/Graph1-Busy-20Mb-connection.png image source

1Mb/second is about 10GB of transfer each day if you are constantly saturating your network connection. Most websites don't use their network consistently and have to have bandwidth available to handle bursts of traffic and more popular times of the day.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme