Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Choosing buffer size for FTP and HTTP transfers

How does one choose the size of a buffer (bytes I read from or write to socket) for the maximum throughput when implementing a low-level HTTP and FTP transfer? My application should transfer data with HTTP or FTP on connections varying from 130 Kbps to 3 Mbps (I know the expected speed beforehand). Sometimes it's a one way transfer, sometimes it goes in both directions. Should I stick with some average buffer size or I must vary it depending on the connection speed?

Thanks.

like image 408
wasker Avatar asked Nov 11 '08 23:11

wasker


People also ask

What is buffer size for FTP?

This is because Windows Explorer and Internet Explorer have a default send buffer size of 4096 bytes. Due to this default size, FTP uploads initiated from Windows Explorer and Internet Explorer will be slower when compared with command prompt. Note: This buffer size is not configurable in current versions of Windows.

What is buffer size HTTP?

The BufferSize directive specifies the amount of data in bytes that will be buffered before being read from or written to each request. The default is 128 kilobytes.

What is the optimal buffer size?

A good buffer size for recording is 128 samples, but you can also get away with raising the buffer size up to 256 samples without being able to detect much latency in the signal. You can also decrease the buffer size below 128, but then some plugins and effects may not run in real time.

How can I make FTP transfer faster?

To improve FTP speed on the client-side, increase the parallel (concurrent downloads) or adjust the “maximum simultaneous transfers.” Sometimes FTP servers limit each session to maximum download speed, so this feature will help bypass some limitations defined by the server.


1 Answers

Choose a buffer size over 8KB. 9000 is typically the largest MTU (maximum transmission unit) size used in even the fastest networks.

When you use a buffer larger than the MTU of the connection, the operating system will break it down in to MTU sized pieces as needed, and thus anything you use over the MTU will have little effect on network performance.

However, using a large buffer will likely have other effect on performance, if you're transferring files, then using large buffers may increase the read performance, thus improving the speed of your application.

So, Usually picking a nice round number like 16KB is a good idea. Definitely don't go under 1500, as this can negatively effect network performance (causing the operating system to sometimes send small packets, which decrease performance on the network).

like image 113
SoapBox Avatar answered Oct 06 '22 10:10

SoapBox