Closed totaam closed 5 years ago
See also: #1211, #639, #999, #401, #540, #417
I'm seeing some weird behaviour with win32 clients trying to improve #999 and detecting late acks.
The network layer's source_has_more
function may not be the right place to set and unset NODELAY because lots of small screen updates can take under a millisecond to compress, which is still slower than it takes the network layer to send them...
Maybe we need to pass the screen update flush
attribute down to the network layer too.
Done in r18149 + r18150. Implementation notes:
TCP_SOCKET_NODELAY
is now XPRA_SOCKET_NODELAY
as it applies to more than just TCP socketsAs of r18151, we can use XPRA_SOCKET_NODELAY
to overrule the automatic settings:
XPRA_SOCKET_NODELAY=1
should be more or less equivalent to what we had beforeXPRA_SOCKET_NODELAY=0
never sets NODELAY
TODO:
@maxmylyn: this ticket is tailor made for the automated tests - we want to compare before and after to see if this helps, especially under bandwidth constrained conditions. (only slight problem is, there is a bug I'm working on which causes congestion detection to kick in too early, and the counter measures are too aggressive, causing the framerate to drop..)
I did some maintenance this morning on the test box - it's been acting up again. For starters, I've split the TC tests into two different files - one runs just the packet loss/delay tests, the other runs bandwidth limited cases. That way if something goes wrong with either test suite, we don't lost all the data.
However there's a separate problem that I'm going to look at now - seemingly at random the tests fail to stop the server properly, at which point all following tests fail consistently because they're unable to spin up a server on the display that's still in use. A simple
xpra stop
clears the server, so I'll sprinkle that command in to the scripts between test suites....but I'd like to figure out why I need to do that.I'll hold on to this ticket for a few days so we can gather more data.
As I mentioned in #1840, my mathematician is unavailable for a little bit, and he was working on the new charts, so I'm going to post the raw data I have so far.
tcp.zip
(277.2 KiB)TCP output data
TCP output data
It's not clear what command lines were used for each run, as there are 3 possible values for XPRA_SOCKET_NODELAY
(0, 1, unset)
It also doesn't look like this was being tested with any bandwidth constraints? All encodings are tested in there, which is going to make the data very noisy. I would focus on one setting ("auto" or "rgb"), and only one test (one that generates lots of small-ish screen updates - maybe simulate console user, or gtkperf) and maybe vary only the throttling - if anything.
It's not clear what command lines were used for each run, as there are 3 possible values for XPRA_SOCKET_NODELAY (0, 1, unset)
For these tests, I have it run a series of three test runs. There are two sets - the ones with the prefix
nodelay_
haveXPRA_SOCKET_NODELAY=1
set, anddelay_
hasXPRA_SOCKET_NODELAY=0
set.It also doesn't look like this was being tested with any bandwidth constraints?
I'll copy some of the Bash script from when I was running daily tests with bandwidth constraints - 25, 16, and 8 megabits should be a good enough starting point. I've changed the config file for this test run to only use rgb, and it only runs the two console tests and
gtkperf
- since I'm not hardware limited anymore, it doesn't hurt to run extra tests since I'll usually have a spare machine or two in case I need it for something else.
619tcp.zip
(500.8 KiB)I've posted a new set of data. This time I ran
tc qdisc add dev lo root netem rate 25mbit
between test runs withXPRA_SOCKET_NODELAY
set to 0 and 1, with 25mbit, 16mbit, and 8mbit bandwidth constraints.Unfortunately most of that data is useless. It looks like the IP Tables command didn't work (EDIT: This one's on me - I left USE_IPTABLES disabled in the config), so all the packet accounting didn't get recorded, and as mentioned in #1840 quite a few of the other columns are missing as well. I'll try to figure out why that's the case, but I'm posting it anyways since all the data is ~500KB.
.. as mentioned in #1840 quite a few of the other columns are missing as well ..
As mentioned in #1840, the breakage is likely quite recent whereas this ticket is a year old. Why not test with a version that does record the data we want?
r21493 waits until after we have sent the last chunk before enabling NODELAY. I believe that's correct and the kernel will then flush the socket, but it would be much better to verify that with test data.
See also #2130
test_nodelay.tar.gz
(242.8 KiB)nodelay charts
Attached some charts and data for this.
I'm not sure if the script for charting took into account the instances I ran with trickle.
I could have just included the network/packet stuff in the charts but left all the details there.
Please include the SOCKET_CORK
option (#2130) in this test data.
I think it would make more of a difference if we could compare with and without trickle limits too, but I don't think that the "perf charts" code will let you do that as it is?
It would be useful compare per-bandwidth-limit / per-nodelay / per-cork settings for example. I assume that's why the "max-batch-delay" goes so high with all settings (300 ms!): it would help to see how that varies per-bandwidth-limit.
For some metrics, the data from low bandwidth-limits may skew the results.
All these screensaver tests mostly behave the same (full screen updates, high framerate), it would be more useful to have other tests in there: gtkperf, xterm, even x11perf.
As expected, the "server-number-of-threads" and "server-vsize" go up in "auto" mode since that uses multi-threaded video encoders. But I don't see the benefit of video encoders on framerate ("regions-per-second") or pixels-per-second. (though the "encoding-pixels-per-second" does show a very different profile)
Some thoughts on what I was expecting to see:
SOCKET_NODELAY=1
because the screen will update in multiple chunks bunched up together and the network can benefit from accumulating them in the kernel socket output buffer (the xterm tests might be even better for showing this effect) - it does, but not by much, probably because SOCKET_CORK
does that even better.NODELAY=1
should give a better overall latency, we need to record the overall paint latency to the data and graphs, I will try to add that (#2381)NODELAY=0
(or unset) should give better bandwidth utilisation - this may be masked by the fact that we can't distinguish bandwidth limits (the much higher values from "no-limit" will hide any differences)test_nodelay_cork.tar.gz
(633.5 KiB)test of nodelay and cork
Attached is with the combinations of XPRA_SOCKET_NODELAY and XPRA_SOCKET_CORK compared.
Longer tests this time a few different ones.
Sorry, I forgot to ask you to include the default case with XPRA_SOCKET_NODELAY
unset, both with and without CORK
for completeness.
Very interesting to have 4 combinations already. Maybe we should combine more test results?
So far:
NODELAY=0
- added info to #2382#comment:3CORK=1
is better: more regions-per-second, more pixels, lower batch delay, etc..test_nodelay_cork2.tar.gz
(727.6 KiB)new test with nodelay unset data
Okay I have attached the previous data and with the new stuff you asked for.
I was hoping to make the charts a bit more readable but after spending some time I was not able to. (I'm not the best at JS/HTML)
Take a look and let me know if this is good. Maybe we can finally close this ticket.
@smo: there are two sets of NODELAY Unset CORK 1
- what's the difference?
test_nodelay_cork3.tar.gz
(727.6 KiB)bad label on previous chart
Oops that was my bad. Wrong label for that one. Attached new tarball.
The charts are now available here: https://xpra.org/stats/nodelay-cork/
This option can now be enabled on a per-socket basis: #2424#comment:1.
See also #2975.
Follow up from #514: at present we enable
TCP_NODELAY
globally which is a bit wasteful.It ensures that packets go out as soon as we queue them, but when the packets contain large-ish binary data this means that the binary data and the actual xpra packet structure are likely to travel in separate TCP-level packets.
It would be better to only enable
TCP_NODELAY
when aggregating packets is not helping: when we have no more data to send or when the output buffer is full. As per: Is there a way to flush a POSIX socket? and this answer: What I do is enable Nagle, write as many bytes (using non-blocking I/O) as I can to the socket (i.e. until I run out of bytes to send, or the send() call returns EWOULDBLOCK, whichever comes first), and then disable Nagle again. This seems to work well (i.e. I get low latency AND full-size packets where possible)Good read: The Caveats of TCP_NODELAY