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
3
votes
2 answers

hadoop datanodes use too much bandwidth after adding new nodes

the problem is that: I have 3 datanodes when I created the cluster, and a few days ago I added another two datanodes. After I did this, I ran the balancer, and the balancer finished quickly, and said the cluster was balanced. But I found that once I…
zhaozhi
  • 1,491
  • 1
  • 16
  • 19
3
votes
1 answer

Django - How to meter bandwidth usage on static content?

I realize this is more of a server question (since all media requests bypass Django via NGINX), but I want to know how others Django Developers have been doing this, more so than I care to understand only the specifics of how to do it in NGINX. I…
orokusaki
  • 55,146
  • 59
  • 179
  • 257
3
votes
5 answers

Super fast server for php script

I have a php script which requires no web hosting or disk space etc. The script simply retrieves infromation from a server, does some processing on this information and than passes it on to a client (an iPhone app in this case). The only thing is…
Zigglzworth
  • 6,645
  • 9
  • 68
  • 107
3
votes
0 answers

find WkWebView's data consumption

As far as I have searched there is no way to find how much wkwebview has consumed.(sent/received in bytes) Is there any possibility that I am not aware of ?
RajuBhai Rocker
  • 723
  • 1
  • 7
  • 24
3
votes
0 answers

Measure Firebase bandwidth in Android

My app is sending roughly 5mb a day, where as my calculations of what it should be were closer to less than 100kb. So somewhere something is going very wrong or I am misunderstanding something. Is there any way to log the size of the firebase data…
Marty.H
  • 1,194
  • 4
  • 16
  • 29
3
votes
2 answers

Do embedded Youtube videos increase the site's bandwidth?

By having each classified ad with embedded Youtube video, will this increase the bandwidth of the site? If so, would iFrame help in anyway? Thank.
proyb2
  • 31
  • 1
3
votes
1 answer

Detecting Connection Speed / Bandwidth in .net/WCF

I'm writing both client and server code using WCF, where I need to know the "perceived" bandwidth of traffic between the client and server. I could use ping statistics to gather this information separately, but I wonder if there is a way to…
Brent Arias
  • 29,277
  • 40
  • 133
  • 234
3
votes
2 answers

Will mod_rewrite to an image on another domain cost bandwidth for the original domain?

I want to use mod_rewrite to include a date in an image filename, so browsers will know to refresh an image anytime it's changed, despite any expires headers. My rewrite rule is RewriteRule ^images/[0-9]+/(.*)$…
Steve
  • 4,033
  • 5
  • 32
  • 29
3
votes
2 answers

iOS Video File Sizes and Bandwidth Considerations

I'm building an app whose core functionality is centered around 1-10 second videos. Currently, I'm recording video using PBJVision with the preset set to AVCaptureSessionPresetMedium. A 10 second video is around ~3-5MB. Considering each user could…
switz
  • 24,384
  • 25
  • 76
  • 101
3
votes
0 answers

How can i check bandwidth usage in webrtc?

I would like to check bandwidth usage in my webrtc application, to find out the threshold at which sound and video are asynchronous. Is there any way to do this?
user3806649
  • 1,257
  • 2
  • 18
  • 42
3
votes
1 answer

How close to GPU theoretical memory bandwidth can you get?

Suppose you have a memory bound GPU kernel, how close can you get to the stated theoretical bandwidth of the GPU? Even in Mark Harris's Optimising Parallel Reduction presentation he 'only' gets 63GB/sec which is about 73% of the bandwidth of his…
user3678912
  • 69
  • 2
  • 4
3
votes
1 answer

PHP fopen and file_get_contents limited download speed, why?

I'm trying to retrieve a remote file (6MB text file) with PHP and I noticed that with fopen the speed is limited to 100KB/s and with file_get_contents is 15KB/s. Howewer with wget from the server the speed is above 5MB/s. What controls these speeds?…
Sandro Antonucci
  • 1,683
  • 5
  • 29
  • 59
3
votes
6 answers

How do you handle bandwidth billing on shared servers in apache?

What solutions do you have in place for handling bandwidth billing for your vhosts on a shared environment in apache? If you are using log parsing, does your solution scale well when the logs become very very large? Anyone using any sort of module…
jlintz
  • 463
  • 3
  • 8
3
votes
3 answers

Getting bandwidth used by SciPy's gaussian_kde function

I'm using SciPy's stats.gaussian_kde function to generate a kernel density estimate (kde) function from a data set of x,y points. This is a simple MWE of my code: import numpy as np from scipy import stats def random_data(N): # Generate some…
Gabriel
  • 40,504
  • 73
  • 230
  • 404
3
votes
5 answers

Low Cost Technical Architecture for a Website Backend

I'm looking at opening up a website in the near future and aside from the standard domain registration costs, I'm unsure of how to proceed. I'm expecting the volume of data to be quite significant and looking at many webhosts it seems that while…