Questions tagged [tcp-slow-start]

Slow-start is part of the congestion control strategy used by TCP, the data transmission protocol used by many Internet applications.

Slow-start is part of the congestion control strategy used by TCP, the data transmission protocol used by many Internet applications. Slow-start is used in conjunction with other algorithms to avoid sending more data than the network is capable of transmitting, that is, to avoid causing network congestion

4 questions
1
vote
1 answer

How to set ssthresh value in tcp

I am trying to start TCP slow start congestion algoritham in my raspberry device. As it documented in RFC 2581, it needs to set ssthresh value greater than the congestion window (cwnd). So I have chnaged /sys/module/tcp_cubic/parameters# sudo nano…
1
vote
1 answer

Is TCP Slow Start algorithm a reason for slow transfers of many single files?

I thought about the tcp slowstart algorithm and a common problem when transfering many files over a tcp/ip network. If you transfer many small files (i.e. size: 50kb, amount: 10,000) it will take much longer than if you transfer the same amout of…
whymatter
  • 755
  • 8
  • 18
0
votes
0 answers

TCP slow start/congestion control behaviour query

I have a throughput issue on high latency (175ms) link and need help to understand why throughput growth transitions out of slow start. At first the server sends data in batches of 10 and throughput increases after each ACK but then transitions to a…
imac
  • 47
  • 9
0
votes
1 answer

Mitigating TCP slow start in web applications

What steps can developers take at the application level to mitigate the effects of TCP slow start on high-bandwidth, high-latency networks such as LTE?
Ben Aston
  • 53,718
  • 65
  • 205
  • 331