<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">
Just to give an update: Found this thread <a href="http://live-devel.live.narkive.com/nTWRunPX/slow-connection-problem-with-rtp-over-rtsp-tcp" class="">http://live-devel.live.narkive.com/nTWRunPX/slow-connection-problem-with-rtp-over-rtsp-tcp</a> from 7 years
 ago and increased send buffer size in liveMedia/GenericMediaServer.cpp to 50MB. This seemed helped at the beginning but server slowed down again after sending ~16MB which corresponds to server’s tcp maximum wmem. After increasing sender’s tcp wmem to a larger
 value it can now send up to 100MB with maximum speed which I need. It is probably not the right way but only way I was able to make it work. Better solution is appreciated. 
<div class="">Thanks<br class="">
<div>
<blockquote type="cite" class="">
<div class="">On Jan 14, 2017, at 5:08 PM, Arslan, Engin <<a href="mailto:engin@illinois.edu" class="">engin@illinois.edu</a>> wrote:</div>
<br class="Apple-interchange-newline">
<div class="">
<div class="">Hi Ross,<br class="">
<br class="">
Thanks for the reply. I checked the link and agree that TCP performance can be affected badly when rtt is high and buffer size is small or loss rate is high. However, I set the  buffer sizes to high enough values as:<br class="">
<br class="">
sudo sysctl -w net.core.wmem_max=16777216<br class="">
sudo sysctl -w net.ipv4.tcp_wmem='4096 16384 16777216'<br class="">
sudo sysctl -w net.core.rmem_max=25165824<br class="">
sudo sysctl -w net.ipv4.tcp_rmem='4096 87380 25165824’<br class="">
<br class="">
Since I'm testing on local network with ethernet connection, loss rate should not be problem for TCP performance. I can actually get 100 Mbps throughput when using TCP with iperf or simple client-server communication when RTT is 100ms. So I guess it is not
 that TCP cannot obtain enough throughput. I’m certainly not claim this issue is specific to openRTSP. I’m just trying to understand the behavior and possible ways to alleviate. I am guessing some rtsp streaming specific reason(s) hold TCP back from reaching
 full speed but not sure what and why. Any ideas/suggestions appreciated.<br class="">
<br class="">
Thanks<br class="">
Engin <br class="">
<br class="">
<blockquote type="cite" class="">On Jan 14, 2017, at 3:49 PM, Ross Finlayson <<a href="mailto:finlayson@live555.com" class="">finlayson@live555.com</a>> wrote:<br class="">
<br class="">
This has nothing to do with our software; it’s an inevitable property of TCP connections.<br class="">
<br class="">
You realize, I hope, that the bitrate of a TCP connection is inversely proportional to the connection’s RTT (round-trip-time); e.g., see<br class="">
<span class="Apple-tab-span" style="white-space:pre"></span><a href="https://www.switch.ch/network/tools/tcp_throughput/" class="">https://www.switch.ch/network/tools/tcp_throughput/</a><br class="">
<br class="">
It’s also important to understand that - with our software - you are streaming datagrams, which means that - even if you’re encapsulating them within a TCP connection - you have to be prepared for the possibility of some of these datagrams being lost.  It’s
 important to understand the difference between transmitting a stream - which occurs at a fixed data rate, regardless of what kind of network you happen to have underneath you - and downloading a file (i.e, the World-Wide Web), which occurs over TCP connections
 whose speed automatically matches the speed of the underlying network.  We’re doing the former; not the latter.<br class="">
<br class="">
Streaming over TCP is generally a bad idea; it’s something that you should do only as a last resort, if you have a firewall - between your back-end server and proxy server - that blocks UDP packets.<br class="">
<br class="">
<br class="">
Ross Finlayson<br class="">
Live Networks, Inc.<br class="">
http://www.live555.com/<br class="">
<br class="">
<br class="">
_______________________________________________<br class="">
live-devel mailing list<br class="">
live-devel@lists.live555.com<br class="">
http://lists.live555.com/mailman/listinfo/live-devel<br class="">
</blockquote>
<br class="">
<br class="">
_______________________________________________<br class="">
live-devel mailing list<br class="">
<a href="mailto:live-devel@lists.live555.com" class="">live-devel@lists.live555.com</a><br class="">
http://lists.live555.com/mailman/listinfo/live-devel<br class="">
</div>
</div>
</blockquote>
</div>
<br class="">
</div>
</body>
</html>