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

Does Gzip only compress the files, or also decrease the HTTP requests?

I have the following webpage (example page, as the original is very large),
Bangash
  • 1,152
  • 3
  • 10
  • 30
0
votes
1 answer

How do I know how much bandwidth each computer uses?

I have two computers. I'd like to know if there's a program that shows the bandwidth consumption of each. Is that possible? Sometimes my connection get very slow, but in the other computer, it's normal. Maybe the other computer is using too much of…
0
votes
1 answer

Creating a Website With Minimum Bandwidth Cost

I am trying to come up with a website with minimum bandwidth cost: Imagine that a user is tight in bandwidth, even loading a webpage is "expensive" for him. What if the webpages are saved in his computer. However, he needs to transmit and receive…
0
votes
1 answer

Monitoring IIS site bandwidth individually

I have a VPS (using Windows Server, IIS) with around 20 sites, of which I would like to monitor the monthly bandwidth usage independently. Performance Monitor is useful but ideally I'd like to show someone their bandwidth usage (e.g. on their own…
mmmoustache
  • 2,273
  • 6
  • 41
  • 62
0
votes
1 answer

Download Restricted Lighttpd files

I have a question, is it possible to still download files from a lighttpd webserver with the following option activated? : $HTTP["referer"] !~ "^(http://example\.com|http://www\.example\.com)" { url.access-deny = ( "" )} What this code does,…
0
votes
1 answer

Does. load() load the whole content of the requested page or just a portion?

I am implementing ajax page loading for some parts of my website. I am trying to save some bandwidth and get faster page load times. I have read that .load() loads the whole content of the page being requested instead of loading only a portion of…
Gixty
  • 202
  • 4
  • 13
0
votes
1 answer

How do I limit the bandwidth when transferring a file with Ruby sockets

I'm developing a Windows daemon to sit on an office full of machines and respond to requests with the required information. It needs to be able to send zipped log files back to the sender. These log files don't get much bigger than ~3MB but it's…
JoshM
  • 110
  • 1
  • 6
0
votes
4 answers

How much sustained data should a dedicated server be able to serve?

We have a dedicated godaddy server and it seemed to grind to a halt when we had users downloading only 3MB every 2 seconds (this was over about 20 http requests). I want to look into database locking etc. to see if that is a problem - but first I'm…
Simon
  • 525
  • 1
  • 14
  • 21
0
votes
2 answers

Running load tests from home network

I need to perform a load test using loadrunner to simulate load generated from external network (My home network) on servers placed in some organization in the same region. The application which will be tested is a web site (Not Heavy one) which…
0
votes
1 answer

Set different bandwidths in ggplot2 facet_grid plotting

Suppose I have a data set called "data", and is generated through: library(reshape2) # Reshape data, needed in command "melt" library(ggplot2) # apply ggplot density <-rep (0.05, each=800) tau <-rep (0.05, each=800) # define two different…
Chen
  • 111
  • 1
  • 17
0
votes
1 answer

Angular + Firebase three way binding sync and network bandwidth

I wanted to sync the text box content to different clients through Angular + Firebase. I have doubt that whenever i type each letter, will the firebase sync with the database? Will it affect the network bandwidth? Basically How it works?
Fizer Khan
  • 88,237
  • 28
  • 143
  • 153
0
votes
0 answers

Improve transmit rate of winpcap

I'm trying to stress test some new hardware by transmitting a lot of data through the ethernet layer to see how i handles it. For this I'm using my laptop, windows 7 x64 and winpcap. I create a send queue in a thread and then transmit that. I have…
Henrik
  • 586
  • 1
  • 4
  • 10
0
votes
1 answer

OpenCL buffer map/unmap and enqueueWrite bandwidth

I have a performance problem for my opencl C++ wrapper, I need to transfer data from buffer d to buffer b as fast as possible (using map/unmap to achieve 6GB/s DMA speed of pci-e) then copy that data to buffer a (at device speed about…
huseyin tugrul buyukisik
  • 11,469
  • 4
  • 45
  • 97
0
votes
1 answer

Memory bandwidth measurement with memset,memcpy

I am trying to understand the performance of memory operations with memcpy/memset. I measure the time needed for a loop containing memset,memcpy. See the attached code (it is in C++11, but in plain C the picture is the same). It is understandable…
Alexander
  • 400
  • 7
  • 16
0
votes
2 answers

Controlling image bandwidth issues on a community site

I am working on a community photo sharing site, and I need some way of controlling the bandwidth. For example I would like to set a maximum bandwidth allowed, which can be image size x the number of times the image was viewed. Similar to what a site…
Dom M.
  • 3,762
  • 8
  • 32
  • 40