Slashdot Mirror


User: christoph.paasch

christoph.paasch's activity in the archive.

Stories
0
Comments
2
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 2

  1. Re:NFS on MTCP: was :API support on A 50 Gbps Connection With Multipath TCP · · Score: 1

    We have not yet done extensive experiments with HTTP1.1.

    But, MPTCP is a benefit for bandwidth-intensive (thus increasing throughput) and long-lived connections (increased resilience against link-failures).

    So, I would say that HTTP 1.1 would benefit from MPTCP.

    Cheers,
    Christoph

  2. Re:NFS on MTCP: was :API support on A 50 Gbps Connection With Multipath TCP · · Score: 1

    I conclude this from section 5.3, which I think states MPTCP over 2 links was slower than ordinary TCP over one link, when message size was 30K.

    For very small flow-sizes (like less than 30KB), MPTCP should not try to create additional subflows. Because, the whole data fits in the initial window of the first subflow. However, at the moment the linux implementation always tries to establish new subflows. In the paper's stress-testing scenario these additional subflows just consumed CPU-cycles and thus the "bad" results for MPTCP with very small flows

    An easy fix would be to delay the establishment of additional subflows until a certain threshold of data has been sent or a certain time has passed.