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
0 answers

Set and test bandwidth on NGINX server

I am using NGINX and i want to control the number of connections and the bandwidth for each user . This is what offers NGINX for this limit_rate 150k; where 150k is some value for limit rate, i want this limit_rate to be variable but this directive…
HobbitOfShire
  • 2,144
  • 5
  • 24
  • 41
0
votes
1 answer

OpenMP memory access and performance degradation

I have a program which takes advantages of OpenMP for obtaining a great speed up on a dual CPU with a total of 32 cores server. The input parameters which I'm using doesn't allow for complete loading of the CPUs. Today a couple of cores were 100%…
DarioP
  • 5,377
  • 1
  • 33
  • 52
0
votes
1 answer

What percentage of the network bandwidth "on the wire" is used for the message data?

A 1000 byte message is sent over the network using a protocol stack with HTTP, TCP, IP, and Ethernet. Each protocol header is 20 bytes long. What percentage of the network bandwidth "on the wire" is used for the message data? Give a numeric answer…
0
votes
3 answers

unfortunately, ____ has stopped working (network issue? measuring bandwidth)

I'm really stumped by the logcat stacktrace (i'm not really familiar with android) whilst creating this basic method to check my device's network bandwidth. The code loads a webpage, times how long it takes, and measures the content downloaded. This…
Yuen Hsi
  • 143
  • 1
  • 4
  • 11
0
votes
0 answers

Which is more efficient way to save bandwidth

I'm trying to make my site faster and saving bandwidth as I can I have an array which has around 100 values for my images and its links, but it will be used in every post and page (around 500.000 post pages), it's easy for me to make it as a…
usama sulaiman
  • 2,013
  • 4
  • 24
  • 37
0
votes
1 answer

bandwidth monitoring with MRTG, no dat from switch stacks

I'm trying to set up a monitoring system and have been asked to add all of our uplinks in it. most of our switches consists of stacks of about 7 switches. These stacks aren't returning any data. I run MRTG on the single switches and get back nice…
0
votes
1 answer

Java: Measure Bandwidth of POST/GET request

I'm stuck with such issue. I have Client (just web page) and Server (some Java controller that handles requests from Client). 1) Client sends API request (POST or GET) to the Server and gets response in JSON format. 2) When the Server got request…
Lugaru
  • 1,430
  • 3
  • 25
  • 38
0
votes
1 answer

Get the current bandwidth usage in cPanel?

I have a regular cPanel account on my shared hosting, and I want to get the current bandwidth usage info using their API with PHP.
0
votes
1 answer

How to see the bandwidth usage of my Flash application?

I'm developing an online sudoku game, with ActionScript 3. I made the game and asked people to test it, it works, but the website goes down constantly. I'm using 000webhost, and I'm suspecting it is a bandwidth usage precaution. My application…
void
  • 1,876
  • 8
  • 24
  • 30
0
votes
0 answers

jQuery load(function) for an image file

I'm making a website with lots of background images and (of course) it affects the speed ratio and the bandwidth. I have a page wich contains 17mb of images data. Most of it is hidden and only appears when you click on target galleries. The problem…
cfocket
  • 105
  • 2
  • 15
0
votes
1 answer

why my app reaches GAE `Incoming Bandwidth` while it just fetches tiny content

My app use urllib2 to fetch remote http file. But it does not fetch the whole file, it just read 5 bytes from it. I purposely do that to save quota. As the line 'content = remoteFileFh.read(5)' below does. def httpGetFile(self,remoteFile): …
0
votes
2 answers

How do i measure how much data has been sent over a C# socket

I'm building an application that needs to charge users based on the exact bandwidth used by their connections. I could of course keep track of how many bytes i pass to/from send/receive but that doesn't include IP packet overhead which i'd very…
Oliver
  • 1
0
votes
1 answer

Measure bandwith used by PHP

I am wondering how to measure bandwidth in PHP. I am going to start measuring when the page loads and up until a form is filled and submitted. Then when the confirmation page is returned, in that page I will stop measuring and display, how much…
Irfan Mir
  • 2,107
  • 8
  • 27
  • 33
0
votes
1 answer

monitor bandwith a web app takes

I have a form that is going to be submitted a few times and I want to know how much bandwidth is used ( upload and download ) for one submission of this form and when the php behind it does with the submitted data until the confirmation page is…
Irfan Mir
  • 2,107
  • 8
  • 27
  • 33
0
votes
1 answer

Convert traditional vb to vb.net 2010

Can someone help me to convert this to vb.net 2010 code. I have a window that has textbox1, i found this code bt cldnt figure ho i can write it in vb.net 2010 Imports System.Diagnostics Module Module1 Sub Main() Dim pc As New…