Questions tagged [bandwidth]

Amount of data that can be transferred in a given unit of time.

Network bandwidth capacity

Bandwidth sometimes defines the net bit rate (aka. peak bit rate, information rate or physical layer useful bit rate), channel capacity, or the maximum throughput of a logical or physical communication path in a digital communication system. For example, bandwidth tests measure the maximum throughput of a computer network. The reason for this usage is that according to Hartley's law, the maximum data rate of a physical communication link is proportional to its bandwidth in hertz, which is sometimes called frequency bandwidth, spectral bandwidth, RF bandwidth, signal bandwidth or analog bandwidth.

Network bandwidth consumption

Bandwidth in bit/s may also refer to consumed bandwidth, corresponding to achieved throughput or goodput, i.e., the average rate of successful data transfer through a communication path. This sense applies to concepts and technologies such as bandwidth shaping, bandwidth management, bandwidth throttling, bandwidth cap, bandwidth allocation (for example bandwidth allocation protocol and dynamic bandwidth allocation), etc. A bit stream's bandwidth is proportional to the average consumed signal bandwidth in Hertz (the average spectral bandwidth of the analog signal representing the bit stream) during a studied time interval.

Channel bandwidth may be confused with data throughput. A channel with x bps may not necessarily transmit data at x rate, since protocols, encryption, and other factors can add appreciable overhead. For instance, a lot of internet traffic uses the transmission control protocol (TCP) which requires a three-way handshake for each transaction, which, though in many modern implementations is efficient, does add significant overhead compared to simpler protocols. In general, for any effective digital communication, a framing protocol is needed; overhead and effective throughput depends on implementation. Actual throughput is less than or equal to the actual channel capacity plus implementation overhead.

1021 questions
0
votes
1 answer

How to calculate bandwidth requirments based upon flows per minute (fpm)?

I want to know how can one calculate bandwidth requirements based upon flows and viceversa. Meaning if I had to achieve total of 50,000 netflows what is the bandwidth requirement to produce this number? Is there a formula for this. I'm using this to…
iloveyouga
  • 25
  • 1
  • 5
0
votes
2 answers

about measuring bandwidth with javascript

I am trying to inject a java script snippet into the webpage. In the java script, I try to measure the total amount of data that is downloaded for this webpage, then the data size will be divided by page load time to calculate the bandwidth. Does…
billtian
  • 6,589
  • 4
  • 18
  • 28
0
votes
1 answer

hdparm and disk read speed

My hdparm -t buffered disk reads output is around 120 MB/sec. However, I was writing a little code that involves reading a big file (around 400MB), when I managed to read it all in about one second (fread() on c). Does the hdparm output not quite…
yelsayed
  • 5,236
  • 3
  • 27
  • 38
0
votes
1 answer

Can I define frequency check for ThreadPool.QueueUserWorkItem?

I implemented a System.Web.IHttpAsyncHandler to limit website bandwidth usage for files download. Once defined user bandwidth, I need to send a byte[] every second (or 1000 milliseconds, to be precise). Something like: public class DownloadHandler :…
Rubens Farias
  • 57,174
  • 8
  • 131
  • 162
0
votes
1 answer

Getting a snapshot of incoming / outgoing bandwidth speed on an interface in linux?

We were wondering how one would go about getting a quick 3 second snapshot of how fast bandwidth is being consumed on a specific interface in linux? We have some web services we would like to delegate to various backends depending on incoming /…
anonymous-one
  • 14,454
  • 18
  • 60
  • 84
0
votes
0 answers

Better way of detecting device bandwidth [Android]

I am writing one network application which downloads multiple files from the server using HTTP protocol. I want to detect client to server network bandwidth and i am confused in between using the perfect/proper way of calculating bandwidth. 1.…
User7723337
  • 11,857
  • 27
  • 101
  • 182
0
votes
1 answer

Parallax - Can I add more than 4 layers?

here's my code for parallax scrolling. See http://violetoeuvre.com/Exp_4.html. Whenever I add more than 4 layers, the page won't load. Is this just a bandwidth problem? I know I've seen websites with more than four layers... Should I use a…
Claire
  • 159
  • 1
  • 4
  • 15
0
votes
1 answer

Measure Page bandwidth usage

I want to see how much data is being send and received when I request for a page of my java web application. Is there any way to track it? It runs on IE and don't support other browsers [ophs...feels bad about it. :( ].
Saju
  • 402
  • 3
  • 11
  • 30
0
votes
1 answer

PHP - Methodology to prevent spam flooding and also excessive bandwidth

HiI am at prototype stage. For the scenario below, I want to share my plan with you and I am asking your opinions if my plan makes sense or is there any better way to achieve my requirement that you may recommend. thanks, regardsSCENARIOA spam bot…
Andre Chenier
  • 1,166
  • 2
  • 18
  • 37
0
votes
1 answer

Low bandwidth with multi-threaded httpWebRequest

I've a wcf service that call a webservice asynchronously using httpwebrequest.beginGetResponse(). My problem is that when I call it from another service using TPL (max concurrency : 300), my bandwidth downed and impossible to connect to…
0
votes
1 answer

Estimating bandwidth usage for Desktop Java application

We have a data streaming application which uses local caching to reduce future downloads. The full datasets are larger than what is streamed to the end user - i.e. just the bits the end user wants to see. The concept is pretty much like a browser,…
whatnick
  • 5,400
  • 3
  • 19
  • 35
0
votes
1 answer

Selecting optimal server without using ping?

I'm looking for the best approach for selecting the "optimal" network server. Use case: A user at home needs to access a network through any one of the geographically dispersed servers, and we want our desktop app to automatically select one in…
Greg
0
votes
2 answers

bandwidth usage suddenly increased in wordpress site after wordpress 3.5 update

I am facing bandwidth issue, for last (2012) whole year bandwidth usage of my wordpress site was 11.66 GB, after updating wordpress to version 3.5 in early january 2013, bandwidth usage for my site for jan-2013 is 38.76 GB. do anyone have any idea…
mack
  • 1,768
  • 5
  • 21
  • 28
0
votes
1 answer

bandwidth/QOS test - paid or free

I have to support a video rich web site. Many of the users are on a city/municipal computer and network. When a user reports a performance issue (video slow to load or hanging) we verify server and backbone and multiple endpoints. We are working…
phoenixAZ
  • 429
  • 3
  • 17
0
votes
2 answers

absolutely no response php exit technique?

The docs I read don't seem clear on this issue. When calling exit() with no arguments, does the server still send something back to the client? If so, is there an alternative or way to keep anything from being sent to the client on exit?
user1382306